profile_helper_test.rb
2.7 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
64
65
66
67
68
69
70
71
72
require_relative "../test_helper"
class ProfileHelperTest < ActiveSupport::TestCase
include ProfileHelper
include ApplicationHelper
include ActionView::Helpers::TagHelper
def setup
@profile = mock
@helper = mock
helper.extend(ProfileHelper)
end
attr_reader :profile, :helper
should 'display field if may display it' do
self.stubs(:user).returns(nil)
profile.expects(:may_display_field_to?).returns(true)
profile.expects(:field).returns('value')
expects(:title).with(:field, anything).returns('Title')
assert_match /Title.*value/, display_field(:field)
end
should 'not display field if may not display it and not forced' do
self.stubs(:user).returns(nil)
profile.expects(:may_display_field_to?).returns(false)
profile.expects(:field).never
assert_equal '', display_field(:field)
end
should 'display field if may not display it but is forced' do
self.stubs(:user).returns(nil)
profile.stubs(:may_display_field_to?).returns(false)
profile.stubs(:kind_of?).with(Person).returns(:person)
FORCE.merge!({:person => [:field]})
profile.expects(:field).returns('value')
expects(:title).with(:field, anything).returns('Title')
assert_match /Title.*value/, display_field(:field)
end
should 'display work info if at least one of the fields should be displayed' do
self.stubs(:user).returns(nil)
profile.stubs(:may_display_field_to?).with(:organization, nil).returns(true)
profile.stubs(:may_display_field_to?).with(:organization_website, nil).returns(false)
profile.stubs(:may_display_field_to?).with(:professional_activity, nil).returns(false)
profile.stubs(:kind_of?).with(Person).returns(:person)
profile.expects(:organization).returns('Organization Name')
profile.expects(:organization_website).never
profile.expects(:professional_activity).never
assert_match /Work.*Organization Name/, display_work
end
should 'not display work info if none of the fields should be displayed' do
self.stubs(:user).returns(nil)
profile.stubs(:may_display_field_to?).returns(false)
profile.stubs(:kind_of?).with(Person).returns(:person)
profile.expects(:organization).never
profile.expects(:organization_website).never
assert_equal '', display_work
end
should 'display work info if any of the fields is to be displayed' do
self.stubs(:user).returns(nil)
profile.stubs(:may_display_field_to?).returns(true)
profile.stubs(:kind_of?).with(Person).returns(:person)
profile.expects(:organization).returns('Organization Name')
profile.expects(:organization_website).returns('')
profile.expects(:professional_activity).returns('')
assert_match /Work.*Organization Name/, display_work
end
end