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