]> git.openstreetmap.org Git - rails.git/blob - test/controllers/user_blocks_controller_test.rb
Merge remote-tracking branch 'upstream/pull/5104'
[rails.git] / test / controllers / user_blocks_controller_test.rb
1 require "test_helper"
2
3 class UserBlocksControllerTest < ActionDispatch::IntegrationTest
4   ##
5   # test all routes which lead to this controller
6   def test_routes
7     assert_routing(
8       { :path => "/blocks/new/username", :method => :get },
9       { :controller => "user_blocks", :action => "new", :display_name => "username" }
10     )
11
12     assert_routing(
13       { :path => "/user_blocks", :method => :get },
14       { :controller => "user_blocks", :action => "index" }
15     )
16     assert_routing(
17       { :path => "/user_blocks", :method => :post },
18       { :controller => "user_blocks", :action => "create" }
19     )
20     assert_routing(
21       { :path => "/user_blocks/1", :method => :get },
22       { :controller => "user_blocks", :action => "show", :id => "1" }
23     )
24     assert_routing(
25       { :path => "/user_blocks/1/edit", :method => :get },
26       { :controller => "user_blocks", :action => "edit", :id => "1" }
27     )
28     assert_routing(
29       { :path => "/user_blocks/1", :method => :put },
30       { :controller => "user_blocks", :action => "update", :id => "1" }
31     )
32     assert_routing(
33       { :path => "/user_blocks/1", :method => :delete },
34       { :controller => "user_blocks", :action => "destroy", :id => "1" }
35     )
36     assert_routing(
37       { :path => "/blocks/1/revoke", :method => :get },
38       { :controller => "user_blocks", :action => "revoke", :id => "1" }
39     )
40     assert_routing(
41       { :path => "/blocks/1/revoke", :method => :post },
42       { :controller => "user_blocks", :action => "revoke", :id => "1" }
43     )
44
45     assert_routing(
46       { :path => "/user/username/blocks", :method => :get },
47       { :controller => "user_blocks", :action => "blocks_on", :display_name => "username" }
48     )
49     assert_routing(
50       { :path => "/user/username/blocks_by", :method => :get },
51       { :controller => "user_blocks", :action => "blocks_by", :display_name => "username" }
52     )
53     assert_routing(
54       { :path => "/user/username/blocks/revoke_all", :method => :get },
55       { :controller => "user_blocks", :action => "revoke_all", :display_name => "username" }
56     )
57     assert_routing(
58       { :path => "/user/username/blocks/revoke_all", :method => :post },
59       { :controller => "user_blocks", :action => "revoke_all", :display_name => "username" }
60     )
61   end
62
63   ##
64   # test the index action
65   def test_index
66     revoked_block = create(:user_block, :revoked)
67
68     get user_blocks_path
69     assert_response :success
70     assert_select "table#block_list tbody tr", :count => 1 do
71       assert_select "a[href='#{user_path revoked_block.user}']", :text => revoked_block.user.display_name
72       assert_select "a[href='#{user_path revoked_block.creator}']", :text => revoked_block.creator.display_name
73       assert_select "a[href='#{user_path revoked_block.revoker}']", :text => revoked_block.revoker.display_name
74     end
75
76     active_block = create(:user_block)
77     expired_block = create(:user_block, :expired)
78
79     get user_blocks_path
80     assert_response :success
81     assert_select "table#block_list tbody", :count => 1 do
82       assert_select "tr", 3
83       assert_select "a[href='#{user_block_path(active_block)}']", 1
84       assert_select "a[href='#{user_block_path(expired_block)}']", 1
85       assert_select "a[href='#{user_block_path(revoked_block)}']", 1
86     end
87   end
88
89   ##
90   # test the index action with multiple pages
91   def test_index_paged
92     user_blocks = create_list(:user_block, 50).reverse
93     next_path = user_blocks_path
94
95     get next_path
96     assert_response :success
97     check_user_blocks_table user_blocks[0...20]
98     check_no_page_link "Newer Blocks"
99     next_path = check_page_link "Older Blocks"
100
101     get next_path
102     assert_response :success
103     check_user_blocks_table user_blocks[20...40]
104     check_page_link "Newer Blocks"
105     next_path = check_page_link "Older Blocks"
106
107     get next_path
108     assert_response :success
109     check_user_blocks_table user_blocks[40...50]
110     check_page_link "Newer Blocks"
111     check_no_page_link "Older Blocks"
112   end
113
114   ##
115   # test the index action with invalid pages
116   def test_index_invalid_paged
117     %w[-1 0 fred].each do |id|
118       get user_blocks_path(:before => id)
119       assert_redirected_to :controller => :errors, :action => :bad_request
120
121       get user_blocks_path(:after => id)
122       assert_redirected_to :controller => :errors, :action => :bad_request
123     end
124   end
125
126   ##
127   # test the show action
128   def test_show
129     active_block = create(:user_block, :needs_view)
130     expired_block = create(:user_block, :expired)
131     revoked_block = create(:user_block, :revoked)
132
133     # Viewing a block should fail when a bogus ID is given
134     get user_block_path(:id => 99999)
135     assert_response :not_found
136     assert_template "not_found"
137     assert_select "p", "Sorry, the user block with ID 99999 could not be found."
138
139     # Viewing an expired block should work
140     get user_block_path(:id => expired_block)
141     assert_response :success
142     assert_select "h1 a[href='#{user_path expired_block.user}']", :text => expired_block.user.display_name
143     assert_select "h1 a[href='#{user_path expired_block.creator}']", :text => expired_block.creator.display_name
144
145     # Viewing a revoked block should work
146     get user_block_path(:id => revoked_block)
147     assert_response :success
148     assert_select "h1 a[href='#{user_path revoked_block.user}']", :text => revoked_block.user.display_name
149     assert_select "h1 a[href='#{user_path revoked_block.creator}']", :text => revoked_block.creator.display_name
150     assert_select "a[href='#{user_path revoked_block.revoker}']", :text => revoked_block.revoker.display_name
151
152     # Viewing an active block should work, but shouldn't mark it as seen
153     get user_block_path(:id => active_block)
154     assert_response :success
155     assert_select "h1 a[href='#{user_path active_block.user}']", :text => active_block.user.display_name
156     assert_select "h1 a[href='#{user_path active_block.creator}']", :text => active_block.creator.display_name
157     assert UserBlock.find(active_block.id).needs_view
158
159     # Login as the blocked user
160     session_for(active_block.user)
161
162     # Now viewing it should mark it as seen
163     get user_block_path(:id => active_block)
164     assert_response :success
165     assert_not UserBlock.find(active_block.id).needs_view
166   end
167
168   ##
169   # test edit/revoke link for active blocks
170   def test_active_block_buttons
171     creator_user = create(:moderator_user)
172     other_moderator_user = create(:moderator_user)
173     block = create(:user_block, :creator => creator_user)
174
175     session_for(other_moderator_user)
176     check_block_buttons block, :edit => 1, :revoke => 1
177
178     session_for(creator_user)
179     check_block_buttons block, :edit => 1, :revoke => 1
180   end
181
182   ##
183   # test the edit link for expired blocks
184   def test_expired_block_buttons
185     creator_user = create(:moderator_user)
186     other_moderator_user = create(:moderator_user)
187     block = create(:user_block, :expired, :creator => creator_user)
188
189     session_for(other_moderator_user)
190     check_block_buttons block
191
192     session_for(creator_user)
193     check_block_buttons block, :edit => 1
194   end
195
196   ##
197   # test the edit link for revoked blocks
198   def test_revoked_block_buttons
199     creator_user = create(:moderator_user)
200     revoker_user = create(:moderator_user)
201     other_moderator_user = create(:moderator_user)
202     block = create(:user_block, :revoked, :creator => creator_user, :revoker => revoker_user)
203
204     session_for(other_moderator_user)
205     check_block_buttons block
206
207     session_for(creator_user)
208     check_block_buttons block, :edit => 1
209
210     session_for(revoker_user)
211     check_block_buttons block, :edit => 1
212   end
213
214   ##
215   # test the new action
216   def test_new
217     target_user = create(:user)
218
219     # Check that the block creation page requires us to login
220     get new_user_block_path(target_user)
221     assert_redirected_to login_path(:referer => new_user_block_path(target_user))
222
223     # Login as a normal user
224     session_for(create(:user))
225
226     # Check that normal users can't load the block creation page
227     get new_user_block_path(target_user)
228     assert_redirected_to :controller => "errors", :action => "forbidden"
229
230     # Login as a moderator
231     session_for(create(:moderator_user))
232
233     # Check that the block creation page loads for moderators
234     get new_user_block_path(target_user)
235     assert_response :success
236     assert_select "h1 a[href='#{user_path target_user}']", :text => target_user.display_name
237     assert_select "form#new_user_block", :count => 1 do
238       assert_select "textarea#user_block_reason", :count => 1
239       assert_select "select#user_block_period", :count => 1
240       assert_select "input#user_block_needs_view[type='checkbox']", :count => 1
241       assert_select "input#display_name[type='hidden']", :count => 1
242       assert_select "input[type='submit'][value='Create block']", :count => 1
243     end
244
245     # We should get an error if the user doesn't exist
246     get new_user_block_path(:display_name => "non_existent_user")
247     assert_response :not_found
248     assert_template "users/no_such_user"
249     assert_select "h1", "The user non_existent_user does not exist"
250   end
251
252   ##
253   # test the edit action
254   def test_edit
255     creator_user = create(:moderator_user)
256     other_moderator_user = create(:moderator_user)
257     active_block = create(:user_block, :creator => creator_user)
258
259     # Check that the block edit page requires us to login
260     get edit_user_block_path(:id => active_block)
261     assert_redirected_to login_path(:referer => edit_user_block_path(active_block))
262
263     # Login as a normal user
264     session_for(create(:user))
265
266     # Check that normal users can't load the block edit page
267     get edit_user_block_path(:id => active_block)
268     assert_redirected_to :controller => "errors", :action => "forbidden"
269
270     # Login as a moderator
271     session_for(other_moderator_user)
272
273     # Check that the block edit page loads for moderators
274     get edit_user_block_path(:id => active_block)
275     assert_response :success
276     assert_select "h1 a[href='#{user_path active_block.user}']", :text => active_block.user.display_name
277     assert_select "form#edit_user_block_#{active_block.id}", :count => 1 do
278       assert_select "textarea#user_block_reason", :count => 1
279       assert_select "select#user_block_period", :count => 0
280       assert_select "input#user_block_needs_view[type='checkbox']", :count => 0
281       assert_select "input[type='submit'][value='Update block']", :count => 0
282       assert_select "input#user_block_period[type='hidden']", :count => 1
283       assert_select "input#user_block_needs_view[type='hidden']", :count => 1
284       assert_select "input[type='submit'][value='Revoke block']", :count => 1
285     end
286
287     # Login as the block creator
288     session_for(creator_user)
289
290     # Check that the block edit page loads for the creator
291     get edit_user_block_path(:id => active_block)
292     assert_response :success
293     assert_select "h1 a[href='#{user_path active_block.user}']", :text => active_block.user.display_name
294     assert_select "form#edit_user_block_#{active_block.id}", :count => 1 do
295       assert_select "textarea#user_block_reason", :count => 1
296       assert_select "select#user_block_period", :count => 1
297       assert_select "input#user_block_needs_view[type='checkbox']", :count => 1
298       assert_select "input[type='submit'][value='Update block']", :count => 1
299       assert_select "input#user_block_period[type='hidden']", :count => 0
300       assert_select "input#user_block_needs_view[type='hidden']", :count => 0
301       assert_select "input[type='submit'][value='Revoke block']", :count => 0
302     end
303
304     # We should get an error if the user doesn't exist
305     get edit_user_block_path(:id => 99999)
306     assert_response :not_found
307     assert_template "not_found"
308     assert_select "p", "Sorry, the user block with ID 99999 could not be found."
309   end
310
311   ##
312   # test the edit action when the remaining block duration doesn't match the available select options
313   def test_edit_duration
314     moderator_user = create(:moderator_user)
315
316     freeze_time do
317       active_block = create(:user_block, :creator => moderator_user, :ends_at => Time.now.utc + 96.hours)
318
319       session_for(moderator_user)
320       get edit_user_block_path(active_block)
321
322       assert_select "form#edit_user_block_#{active_block.id}", :count => 1 do
323         assert_select "select#user_block_period", :count => 1 do
324           assert_select "option[value='96'][selected]", :count => 1
325         end
326       end
327
328       travel 2.hours
329       get edit_user_block_path(active_block)
330
331       assert_select "form#edit_user_block_#{active_block.id}", :count => 1 do
332         assert_select "select#user_block_period", :count => 1 do
333           assert_select "option[value='96'][selected]", :count => 1
334         end
335       end
336     end
337   end
338
339   ##
340   # test the create action
341   def test_create
342     target_user = create(:user)
343     moderator_user = create(:moderator_user)
344
345     # Not logged in yet, so creating a block should fail
346     post user_blocks_path
347     assert_response :forbidden
348
349     # Login as a normal user
350     session_for(create(:user))
351
352     # Check that normal users can't create blocks
353     post user_blocks_path
354     assert_redirected_to :controller => "errors", :action => "forbidden"
355
356     # Login as a moderator
357     session_for(moderator_user)
358
359     # A bogus block period should result in an error
360     assert_no_difference "UserBlock.count" do
361       post user_blocks_path(:display_name => target_user.display_name,
362                             :user_block_period => "99")
363     end
364     assert_redirected_to new_user_block_path(target_user)
365     assert_equal "The blocking period must be one of the values selectable in the drop-down list.", flash[:error]
366
367     # Check that creating a block works
368     assert_difference "UserBlock.count", 1 do
369       post user_blocks_path(:display_name => target_user.display_name,
370                             :user_block_period => "12",
371                             :user_block => { :needs_view => false, :reason => "Vandalism" })
372     end
373     b = UserBlock.last
374     assert_redirected_to user_block_path(:id => b.id)
375     assert_equal "Created a block on user #{target_user.display_name}.", flash[:notice]
376     assert_in_delta Time.now.utc, b.created_at, 1
377     assert_in_delta Time.now.utc, b.updated_at, 1
378     assert_in_delta Time.now.utc + 12.hours, b.ends_at, 1
379     assert_not b.needs_view
380     assert_equal "Vandalism", b.reason
381     assert_equal "markdown", b.reason_format
382     assert_equal moderator_user.id, b.creator_id
383
384     # We should get an error if no user is specified
385     post user_blocks_path
386     assert_response :not_found
387     assert_template "users/no_such_user"
388     assert_select "h1", "The user  does not exist"
389
390     # We should get an error if the user doesn't exist
391     post user_blocks_path(:display_name => "non_existent_user")
392     assert_response :not_found
393     assert_template "users/no_such_user"
394     assert_select "h1", "The user non_existent_user does not exist"
395   end
396
397   ##
398   # test the duration of a created block
399   def test_create_duration
400     target_user = create(:user)
401     moderator_user = create(:moderator_user)
402
403     session_for(moderator_user)
404     post user_blocks_path(:display_name => target_user.display_name,
405                           :user_block_period => "336",
406                           :user_block => { :needs_view => false, :reason => "Vandalism" })
407
408     block = UserBlock.last
409     assert_equal 1209600, block.ends_at - block.created_at
410   end
411
412   ##
413   # test the update action
414   def test_update
415     moderator_user = create(:moderator_user)
416     active_block = create(:user_block, :creator => moderator_user)
417
418     # Not logged in yet, so updating a block should fail
419     put user_block_path(:id => active_block)
420     assert_response :forbidden
421
422     # Login as a normal user
423     session_for(create(:user))
424
425     # Check that normal users can't update blocks
426     put user_block_path(:id => active_block)
427     assert_redirected_to :controller => "errors", :action => "forbidden"
428
429     # Login as the moderator
430     session_for(moderator_user)
431
432     # A bogus block period should result in an error
433     assert_no_difference "UserBlock.count" do
434       put user_block_path(:id => active_block, :user_block_period => "99")
435     end
436     assert_redirected_to edit_user_block_path(active_block)
437     assert_equal "The blocking period must be one of the values selectable in the drop-down list.", flash[:error]
438
439     # Check that updating a block works
440     assert_no_difference "UserBlock.count" do
441       put user_block_path(:id => active_block,
442                           :user_block_period => "12",
443                           :user_block => { :needs_view => true, :reason => "Vandalism" })
444     end
445     assert_redirected_to user_block_path(active_block)
446     assert_equal "Block updated.", flash[:notice]
447     b = UserBlock.find(active_block.id)
448     assert_in_delta Time.now.utc, b.updated_at, 1
449     assert b.needs_view
450     assert_equal "Vandalism", b.reason
451
452     # We should get an error if the block doesn't exist
453     put user_block_path(:id => 99999)
454     assert_response :not_found
455     assert_template "not_found"
456     assert_select "p", "Sorry, the user block with ID 99999 could not be found."
457   end
458
459   ##
460   # test the update action on expired blocks
461   def test_update_expired
462     creator_user = create(:moderator_user)
463     other_moderator_user = create(:moderator_user)
464     block = create(:user_block, :expired, :creator => creator_user, :reason => "Original Reason")
465
466     session_for(other_moderator_user)
467     put user_block_path(block,
468                         :user_block_period => "0",
469                         :user_block => { :needs_view => false, :reason => "Updated Reason" })
470     assert_redirected_to edit_user_block_path(block)
471     assert_equal "Only the moderator who created this block can edit it.", flash[:error]
472     block.reload
473     assert_not block.active?
474     assert_equal "Original Reason", block.reason
475
476     session_for(creator_user)
477     check_inactive_block_updates(block)
478   end
479
480   ##
481   # test the update action on revoked blocks
482   def test_update_revoked
483     creator_user = create(:moderator_user)
484     revoker_user = create(:moderator_user)
485     other_moderator_user = create(:moderator_user)
486     block = create(:user_block, :revoked, :creator => creator_user, :revoker => revoker_user, :reason => "Original Reason")
487
488     session_for(other_moderator_user)
489     put user_block_path(block,
490                         :user_block_period => "0",
491                         :user_block => { :needs_view => false, :reason => "Updated Reason" })
492     assert_redirected_to edit_user_block_path(block)
493     assert_equal "Only the moderators who created or revoked this block can edit it.", flash[:error]
494     block.reload
495     assert_not_predicate block, :active?
496     assert_equal "Original Reason", block.reason
497
498     session_for(creator_user)
499     check_inactive_block_updates(block)
500
501     session_for(revoker_user)
502     check_inactive_block_updates(block)
503   end
504
505   ##
506   # test the update action revoking the block
507   def test_revoke_using_update_by_creator
508     moderator_user = create(:moderator_user)
509     block = create(:user_block, :creator => moderator_user)
510
511     session_for(moderator_user)
512     put user_block_path(block,
513                         :user_block_period => "24",
514                         :user_block => { :needs_view => false, :reason => "Updated Reason" })
515     assert_redirected_to user_block_path(block)
516     assert_equal "Block updated.", flash[:notice]
517     block.reload
518     assert_predicate block, :active?
519     assert_nil block.revoker
520
521     put user_block_path(block,
522                         :user_block_period => "0",
523                         :user_block => { :needs_view => false, :reason => "Updated Reason" })
524     assert_redirected_to user_block_path(block)
525     assert_equal "Block updated.", flash[:notice]
526     block.reload
527     assert_not_predicate block, :active?
528     assert_equal moderator_user, block.revoker
529   end
530
531   def test_revoke_using_update_by_other_moderator
532     creator_user = create(:moderator_user)
533     other_moderator_user = create(:moderator_user)
534     block = create(:user_block, :creator => creator_user)
535
536     session_for(other_moderator_user)
537     put user_block_path(block,
538                         :user_block_period => "24",
539                         :user_block => { :needs_view => false, :reason => "Updated Reason" })
540     assert_response :success
541     assert_equal "Only the moderator who created this block can edit it without revoking.", flash[:error]
542     block.reload
543     assert_predicate block, :active?
544     assert_nil block.revoker
545
546     put user_block_path(block,
547                         :user_block_period => "0",
548                         :user_block => { :needs_view => false, :reason => "Updated Reason" })
549     assert_redirected_to user_block_path(block)
550     assert_equal "Block updated.", flash[:notice]
551     block.reload
552     assert_not_predicate block, :active?
553     assert_equal other_moderator_user, block.revoker
554   end
555
556   ##
557   # test the revoke action
558   def test_revoke
559     active_block = create(:user_block)
560
561     # Check that the block revoke page requires us to login
562     get revoke_user_block_path(:id => active_block)
563     assert_redirected_to login_path(:referer => revoke_user_block_path(:id => active_block))
564
565     # Login as a normal user
566     session_for(create(:user))
567
568     # Check that normal users can't load the block revoke page
569     get revoke_user_block_path(:id => active_block)
570     assert_redirected_to :controller => "errors", :action => "forbidden"
571
572     # Login as a moderator
573     session_for(create(:moderator_user))
574
575     # Check that the block revoke page loads for moderators
576     get revoke_user_block_path(:id => active_block)
577     assert_response :success
578     assert_template "revoke"
579     assert_select "h1 a[href='#{user_path active_block.user}']", :text => active_block.user.display_name
580     assert_select "form", :count => 1 do
581       assert_select "input#confirm[type='checkbox']", :count => 1
582       assert_select "input[type='submit'][value='Revoke!']", :count => 1
583     end
584
585     # Check that revoking a block using GET should fail
586     get revoke_user_block_path(:id => active_block, :confirm => true)
587     assert_response :success
588     assert_template "revoke"
589     b = UserBlock.find(active_block.id)
590     assert_operator b.ends_at - Time.now.utc, :>, 100
591
592     # Check that revoking a block works using POST
593     post revoke_user_block_path(:id => active_block, :confirm => true)
594     assert_redirected_to user_block_path(active_block)
595     b = UserBlock.find(active_block.id)
596     assert_in_delta Time.now.utc, b.ends_at, 1
597
598     # We should get an error if the block doesn't exist
599     get revoke_user_block_path(:id => 99999)
600     assert_response :not_found
601     assert_template "not_found"
602     assert_select "p", "Sorry, the user block with ID 99999 could not be found."
603   end
604
605   ##
606   # test the revoke all page
607   def test_revoke_all_page
608     blocked_user = create(:user)
609     create(:user_block, :user => blocked_user)
610
611     # Asking for the revoke all blocks page with a bogus user name should fail
612     get user_blocks_on_path("non_existent_user")
613     assert_response :not_found
614
615     # Check that the revoke all blocks page requires us to login
616     get revoke_all_user_blocks_path(blocked_user)
617     assert_redirected_to login_path(:referer => revoke_all_user_blocks_path(blocked_user))
618
619     # Login as a normal user
620     session_for(create(:user))
621
622     # Check that normal users can't load the revoke all blocks page
623     get revoke_all_user_blocks_path(blocked_user)
624     assert_redirected_to :controller => "errors", :action => "forbidden"
625
626     # Login as a moderator
627     session_for(create(:moderator_user))
628
629     # Check that the revoke all blocks page loads for moderators
630     get revoke_all_user_blocks_path(blocked_user)
631     assert_response :success
632     assert_select "h1 a[href='#{user_path blocked_user}']", :text => blocked_user.display_name
633   end
634
635   ##
636   # test the revoke all action
637   def test_revoke_all_action
638     blocked_user = create(:user)
639     active_block1 = create(:user_block, :user => blocked_user)
640     active_block2 = create(:user_block, :user => blocked_user)
641     expired_block1 = create(:user_block, :expired, :user => blocked_user)
642     blocks = [active_block1, active_block2, expired_block1]
643     moderator_user = create(:moderator_user)
644
645     assert_predicate active_block1, :active?
646     assert_predicate active_block2, :active?
647     assert_not_predicate expired_block1, :active?
648
649     # Login as a normal user
650     session_for(create(:user))
651
652     # Check that normal users can't load the block revoke page
653     get revoke_all_user_blocks_path(:blocked_user)
654     assert_redirected_to :controller => "errors", :action => "forbidden"
655
656     # Login as a moderator
657     session_for(moderator_user)
658
659     # Check that revoking blocks using GET should fail
660     get revoke_all_user_blocks_path(blocked_user, :confirm => true)
661     assert_response :success
662     assert_template "revoke_all"
663
664     blocks.each(&:reload)
665     assert_predicate active_block1, :active?
666     assert_predicate active_block2, :active?
667     assert_not_predicate expired_block1, :active?
668
669     # Check that revoking blocks works using POST
670     post revoke_all_user_blocks_path(blocked_user, :confirm => true)
671     assert_redirected_to user_blocks_on_path(blocked_user)
672
673     blocks.each(&:reload)
674     assert_not_predicate active_block1, :active?
675     assert_not_predicate active_block2, :active?
676     assert_not_predicate expired_block1, :active?
677     assert_equal moderator_user, active_block1.revoker
678     assert_equal moderator_user, active_block2.revoker
679     assert_not_equal moderator_user, expired_block1.revoker
680   end
681
682   ##
683   # test changes to end/deactivation dates
684   def test_dates_when_viewed_before_end
685     blocked_user = create(:user)
686     moderator_user = create(:moderator_user)
687
688     freeze_time do
689       session_for(moderator_user)
690       assert_difference "UserBlock.count", 1 do
691         post user_blocks_path(:display_name => blocked_user.display_name,
692                               :user_block_period => "48",
693                               :user_block => { :needs_view => true, :reason => "Testing deactivates_at" })
694       end
695       block = UserBlock.last
696       assert_equal Time.now.utc + 2.days, block.ends_at
697       assert_nil block.deactivates_at
698
699       travel 1.day
700       session_for(blocked_user)
701       get user_block_path(block)
702       block.reload
703       assert_equal Time.now.utc + 1.day, block.ends_at
704       assert_equal Time.now.utc + 1.day, block.deactivates_at
705     end
706   end
707
708   def test_dates_when_viewed_after_end
709     blocked_user = create(:user)
710     moderator_user = create(:moderator_user)
711
712     freeze_time do
713       session_for(moderator_user)
714       assert_difference "UserBlock.count", 1 do
715         post user_blocks_path(:display_name => blocked_user.display_name,
716                               :user_block_period => "24",
717                               :user_block => { :needs_view => true, :reason => "Testing deactivates_at" })
718       end
719       block = UserBlock.last
720       assert_equal Time.now.utc + 1.day, block.ends_at
721       assert_nil block.deactivates_at
722
723       travel 2.days
724       session_for(blocked_user)
725       get user_block_path(block)
726       block.reload
727       assert_equal Time.now.utc - 1.day, block.ends_at
728       assert_equal Time.now.utc, block.deactivates_at
729     end
730   end
731
732   def test_dates_when_edited_before_end
733     blocked_user = create(:user)
734     moderator_user = create(:moderator_user)
735
736     freeze_time do
737       session_for(moderator_user)
738       assert_difference "UserBlock.count", 1 do
739         post user_blocks_path(:display_name => blocked_user.display_name,
740                               :user_block_period => "48",
741                               :user_block => { :needs_view => false, :reason => "Testing deactivates_at" })
742       end
743       block = UserBlock.last
744       assert_equal Time.now.utc + 2.days, block.ends_at
745       assert_equal Time.now.utc + 2.days, block.deactivates_at
746
747       travel 1.day
748       put user_block_path(block,
749                           :user_block_period => "48",
750                           :user_block => { :needs_view => false, :reason => "Testing deactivates_at updated" })
751       block.reload
752       assert_equal Time.now.utc + 2.days, block.ends_at
753       assert_equal Time.now.utc + 2.days, block.deactivates_at
754     end
755   end
756
757   def test_dates_when_edited_after_end
758     blocked_user = create(:user)
759     moderator_user = create(:moderator_user)
760
761     freeze_time do
762       session_for(moderator_user)
763       assert_difference "UserBlock.count", 1 do
764         post user_blocks_path(:display_name => blocked_user.display_name,
765                               :user_block_period => "24",
766                               :user_block => { :needs_view => false, :reason => "Testing deactivates_at" })
767       end
768       block = UserBlock.last
769       assert_equal Time.now.utc + 1.day, block.ends_at
770       assert_equal Time.now.utc + 1.day, block.deactivates_at
771
772       travel 2.days
773       put user_block_path(block,
774                           :user_block_period => "0",
775                           :user_block => { :needs_view => false, :reason => "Testing deactivates_at updated" })
776       block.reload
777       assert_equal Time.now.utc - 1.day, block.ends_at
778       assert_equal Time.now.utc - 1.day, block.deactivates_at
779     end
780   end
781
782   ##
783   # test updates on legacy records without correctly initialized deactivates_at
784   def test_update_legacy_deactivates_at
785     blocked_user = create(:user)
786     moderator_user = create(:moderator_user)
787
788     freeze_time do
789       block = UserBlock.new :user => blocked_user,
790                             :creator => moderator_user,
791                             :reason => "because",
792                             :ends_at => Time.now.utc + 1.day,
793                             :needs_view => false
794
795       assert_difference "UserBlock.count", 1 do
796         block.save :validate => false
797       end
798
799       travel 2.days
800       session_for(moderator_user)
801       put user_block_path(block,
802                           :user_block_period => "0",
803                           :user_block => { :needs_view => false, :reason => "Testing legacy block update" })
804       block.reload
805       assert_equal Time.now.utc - 1.day, block.ends_at
806       assert_equal Time.now.utc - 1.day, block.deactivates_at
807     end
808   end
809
810   ##
811   # test the blocks_on action
812   def test_blocks_on
813     blocked_user = create(:user)
814     unblocked_user = create(:user)
815     normal_user = create(:user)
816     active_block = create(:user_block, :user => blocked_user)
817     revoked_block = create(:user_block, :revoked, :user => blocked_user)
818     expired_block = create(:user_block, :expired, :user => unblocked_user)
819
820     # Asking for a list of blocks with a bogus user name should fail
821     get user_blocks_on_path("non_existent_user")
822     assert_response :not_found
823     assert_template "users/no_such_user"
824     assert_select "h1", "The user non_existent_user does not exist"
825
826     # Check the list of blocks for a user that has never been blocked
827     get user_blocks_on_path(normal_user)
828     assert_response :success
829     assert_select "table#block_list", false
830     assert_select "p", "#{normal_user.display_name} has not been blocked yet."
831
832     # Check the list of blocks for a user that is currently blocked
833     get user_blocks_on_path(blocked_user)
834     assert_response :success
835     assert_select "h1 a[href='#{user_path blocked_user}']", :text => blocked_user.display_name
836     assert_select "table#block_list tbody", :count => 1 do
837       assert_select "tr", 2
838       assert_select "a[href='#{user_block_path(active_block)}']", 1
839       assert_select "a[href='#{user_block_path(revoked_block)}']", 1
840     end
841
842     # Check the list of blocks for a user that has previously been blocked
843     get user_blocks_on_path(unblocked_user)
844     assert_response :success
845     assert_select "h1 a[href='#{user_path unblocked_user}']", :text => unblocked_user.display_name
846     assert_select "table#block_list tbody", :count => 1 do
847       assert_select "tr", 1
848       assert_select "a[href='#{user_block_path(expired_block)}']", 1
849     end
850   end
851
852   ##
853   # test the blocks_on action with multiple pages
854   def test_blocks_on_paged
855     user = create(:user)
856     user_blocks = create_list(:user_block, 50, :user => user).reverse
857     next_path = user_blocks_on_path(user)
858
859     get next_path
860     assert_response :success
861     check_user_blocks_table user_blocks[0...20]
862     check_no_page_link "Newer Blocks"
863     next_path = check_page_link "Older Blocks"
864
865     get next_path
866     assert_response :success
867     check_user_blocks_table user_blocks[20...40]
868     check_page_link "Newer Blocks"
869     next_path = check_page_link "Older Blocks"
870
871     get next_path
872     assert_response :success
873     check_user_blocks_table user_blocks[40...50]
874     check_page_link "Newer Blocks"
875     check_no_page_link "Older Blocks"
876   end
877
878   ##
879   # test the blocks_on action with invalid pages
880   def test_blocks_on_invalid_paged
881     user = create(:user)
882
883     %w[-1 0 fred].each do |id|
884       get user_blocks_on_path(user, :before => id)
885       assert_redirected_to :controller => :errors, :action => :bad_request
886
887       get user_blocks_on_path(user, :after => id)
888       assert_redirected_to :controller => :errors, :action => :bad_request
889     end
890   end
891
892   ##
893   # test the blocks_by action
894   def test_blocks_by
895     moderator_user = create(:moderator_user)
896     second_moderator_user = create(:moderator_user)
897     normal_user = create(:user)
898     active_block = create(:user_block, :creator => moderator_user)
899     expired_block = create(:user_block, :expired, :creator => second_moderator_user)
900     revoked_block = create(:user_block, :revoked, :creator => second_moderator_user)
901
902     # Asking for a list of blocks with a bogus user name should fail
903     get user_blocks_by_path("non_existent_user")
904     assert_response :not_found
905     assert_template "users/no_such_user"
906     assert_select "h1", "The user non_existent_user does not exist"
907
908     # Check the list of blocks given by one moderator
909     get user_blocks_by_path(moderator_user)
910     assert_response :success
911     assert_select "h1 a[href='#{user_path moderator_user}']", :text => moderator_user.display_name
912     assert_select "table#block_list tbody", :count => 1 do
913       assert_select "tr", 1
914       assert_select "a[href='#{user_block_path(active_block)}']", 1
915     end
916
917     # Check the list of blocks given by a different moderator
918     get user_blocks_by_path(second_moderator_user)
919     assert_response :success
920     assert_select "h1 a[href='#{user_path second_moderator_user}']", :text => second_moderator_user.display_name
921     assert_select "table#block_list tbody", :count => 1 do
922       assert_select "tr", 2
923       assert_select "a[href='#{user_block_path(expired_block)}']", 1
924       assert_select "a[href='#{user_block_path(revoked_block)}']", 1
925     end
926
927     # Check the list of blocks (not) given by a normal user
928     get user_blocks_by_path(normal_user)
929     assert_response :success
930     assert_select "table#block_list", false
931     assert_select "p", "#{normal_user.display_name} has not made any blocks yet."
932   end
933
934   ##
935   # test the blocks_by action with multiple pages
936   def test_blocks_by_paged
937     user = create(:moderator_user)
938     user_blocks = create_list(:user_block, 50, :creator => user).reverse
939     next_path = user_blocks_by_path(user)
940
941     get next_path
942     assert_response :success
943     check_user_blocks_table user_blocks[0...20]
944     check_no_page_link "Newer Blocks"
945     next_path = check_page_link "Older Blocks"
946
947     get next_path
948     assert_response :success
949     check_user_blocks_table user_blocks[20...40]
950     check_page_link "Newer Blocks"
951     next_path = check_page_link "Older Blocks"
952
953     get next_path
954     assert_response :success
955     check_user_blocks_table user_blocks[40...50]
956     check_page_link "Newer Blocks"
957     check_no_page_link "Older Blocks"
958   end
959
960   ##
961   # test the blocks_by action with invalid pages
962   def test_blocks_by_invalid_paged
963     user = create(:moderator_user)
964
965     %w[-1 0 fred].each do |id|
966       get user_blocks_by_path(user, :before => id)
967       assert_redirected_to :controller => :errors, :action => :bad_request
968
969       get user_blocks_by_path(user, :after => id)
970       assert_redirected_to :controller => :errors, :action => :bad_request
971     end
972   end
973
974   private
975
976   def check_block_buttons(block, edit: 0, revoke: 0)
977     [user_blocks_path, user_block_path(block)].each do |path|
978       get path
979       assert_response :success
980       assert_select "a[href='#{edit_user_block_path block}']", :count => edit
981       assert_select "a[href='#{revoke_user_block_path block}']", :count => revoke
982     end
983   end
984
985   def check_inactive_block_updates(block)
986     original_ends_at = block.ends_at
987
988     put user_block_path(block,
989                         :user_block_period => "0",
990                         :user_block => { :needs_view => false, :reason => "Updated Reason" })
991     assert_redirected_to user_block_path(block)
992     assert_equal "Block updated.", flash[:notice]
993     block.reload
994     assert_not_predicate block, :active?
995     assert_equal "Updated Reason", block.reason
996     assert_equal original_ends_at, block.ends_at
997
998     put user_block_path(block,
999                         :user_block_period => "0",
1000                         :user_block => { :needs_view => true, :reason => "Updated Reason Needs View" })
1001     assert_response :success
1002     assert_equal "This block is inactive and cannot be reactivated.", flash[:error]
1003     block.reload
1004     assert_not_predicate block, :active?
1005     assert_equal "Updated Reason", block.reason
1006     assert_equal original_ends_at, block.ends_at
1007
1008     put user_block_path(block,
1009                         :user_block_period => "1",
1010                         :user_block => { :needs_view => false, :reason => "Updated Reason Duration Extended" })
1011     assert_response :success
1012     assert_equal "This block is inactive and cannot be reactivated.", flash[:error]
1013     block.reload
1014     assert_not_predicate block, :active?
1015     assert_equal "Updated Reason", block.reason
1016     assert_equal original_ends_at, block.ends_at
1017
1018     put user_block_path(block,
1019                         :user_block_period => "0",
1020                         :user_block => { :needs_view => false, :reason => "Updated Reason Again" })
1021     assert_redirected_to user_block_path(block)
1022     assert_equal "Block updated.", flash[:notice]
1023     block.reload
1024     assert_not_predicate block, :active?
1025     assert_equal "Updated Reason Again", block.reason
1026     assert_equal original_ends_at, block.ends_at
1027   end
1028
1029   def check_user_blocks_table(user_blocks)
1030     assert_dom "table#block_list tbody tr" do |rows|
1031       assert_equal user_blocks.count, rows.count, "unexpected number of rows in user blocks table"
1032       rows.zip(user_blocks).map do |row, user_block|
1033         assert_dom row, "a[href='#{user_block_path user_block}']", 1
1034       end
1035     end
1036   end
1037
1038   def check_no_page_link(name)
1039     assert_select "a.page-link", { :text => /#{Regexp.quote(name)}/, :count => 0 }, "unexpected #{name} page link"
1040   end
1041
1042   def check_page_link(name)
1043     assert_select "a.page-link", { :text => /#{Regexp.quote(name)}/ }, "missing #{name} page link" do |buttons|
1044       return buttons.first.attributes["href"].value
1045     end
1046   end
1047 end