event_block_test.rb
5.61 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
require File.dirname(__FILE__) + '/../../../../test/test_helper'
class EventPlugin::EventBlockTest < ActiveSupport::TestCase
def setup
@env = Environment.default
@env.enable_plugin('EventPlugin')
@p1 = fast_create(Person, :environment_id => @env.id)
@event = fast_create(Event, :name => 'Event p1 A', :profile_id => @p1.id,
:start_date => Date.today+30)
fast_create(Event, :name => 'Event p1 B', :profile_id => @p1.id,
:start_date => Date.today+10)
@p2 = fast_create(Community, :environment_id => @env.id)
fast_create(Event, :name => 'Event p2 A', :profile_id => @p2.id,
:start_date => Date.today-10)
fast_create(Event, :name => 'Event p2 B', :profile_id => @p2.id,
:start_date => Date.today-30)
box = fast_create(Box, :owner_id => @p1)
@block = EventPlugin::EventBlock.new(:limit => 99, :future_only => false, :box => box)
end
def set_portal(env, portal)
env.portal_community = portal
env.enable('use_portal_community')
env.save!
end
should 'select source as env, while visiting the profile' do
@block.box.owner = @p1
@block.all_env_events = true
assert_equal @env, @block.events_source
assert_equal 4, @block.events.length
set_portal(@env, @p2)
assert_equal @env, @block.events_source
assert_equal 4, @block.events.length
end
should 'select source as env, while visiting an env page' do
@block.box.owner = @env
@block.all_env_events = true
assert_equal @env, @block.events_source
assert_equal 4, @block.events.length
set_portal @env, @p2
assert_equal @env, @block.events_source
assert_equal 4, @block.events.length
end
should 'select source as portal_community, while visiting an env page' do
set_portal @env, @p2
@block.box.owner = @env.portal_community
@block.all_env_events = false
assert_equal @p2, @block.events_source
assert_equal 2, @block.events.length
end
should 'select source as profile, while visiting its page' do
@block.stubs(:owner).returns(@p1)
@block.all_env_events = false
assert_equal @p1, @block.events_source
assert_equal 2, @block.events.length
set_portal @env, @p2
assert_equal @p1, @block.events_source
assert_equal 2, @block.events.length
end
should 'say human left time for an event' do
assert_match /Tomorrow/, @block.human_time_left(1)
assert_match /5 days left/, @block.human_time_left(5)
assert_match /30 days left/, @block.human_time_left(30)
assert_match /2 months left/, @block.human_time_left(60)
assert_match /3 months left/, @block.human_time_left(85)
end
should 'say human past time for an event' do
assert_match /Yesterday/, @block.human_time_left(-1)
assert_match /5 days ago/, @block.human_time_left(-5)
assert_match /30 days ago/, @block.human_time_left(-30)
assert_match /2 months ago/, @block.human_time_left(-60)
assert_match /3 months ago/, @block.human_time_left(-85)
end
should 'say human present time for an event' do
assert_match /Today/, @block.human_time_left(0)
end
should 'write formatable data in html' do
html = '<span class="week-day">Tue</span>'+
'<span class="month">Sep</span>'+
'<span class="day">27</span>'+
'<span class="year">1983</span>'
assert_equal html, @block.date_to_html(Date.new 1983, 9, 27)
end
should 'show unlimited time distance events' do
@block.box.owner = @env
@block.all_env_events = true
@block.date_distance_limit = 0
assert_equal 4, @block.events.length
end
should 'only show 20 days distant events' do
@block.box.owner = @env
@block.all_env_events = true
@block.date_distance_limit = 20
assert_equal 2, @block.events.length
end
should 'show future and past events' do
@block.box.owner = @env
@block.all_env_events = true
@block.future_only = false
assert_equal 4, @block.events.length
end
should 'show only future events' do
@block.box.owner = @env
@block.all_env_events = true
@block.future_only = true
assert_equal 2, @block.events.length
end
should 'show only published events' do
@block.box.owner = @env
@block.all_env_events = true
@event.published = false
@event.save!
assert_equal 3, @block.events.length
end
should 'filter events from non public profiles' do
person = create_user('testuser', :environment_id => @env.id).person
person.public_profile = false
person.save!
visibility_content_test_from_a_profile person
end
should 'filter events from non visible profiles' do
person = create_user('testuser', :environment_id=>@env.id).person
person.visible = false
person.save!
visibility_content_test_from_a_profile person
end
def visibility_content_test_from_a_profile(profile)
@block.box.owner = @env
ev = fast_create Event, :name => '2 de Julho', :profile_id => profile.id
@block.all_env_events = true
# Do not list event from private profile for non logged visitor
assert ! @block.events.include?(ev)
assert_equal 4, @block.events.length
# Do not list event from private profile for non unprivileged user
assert ! @block.events.include?(ev)
assert_equal 4, @block.events(@p1).length
# Must to list event from private profile for a friend
AddFriend.create!(:requestor => @p1, :target => profile).finish
assert @block.events(@p1).include?(ev)
assert_equal 5, @block.events(@p1).length
# Must to list event from private profile for itself
assert @block.events(profile).include?(ev)
assert_equal 5, @block.events(profile).length
end
end