favorite_enterprises_block_test.rb
2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
require File.dirname(__FILE__) + '/../test_helper'
class FavoriteEnterprisesBlockTest < ActiveSupport::TestCase
  
  should 'inherit from ProfileListBlock' do
    assert_kind_of ProfileListBlock, FavoriteEnterprisesBlock.new
  end
  should 'declare its default title' do
    assert_not_equal ProfileListBlock.new.default_title, FavoriteEnterprisesBlock.new.default_title
  end
  should 'describe itself' do
    assert_not_equal ProfileListBlock.description, FavoriteEnterprisesBlock.description
  end
  should 'use its own finder' do
    assert_not_equal FavoriteEnterprisesBlock::Finder, ProfileListBlock::Finder
    assert_kind_of FavoriteEnterprisesBlock::Finder, FavoriteEnterprisesBlock.new.profile_finder
  end
  should 'list owner favorite enterprises' do
    block = FavoriteEnterprisesBlock.new
    block.limit = 2
    owner = mock
    block.expects(:owner).returns(owner)
    member1 = mock; member1.stubs(:id).returns(1)
    member2 = mock; member2.stubs(:id).returns(2)
    member3 = mock; member3.stubs(:id).returns(3)
    owner.expects(:favorite_enterprises).returns([member1, member2, member3])
    
    block.profile_finder.expects(:pick_random).with(3).returns(2)
    block.profile_finder.expects(:pick_random).with(2).returns(0)
    Profile.expects(:find).with(3).returns(member3)
    Profile.expects(:find).with(1).returns(member1)
    assert_equal [member3, member1], block.profiles
  end
  should 'link to all enterprises for person' do
    person = Person.new
    person.expects(:identifier).returns('theprofile')
    block = FavoriteEnterprisesBlock.new
    block.expects(:owner).returns(person)
    expects(:_).with('All favorite enterprises').returns('All enterprises')
    expects(:link_to).with('All enterprises', :controller => 'profile', :profile => 'theprofile', :action => 'favorite_enterprises')
    instance_eval(&block.footer)
  end
  should 'give empty footer for unsupported owner type' do
    block = FavoriteEnterprisesBlock.new
    block.expects(:owner).returns(1)
    assert_equal '', block.footer
  end
end