diff options
| -rw-r--r-- | app/assets/stylesheets/application.scss | 17 | ||||
| -rw-r--r-- | app/assets/stylesheets/head.scss | 3 | ||||
| -rw-r--r-- | app/assets/stylesheets/tail.scss | 3 | ||||
| -rw-r--r-- | common_dependencies.rb | 5 | ||||
| -rw-r--r-- | help/app/views/tickets/_ticket_data.html.haml | 2 | ||||
| -rw-r--r-- | help/test/factories.rb | 10 | ||||
| -rw-r--r-- | help/test/functional/tickets_controller_test.rb | 110 | ||||
| -rw-r--r-- | help/test/unit/ticket_comment_test.rb | 5 | ||||
| -rw-r--r-- | help/test/unit/ticket_test.rb | 1 | ||||
| -rw-r--r-- | test/factories.rb | 3 | ||||
| -rw-r--r-- | users/app/models/user.rb | 16 | ||||
| -rw-r--r-- | users/test/factories.rb | 20 | ||||
| -rw-r--r-- | users/test/functional/users_controller_test.rb | 79 | ||||
| -rw-r--r-- | users/test/integration/api/account_flow_test.rb | 7 | ||||
| -rw-r--r-- | users/test/support/auth_test_helper.rb | 6 | ||||
| -rw-r--r-- | users/test/support/stub_record_helper.rb | 39 | ||||
| -rw-r--r-- | users/test/unit/email_aliases_test.rb | 8 | ||||
| -rw-r--r-- | users/test/unit/email_test.rb | 9 | ||||
| -rw-r--r-- | users/test/unit/user_test.rb | 17 | 
19 files changed, 215 insertions, 145 deletions
| diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index cb5fa1b..bb3b8bc 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -1,16 +1,25 @@ +// +// import custom scss, content to be set in deployment. +// +@import "tail"; + +// +// import bootstrap. +//  @import "bootstrap";  body {    padding: 40px;  }  @import "bootstrap-responsive"; - -  table.table-hover .btn {    opacity: 0;  } -  table.table-hover tr:hover .btn {    opacity: 1;  } +@import "bootstrap-editable"; -@import "bootstrap-editable";
\ No newline at end of file +// +// import custom scss, content to be set in deployment. +// +@import "tail"; diff --git a/app/assets/stylesheets/head.scss b/app/assets/stylesheets/head.scss new file mode 100644 index 0000000..431565f --- /dev/null +++ b/app/assets/stylesheets/head.scss @@ -0,0 +1,3 @@ +// +// put custom scss here that goes before all the others +// diff --git a/app/assets/stylesheets/tail.scss b/app/assets/stylesheets/tail.scss new file mode 100644 index 0000000..541c2df --- /dev/null +++ b/app/assets/stylesheets/tail.scss @@ -0,0 +1,3 @@ +// +// put custom scss here that goes after all the others +// diff --git a/common_dependencies.rb b/common_dependencies.rb index a6691cf..1650fee 100644 --- a/common_dependencies.rb +++ b/common_dependencies.rb @@ -4,3 +4,8 @@ group :test do    gem 'mocha', '~> 0.13.0', :require => false  end +group :test, :development do +  gem 'faker' +  gem 'factory_girl_rails' +end + diff --git a/help/app/views/tickets/_ticket_data.html.haml b/help/app/views/tickets/_ticket_data.html.haml index 3d301be..fee080f 100644 --- a/help/app/views/tickets/_ticket_data.html.haml +++ b/help/app/views/tickets/_ticket_data.html.haml @@ -22,4 +22,4 @@      = button_to 'Close', {:post => {:is_open => false}}, :method => :put, :class => 'btn btn-small'    - else      = 'closed' -    = button_to 'Open', {:post => {:is_open => true}}, :method => :put, :class => 'btn btn-small'
\ No newline at end of file +    = button_to 'Open', {:post => {:is_open => true}}, :method => :put, :class => 'btn btn-small' diff --git a/help/test/factories.rb b/help/test/factories.rb new file mode 100644 index 0000000..5b38952 --- /dev/null +++ b/help/test/factories.rb @@ -0,0 +1,10 @@ +FactoryGirl.define do + +  factory :ticket do +    title { Faker::Lorem.sentence } +    comments_attributes do +      { "0" => { "body" => Faker::Lorem.sentences.join(" ") } } +    end +  end + +end diff --git a/help/test/functional/tickets_controller_test.rb b/help/test/functional/tickets_controller_test.rb index 7060936..0c462a9 100644 --- a/help/test/functional/tickets_controller_test.rb +++ b/help/test/functional/tickets_controller_test.rb @@ -3,21 +3,17 @@ require 'test_helper'  class TicketsControllerTest < ActionController::TestCase    setup do -    User.create(User.valid_attributes_hash.merge({:login => 'first_test'})) -    User.create(User.valid_attributes_hash.merge({:login => 'different'})) -    Ticket.create( {:title => "stub test ticket", :id => 'stubtestticketid', :comments_attributes => {"0" => {"body" =>"body of stubbed test ticket"}}}) -    Ticket.create( {:title => "stub test ticket two", :id => 'stubtestticketid2', :comments_attributes => {"0" => {"body" =>"body of second stubbed test ticket"}}}) +    @user = FactoryGirl.create :user +    @other_user = FactoryGirl.create :user    end    teardown do -    User.find_by_login('first_test').destroy -    User.find_by_login('different').destroy -    Ticket.find('stubtestticketid').destroy -    Ticket.find('stubtestticketid2').destroy +    @user.destroy +    @other_user.destroy    end    test "should get index if logged in" do -    login :is_admin? => false +    login      get :index      assert_response :success      assert_not_nil assigns(:tickets) @@ -35,29 +31,32 @@ class TicketsControllerTest < ActionController::TestCase      assert_response :success    end -  test "ticket show access" do -    ticket = Ticket.first -    ticket.created_by = nil # TODO: hacky, but this makes sure this ticket is an unauthenticated one -    ticket.save +  test "unauthenticated tickets are visible" do +    ticket = find_record :ticket, :created_by => nil      get :show, :id => ticket.id      assert_response :success +  end -    ticket.created_by = User.last.id -    ticket.save +  test "user tickets are not visible without login" do +    ticket = find_record :ticket, :created_by => @user.id      get :show, :id => ticket.id      assert_response :redirect      assert_redirected_to login_url +  end -    login(User.last) +  test "user tickets are visible to creator" do +    ticket = find_record :ticket, :created_by => @user.id +    login @user      get :show, :id => ticket.id      assert_response :success +  end -    login(User.first) #assumes User.first != User.last: -    assert_not_equal User.first, User.last +  test "user tickets are not visible to other user" do +    ticket = find_record :ticket, :created_by => @user.id +    login @other_user      get :show, :id => ticket.id      assert_response :redirect      assert_redirected_to root_url -    end    test "should create unauthenticated ticket" do @@ -80,7 +79,7 @@ class TicketsControllerTest < ActionController::TestCase      params = {:title => "auth ticket test title", :comments_attributes => {"0" => {"body" =>"body of test ticket"}}} -    login :email => "test@email.net" +    login :email => Faker::Internet.user_name + '@' + APP_CONFIG[:domain]      assert_difference('Ticket.count') do        post :create, :ticket => params @@ -99,11 +98,9 @@ class TicketsControllerTest < ActionController::TestCase    end    test "add comment to unauthenticated ticket" do -    ticket = Ticket.find('stubtestticketid') -    ticket.created_by = nil # TODO: hacky, but this makes sure this ticket is an unauthenticated one -    ticket.save +    ticket = FactoryGirl.create :ticket, :created_by => nil -    assert_difference('Ticket.find("stubtestticketid").comments.count') do +    assert_difference('Ticket.find(ticket.id).comments.count') do        put :update, :id => ticket.id,          :ticket => {:comments_attributes => {"0" => {"body" =>"NEWER comment"}} }      end @@ -111,24 +108,24 @@ class TicketsControllerTest < ActionController::TestCase      assert_equal ticket, assigns(:ticket) # still same ticket, with different comments      assert_not_equal ticket.comments, assigns(:ticket).comments # ticket == assigns(:ticket), but they have different comments (which we want) +    assigns(:ticket).destroy    end    test "add comment to own authenticated ticket" do      login User.last -    ticket = Ticket.find('stubtestticketid') -    ticket.created_by = @current_user.id # TODO: hacky, but confirms it is their ticket -    ticket.save +    ticket = FactoryGirl.create :ticket, :created_by => @current_user.id      #they should be able to comment if it is their ticket: -    assert_difference('Ticket.find("stubtestticketid").comments.count') do +    assert_difference('Ticket.find(ticket.id).comments.count') do        put :update, :id => ticket.id,          :ticket => {:comments_attributes => {"0" => {"body" =>"NEWER comment"}} }      end      assert_not_equal ticket.comments, assigns(:ticket).comments      assert_not_nil assigns(:ticket).comments.last.posted_by      assert_equal assigns(:ticket).comments.last.posted_by, @current_user.id +    assigns(:ticket).destroy    end @@ -136,17 +133,13 @@ class TicketsControllerTest < ActionController::TestCase    test "cannot comment if it is not your ticket" do      login :is_admin? => false, :email => nil -    ticket = Ticket.first - -    assert_not_nil User.first.id -    ticket.created_by = User.first.id -    ticket.save +    ticket = FactoryGirl.create :ticket, :created_by => @other_user.id      # they should *not* be able to comment if it is not their ticket      put :update, :id => ticket.id, :ticket => {:comments_attributes => {"0" => {"body" =>"not allowed comment"}} }      assert_response :redirect      assert_access_denied -    assert_equal ticket.comments, assigns(:ticket).comments +    assert_equal ticket.comments.map(&:body), assigns(:ticket).comments.map(&:body)    end @@ -155,14 +148,10 @@ class TicketsControllerTest < ActionController::TestCase      login :is_admin? => true -    ticket = Ticket.find('stubtestticketid') -    assert_not_nil User.last.id -    ticket.created_by = User.last.id # TODO: hacky, but confirms it somebody elses ticket: -    assert_not_equal User.last.id, @current_user.id -    ticket.save +    ticket = FactoryGirl.create :ticket, :created_by => @other_user.id      #admin should be able to comment: -    assert_difference('Ticket.find("stubtestticketid").comments.count') do +    assert_difference('Ticket.find(ticket.id).comments.count') do        put :update, :id => ticket.id,          :ticket => {:comments_attributes => {"0" => {"body" =>"NEWER comment"}} }      end @@ -170,9 +159,11 @@ class TicketsControllerTest < ActionController::TestCase      assert_not_nil assigns(:ticket).comments.last.posted_by      assert_equal assigns(:ticket).comments.last.posted_by, @current_user.id +    assigns(:ticket).destroy    end    test "tickets by admin" do +    ticket = FactoryGirl.create :ticket, :created_by => @other_user.id      login :is_admin? => true, :email => nil @@ -189,17 +180,18 @@ class TicketsControllerTest < ActionController::TestCase    test "admin_status mine vs all" do -    testticket = Ticket.create :title => 'temp testytest' +    testticket = FactoryGirl.create :ticket      login :is_admin? => true, :email => nil      get :index, {:admin_status => "all", :open_status => "open"}      assert assigns(:all_tickets).include?(testticket)      get :index, {:admin_status => "mine", :open_status => "open"}      assert !assigns(:all_tickets).include?(testticket) +    testticket.destroy    end    test "commenting on a ticket adds to tickets that are mine" do -    testticket = Ticket.create :title => 'temp testytest' +    testticket = FactoryGirl.create :ticket      login :is_admin? => true, :email => nil      get :index, {:admin_status => "mine", :open_status => "open"} @@ -216,6 +208,7 @@ class TicketsControllerTest < ActionController::TestCase    end    test "admin ticket ordering" do +    tickets = FactoryGirl.create_list :ticket, 2      login :is_admin? => true, :email => nil      get :index, {:admin_status => "all", :open_status => "open", :sort_order => 'created_at_desc'} @@ -234,33 +227,36 @@ class TicketsControllerTest < ActionController::TestCase      assert_not_equal first_tick, assigns(:all_tickets).first      assert_not_equal last_tick, assigns(:all_tickets).last +    tickets.each {|ticket| ticket.destroy}    end    test "tickets for regular user" do -    login :is_admin? => false, :email => nil +    login +    ticket = FactoryGirl.create :ticket +    other_ticket = FactoryGirl.create :ticket -    put :update, :id => 'stubtestticketid',:ticket => {:comments_attributes => {"0" => {"body" =>"NEWER comment"}} } +    put :update, :id => ticket.id, +      :ticket => {:comments_attributes => {"0" => {"body" =>"NEWER comment"}} }      assert_not_nil assigns(:ticket).comments.last.posted_by      assert_equal assigns(:ticket).comments.last.posted_by, @current_user.id      get :index, {:open_status => "open"}      assert assigns(:all_tickets).count > 0 -    assert assigns(:all_tickets).include?(Ticket.find('stubtestticketid')) - -    assert !assigns(:all_tickets).include?(Ticket.find('stubtestticketid2')) +    assert assigns(:all_tickets).include?(ticket) +    assert !assigns(:all_tickets).include?(other_ticket)      # user should have one more ticket if a new tick gets a comment by this user      assert_difference('assigns[:all_tickets].count') do -      put :update, :id => 'stubtestticketid2' , :ticket => {:comments_attributes => {"0" => {"body" =>"NEWER comment"}}} +      put :update, :id => other_ticket.id, :ticket => {:comments_attributes => {"0" => {"body" =>"NEWER comment"}}}        get :index, {:open_status => "open"}      end -    assert assigns(:all_tickets).include?(Ticket.find('stubtestticketid2')) +    assert assigns(:all_tickets).include?(other_ticket)     # if we close one ticket, the user should have 1 less open ticket      assert_difference('assigns[:all_tickets].count', -1) do -      t = Ticket.find('stubtestticketid2') -      t.close -      t.save +      other_ticket.reload +      other_ticket.close +      other_ticket.save        get :index, {:open_status => "open"}      end @@ -268,16 +264,18 @@ class TicketsControllerTest < ActionController::TestCase      # look at closed tickets:      get :index, {:open_status => "closed"} -    assert assigns(:all_tickets).include?(Ticket.find('stubtestticketid2')) -    assert !assigns(:all_tickets).include?(Ticket.find('stubtestticketid')) +    assert !assigns(:all_tickets).include?(ticket) +    assert assigns(:all_tickets).include?(other_ticket)      number_closed_tickets = assigns(:all_tickets).count      # all tickets should equal closed + open      get :index, {:open_status => "all"} -    assert assigns(:all_tickets).include?(Ticket.find('stubtestticketid2')) -    assert assigns(:all_tickets).include?(Ticket.find('stubtestticketid')) +    assert assigns(:all_tickets).include?(ticket) +    assert assigns(:all_tickets).include?(other_ticket)      assert_equal assigns(:all_tickets).count, number_closed_tickets + number_open_tickets +    assigns(:all_tickets).each {|t| t.destroy} +    end  end diff --git a/help/test/unit/ticket_comment_test.rb b/help/test/unit/ticket_comment_test.rb index 1fe1fe2..44865ed 100644 --- a/help/test/unit/ticket_comment_test.rb +++ b/help/test/unit/ticket_comment_test.rb @@ -21,11 +21,11 @@ class TicketCommentTest < ActiveSupport::TestCase      #comment.ticket = testticket #Ticket.find_by_title("testing")      #assert_equal testticket.title, comment.ticket.title -     +      #tc.ticket = Ticket.find_by_title("test title")      #tc.ticket.title    end -   +  =begin    test "create authenticated comment" do      User.current = 4 @@ -49,6 +49,7 @@ class TicketCommentTest < ActiveSupport::TestCase      testticket.comments << comment2 #this should validate comment2      testticket.valid?      assert_equal testticket.comments.count, 2 +    testticket.reload.destroy      # where should posted_at be set?      #assert_not_nil comment.posted_at      #assert_not_nil testticket.comments.last.posted_at diff --git a/help/test/unit/ticket_test.rb b/help/test/unit/ticket_test.rb index ac6426e..ce35e1d 100644 --- a/help/test/unit/ticket_test.rb +++ b/help/test/unit/ticket_test.rb @@ -32,6 +32,7 @@ class TicketTest < ActiveSupport::TestCase      #p t.email_address      #p t.email_address.strip =~ RFC822::EmailAddress      assert !t.valid? +    t.reload.destroy    end    test "creation validated" do diff --git a/test/factories.rb b/test/factories.rb new file mode 100644 index 0000000..6c671f8 --- /dev/null +++ b/test/factories.rb @@ -0,0 +1,3 @@ +Dir.glob(Rails.root.join('**','test','factories.rb')) do |factory_file| +  require factory_file +end diff --git a/users/app/models/user.rb b/users/app/models/user.rb index 4b6b06c..42900ea 100644 --- a/users/app/models/user.rb +++ b/users/app/models/user.rb @@ -18,8 +18,8 @@ class User < CouchRest::Model::Base      :if => :serverside?    validates :login, -    :format => { :with => /\A[A-Za-z\d_]+\z/, -      :message => "Only letters, digits and _ allowed" } +    :format => { :with => /\A[A-Za-z\d_\.]+\z/, +      :message => "Only letters, digits, . and _ allowed" }    validates :password_salt, :password_verifier,      :format => { :with => /\A[\dA-Fa-f]+\z/, :message => "Only hex numbers allowed" } @@ -54,17 +54,11 @@ class User < CouchRest::Model::Base    class << self      alias_method :find_by_param, :find - -    # valid set of attributes for testing -    def valid_attributes_hash -      { :login => "me", -        :password_verifier => "1234ABCD", -        :password_salt => "4321AB" } -    end -    end -  alias_method :to_param, :id +  def to_param +    self.id +  end    def to_json(options={})      { diff --git a/users/test/factories.rb b/users/test/factories.rb new file mode 100644 index 0000000..4bf7e62 --- /dev/null +++ b/users/test/factories.rb @@ -0,0 +1,20 @@ +FactoryGirl.define do + +  factory :user do +    login { Faker::Internet.user_name } +    password_verifier "1234ABCD" +    password_salt "4321AB" + +    factory :user_with_settings do +      email_forward { Faker::Internet.email } +      email { Faker::Internet.user_name + '@' + APP_CONFIG[:domain] } +      email_aliases_attributes do +        {:a => Faker::Internet.user_name + '@' + APP_CONFIG[:domain]} +      end +    end + +    factory :admin_user do +      is_admin? true +    end +  end +end diff --git a/users/test/functional/users_controller_test.rb b/users/test/functional/users_controller_test.rb index 1f6c868..46db4d1 100644 --- a/users/test/functional/users_controller_test.rb +++ b/users/test/functional/users_controller_test.rb @@ -10,14 +10,14 @@ class UsersControllerTest < ActionController::TestCase    end    test "failed show without login" do -    user = find_record User +    user = find_record :user      get :show, :id => user.id      assert_response :redirect      assert_redirected_to login_path    end    test "user can see user" do -    user = find_record User, +    user = find_record :user,        :email => nil,        :email_forward => nil,        :email_aliases => [], @@ -29,34 +29,64 @@ class UsersControllerTest < ActionController::TestCase      assert_response :success    end +  test "admin can see other user" do +    user = find_record :user, +      :email => nil, +      :email_forward => nil, +      :email_aliases => [], +      :created_at => Time.now, +      :updated_at => Time.now, +      :most_recent_tickets => [] +    login :is_admin? => true +    get :show, :id => user.id +    assert_response :success + +  end +   +  test "user cannot see other user" do +    user = find_record :user, +      :email => nil, +      :email_forward => nil, +      :email_aliases => [], +      :created_at => Time.now, +      :updated_at => Time.now, +      :most_recent_tickets => [] +    login +    get :show, :id => user.id +    assert_response :redirect +    assert_access_denied +  end + +    test "should create new user" do -    user = stub_record User -    User.expects(:create).with(user.params).returns(user) +    user_attribs = record_attributes_for :user +    user = User.new(user_attribs) +    User.expects(:create).with(user_attribs).returns(user) + + +    post :create, :user => user_attribs, :format => :json + -    post :create, :user => user.params, :format => :json      assert_nil session[:user_id]      assert_json_response user      assert_response :success    end    test "should redirect to signup form on failed attempt" do -    params = User.valid_attributes_hash.slice(:login) -    user = User.new(params) -    params.stringify_keys! +    user_attribs = record_attributes_for :user +    user_attribs.slice!('login') +    user = User.new(user_attribs)      assert !user.valid? -    User.expects(:create).with(params).returns(user) +    User.expects(:create).with(user_attribs).returns(user) -    post :create, :user => params, :format => :json +    post :create, :user => user_attribs, :format => :json      assert_json_error user.errors.messages      assert_response 422    end    test "should get edit view" do -    user = find_record User, -      :email => nil, -      :email_forward => nil, -      :email_aliases => [] +    user = find_record :user      login user      get :edit, :id => user.id @@ -65,14 +95,14 @@ class UsersControllerTest < ActionController::TestCase    end    test "user can change settings" do -    user = find_record User -    user.expects(:attributes=).with(user.params) +    user = find_record :user +    changed_attribs = record_attributes_for :user_with_settings +    user.expects(:attributes=).with(changed_attribs)      user.expects(:changed?).returns(true)      user.expects(:save).returns(true) -    user.stubs(:email_aliases).returns([])      login user -    put :update, :user => user.params, :id => user.id, :format => :json +    put :update, :user => changed_attribs, :id => user.id, :format => :json      assert_equal user, assigns[:user]      assert_response 204 @@ -80,14 +110,15 @@ class UsersControllerTest < ActionController::TestCase    end    test "admin can update user" do -    user = find_record User -    user.expects(:attributes=).with(user.params) +    user = find_record :user +    changed_attribs = record_attributes_for :user_with_settings +    user.expects(:attributes=).with(changed_attribs.stringify_keys)      user.expects(:changed?).returns(true)      user.expects(:save).returns(true)      user.stubs(:email_aliases).returns([])      login :is_admin? => true -    put :update, :user => user.params, :id => user.id, :format => :json +    put :update, :user => changed_attribs, :id => user.id, :format => :json      assert_equal user, assigns[:user]      assert_response 204 @@ -95,7 +126,7 @@ class UsersControllerTest < ActionController::TestCase    end    test "admin can destroy user" do -    user = find_record User +    user = find_record :user      user.expects(:destroy)      login :is_admin? => true @@ -106,7 +137,7 @@ class UsersControllerTest < ActionController::TestCase    end    test "user can cancel account" do -    user = find_record User +    user = find_record :user      user.expects(:destroy)      login user @@ -117,7 +148,7 @@ class UsersControllerTest < ActionController::TestCase    end    test "non-admin can't destroy user" do -    user = stub_record User +    user = find_record :user      login      delete :destroy, :id => user.id diff --git a/users/test/integration/api/account_flow_test.rb b/users/test/integration/api/account_flow_test.rb index 7636f2b..b9e2a4e 100644 --- a/users/test/integration/api/account_flow_test.rb +++ b/users/test/integration/api/account_flow_test.rb @@ -12,10 +12,6 @@ class AccountFlowTest < ActiveSupport::TestCase      OUTER_APP    end -  def teardown -    Warden.test_reset! -  end -    def setup      @login = "integration_test_user"      User.find_by_login(@login).tap{|u| u.destroy if u} @@ -31,7 +27,8 @@ class AccountFlowTest < ActiveSupport::TestCase    end    def teardown -    @user.destroy if @user # make sure we can run this test again +    @user.destroy if @user +    Warden.test_reset!    end    # this test wraps the api and implements the interface the ruby-srp client. diff --git a/users/test/support/auth_test_helper.rb b/users/test/support/auth_test_helper.rb index c9f5612..c0fcf3a 100644 --- a/users/test/support/auth_test_helper.rb +++ b/users/test/support/auth_test_helper.rb @@ -10,10 +10,10 @@ module AuthTestHelper    end    def login(user_or_method_hash = {}) -    @current_user = stub_record(User, user_or_method_hash) -    unless @current_user.respond_to? :is_admin? -      @current_user.stubs(:is_admin?).returns(false) +    if user_or_method_hash.respond_to?(:reverse_merge) +      user_or_method_hash.reverse_merge! :is_admin? => false      end +    @current_user = stub_record(:user, user_or_method_hash, true)      request.env['warden'] = stub :user => @current_user      return @current_user    end diff --git a/users/test/support/stub_record_helper.rb b/users/test/support/stub_record_helper.rb index 1be419a..168a827 100644 --- a/users/test/support/stub_record_helper.rb +++ b/users/test/support/stub_record_helper.rb @@ -4,10 +4,12 @@ module StubRecordHelper    # return the record given.    # If no record is given but a hash or nil will create a stub based on    # that instead and returns the stub. -  def find_record(klass, record_or_method_hash = {}) -    record = stub_record(klass, record_or_method_hash) -    finder = klass.respond_to?(:find_by_param) ? :find_by_param : :find_by_id -    klass.expects(finder).with(record.to_param).returns(record) +  def find_record(factory, attribs_hash = {}) +    attribs_hash.reverse_merge!(:id => Random.rand(10000).to_s) +    record = stub_record factory, attribs_hash +    klass = record.class +    finder = klass.respond_to?(:find_by_param) ? :find_by_param : :find +    klass.expects(finder).with(record.to_param.to_s).returns(record)      return record    end @@ -17,25 +19,28 @@ module StubRecordHelper    # If the second parameter is a record we return the record itself.    # This way you can build functions that either take a record or a    # method hash to stub from. See find_record for an example. -  def stub_record(klass, record_or_method_hash = {}, persisted = true) +  def stub_record(factory, record_or_method_hash = {}, persisted=false)      if record_or_method_hash && !record_or_method_hash.is_a?(Hash)        return record_or_method_hash      end -    stub record_params_for(klass, record_or_method_hash, persisted) +    FactoryGirl.build_stubbed(factory).tap do |record| +      if persisted or record.persisted? +        record_or_method_hash.reverse_merge! :created_at => Time.now, +          :updated_at => Time.now, :id => Random.rand(100000).to_s +      end +      record.stubs(record_or_method_hash) if record_or_method_hash.present? +    end    end -  def record_params_for(klass, params = {}, persisted = true) -    if klass.respond_to?(:valid_attributes_hash) -      params.reverse_merge!(klass.valid_attributes_hash) +  # returns deep stringified attributes so they can be compared to +  # what the controller receives as params +  def record_attributes_for(factory, attribs_hash = nil) +    FactoryGirl.attributes_for(factory, attribs_hash).tap do |attribs| +      attribs.keys.each do |key| +        val = attribs.delete(key) +        attribs[key.to_s] = val.is_a?(Hash) ? val.stringify_keys! : val +      end      end -    params[:params] = params.stringify_keys -    params.reverse_merge! :id => "A123", -      :to_param => "A123", -      :class => klass, -      :to_key => ['123'], -      :to_json => %Q({"stub":"#{klass.name}"}), -      :new_record? => !persisted, -      :persisted? => persisted    end  end diff --git a/users/test/unit/email_aliases_test.rb b/users/test/unit/email_aliases_test.rb index 88f97f4..e3f060d 100644 --- a/users/test/unit/email_aliases_test.rb +++ b/users/test/unit/email_aliases_test.rb @@ -3,12 +3,8 @@ require 'test_helper'  class EmailAliasTest < ActiveSupport::TestCase    setup do -    @attribs = User.valid_attributes_hash -    User.find_by_login(@attribs[:login]).try(:destroy) -    @user = User.new(@attribs) -    @attribs.merge!(:login => "other_user") -    User.find_by_login(@attribs[:login]).try(:destroy) -    @other_user = User.create(@attribs) +    @user = FactoryGirl.build :user +    @other_user = FactoryGirl.build :user      @alias = "valid_alias@#{APP_CONFIG[:domain]}"      User.find_by_email_or_alias(@alias).try(:destroy)    end diff --git a/users/test/unit/email_test.rb b/users/test/unit/email_test.rb index 060ced5..d7ef1f8 100644 --- a/users/test/unit/email_test.rb +++ b/users/test/unit/email_test.rb @@ -3,13 +3,8 @@ require 'test_helper'  class EmailTest < ActiveSupport::TestCase    setup do -    # TODO build helper for this ... make_record(User) -    @attribs = User.valid_attributes_hash -    User.find_by_login(@attribs[:login]).try(:destroy) -    @user = User.new(@attribs) -    @attribs.merge!(:login => "other_user") -    User.find_by_login(@attribs[:login]).try(:destroy) -    @other_user = User.create(@attribs) +    @user = FactoryGirl.build :user +    @other_user = FactoryGirl.build :user      @email_string = "valid_alias@#{APP_CONFIG[:domain]}"      User.find_by_email_or_alias(@email_string).try(:destroy)    end diff --git a/users/test/unit/user_test.rb b/users/test/unit/user_test.rb index 0c79f1f..917728b 100644 --- a/users/test/unit/user_test.rb +++ b/users/test/unit/user_test.rb @@ -4,9 +4,7 @@ class UserTest < ActiveSupport::TestCase    include SRP::Util    setup do -    @attribs = User.valid_attributes_hash -    User.find_by_login(@attribs[:login]).try(:destroy) -    @user = User.new(@attribs) +    @user = FactoryGirl.build(:user)    end    test "test set of attributes should be valid" do @@ -49,13 +47,14 @@ class UserTest < ActiveSupport::TestCase      assert_equal client_rnd, srp_session.aa    end -  test 'is user an admin' do -    admin_login = APP_CONFIG['admins'].first -    attribs = User.valid_attributes_hash -    attribs[:login] = admin_login -    admin_user = User.new(attribs) -    assert admin_user.is_admin? +  test 'normal user is no admin' do      assert !@user.is_admin?    end +  test 'user with login in APP_CONFIG is an admin' do +    admin_login = APP_CONFIG['admins'].first +    @user.login = admin_login +    assert @user.is_admin? +  end +  end | 
