]> git.openstreetmap.org Git - rails.git/blob - test/controllers/user_blocks_controller_test.rb
Show edit links for inactive blocks in block lists
[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
216   end
217
218   private
219
220   def check_block_buttons(block, edit: 0, revoke: 0)
221     get user_blocks_path
222     assert_response :success
223     assert_select "a[href='#{edit_user_block_path block}']", :count => edit
224     assert_select "a[href='#{revoke_user_block_path block}']", :count => revoke
225   end
226
227   public
228
229   ##
230   # test the new action
231   def test_new
232     target_user = create(:user)
233
234     # Check that the block creation page requires us to login
235     get new_user_block_path(target_user)
236     assert_redirected_to login_path(:referer => new_user_block_path(target_user))
237
238     # Login as a normal user
239     session_for(create(:user))
240
241     # Check that normal users can't load the block creation page
242     get new_user_block_path(target_user)
243     assert_redirected_to :controller => "errors", :action => "forbidden"
244
245     # Login as a moderator
246     session_for(create(:moderator_user))
247
248     # Check that the block creation page loads for moderators
249     get new_user_block_path(target_user)
250     assert_response :success
251     assert_select "h1 a[href='#{user_path target_user}']", :text => target_user.display_name
252     assert_select "form#new_user_block", :count => 1 do
253       assert_select "textarea#user_block_reason", :count => 1
254       assert_select "select#user_block_period", :count => 1
255       assert_select "input#user_block_needs_view[type='checkbox']", :count => 1
256       assert_select "input#display_name[type='hidden']", :count => 1
257       assert_select "input[type='submit'][value='Create block']", :count => 1
258     end
259
260     # We should get an error if the user doesn't exist
261     get new_user_block_path(:display_name => "non_existent_user")
262     assert_response :not_found
263     assert_template "users/no_such_user"
264     assert_select "h1", "The user non_existent_user does not exist"
265   end
266
267   ##
268   # test the edit action
269   def test_edit
270     active_block = create(:user_block)
271
272     # Check that the block edit page requires us to login
273     get edit_user_block_path(:id => active_block)
274     assert_redirected_to login_path(:referer => edit_user_block_path(active_block))
275
276     # Login as a normal user
277     session_for(create(:user))
278
279     # Check that normal users can't load the block edit page
280     get edit_user_block_path(:id => active_block)
281     assert_redirected_to :controller => "errors", :action => "forbidden"
282
283     # Login as a moderator
284     session_for(create(:moderator_user))
285
286     # Check that the block edit page loads for moderators
287     get edit_user_block_path(:id => active_block)
288     assert_response :success
289     assert_select "h1 a[href='#{user_path active_block.user}']", :text => active_block.user.display_name
290     assert_select "form#edit_user_block_#{active_block.id}", :count => 1 do
291       assert_select "textarea#user_block_reason", :count => 1
292       assert_select "select#user_block_period", :count => 1
293       assert_select "input#user_block_needs_view[type='checkbox']", :count => 1
294       assert_select "input[type='submit'][value='Update block']", :count => 1
295     end
296
297     # We should get an error if the user doesn't exist
298     get edit_user_block_path(:id => 99999)
299     assert_response :not_found
300     assert_template "not_found"
301     assert_select "p", "Sorry, the user block with ID 99999 could not be found."
302   end
303
304   ##
305   # test the edit action when the remaining block duration doesn't match the available select options
306   def test_edit_duration
307     moderator_user = create(:moderator_user)
308
309     freeze_time do
310       active_block = create(:user_block, :creator => moderator_user, :ends_at => Time.now.utc + 96.hours)
311
312       session_for(moderator_user)
313       get edit_user_block_path(active_block)
314
315       assert_select "form#edit_user_block_#{active_block.id}", :count => 1 do
316         assert_select "select#user_block_period", :count => 1 do
317           assert_select "option[value='96'][selected]", :count => 1
318         end
319       end
320
321       travel 2.hours
322       get edit_user_block_path(active_block)
323
324       assert_select "form#edit_user_block_#{active_block.id}", :count => 1 do
325         assert_select "select#user_block_period", :count => 1 do
326           assert_select "option[value='96'][selected]", :count => 1
327         end
328       end
329     end
330   end
331
332   ##
333   # test the create action
334   def test_create
335     target_user = create(:user)
336     moderator_user = create(:moderator_user)
337
338     # Not logged in yet, so creating a block should fail
339     post user_blocks_path
340     assert_response :forbidden
341
342     # Login as a normal user
343     session_for(create(:user))
344
345     # Check that normal users can't create blocks
346     post user_blocks_path
347     assert_redirected_to :controller => "errors", :action => "forbidden"
348
349     # Login as a moderator
350     session_for(moderator_user)
351
352     # A bogus block period should result in an error
353     assert_no_difference "UserBlock.count" do
354       post user_blocks_path(:display_name => target_user.display_name,
355                             :user_block_period => "99")
356     end
357     assert_redirected_to new_user_block_path(target_user)
358     assert_equal "The blocking period must be one of the values selectable in the drop-down list.", flash[:error]
359
360     # Check that creating a block works
361     assert_difference "UserBlock.count", 1 do
362       post user_blocks_path(:display_name => target_user.display_name,
363                             :user_block_period => "12",
364                             :user_block => { :needs_view => false, :reason => "Vandalism" })
365     end
366     id = UserBlock.order(:id).ids.last
367     assert_redirected_to user_block_path(:id => id)
368     assert_equal "Created a block on user #{target_user.display_name}.", flash[:notice]
369     b = UserBlock.find(id)
370     assert_in_delta Time.now.utc, b.created_at, 1
371     assert_in_delta Time.now.utc, b.updated_at, 1
372     assert_in_delta Time.now.utc + 12.hours, b.ends_at, 1
373     assert_not b.needs_view
374     assert_equal "Vandalism", b.reason
375     assert_equal "markdown", b.reason_format
376     assert_equal moderator_user.id, b.creator_id
377
378     # We should get an error if no user is specified
379     post user_blocks_path
380     assert_response :not_found
381     assert_template "users/no_such_user"
382     assert_select "h1", "The user  does not exist"
383
384     # We should get an error if the user doesn't exist
385     post user_blocks_path(:display_name => "non_existent_user")
386     assert_response :not_found
387     assert_template "users/no_such_user"
388     assert_select "h1", "The user non_existent_user does not exist"
389   end
390
391   ##
392   # test the duration of a created block
393   def test_create_duration
394     target_user = create(:user)
395     moderator_user = create(:moderator_user)
396
397     session_for(moderator_user)
398     post user_blocks_path(:display_name => target_user.display_name,
399                           :user_block_period => "336",
400                           :user_block => { :needs_view => false, :reason => "Vandalism" })
401
402     block = UserBlock.order(:id).last
403     assert_equal 1209600, block.ends_at - block.created_at
404   end
405
406   ##
407   # test the update action
408   def test_update
409     moderator_user = create(:moderator_user)
410     second_moderator_user = create(:moderator_user)
411     active_block = create(:user_block, :creator => moderator_user)
412
413     # Not logged in yet, so updating a block should fail
414     put user_block_path(:id => active_block)
415     assert_response :forbidden
416
417     # Login as a normal user
418     session_for(create(:user))
419
420     # Check that normal users can't update blocks
421     put user_block_path(:id => active_block)
422     assert_redirected_to :controller => "errors", :action => "forbidden"
423
424     # Login as the wrong moderator
425     session_for(second_moderator_user)
426
427     # Check that only the person who created a block can update it
428     assert_no_difference "UserBlock.count" do
429       put user_block_path(:id => active_block,
430                           :user_block_period => "12",
431                           :user_block => { :needs_view => true, :reason => "Vandalism" })
432     end
433     assert_redirected_to edit_user_block_path(active_block)
434     assert_equal "Only the moderator who created this block can edit it.", flash[:error]
435
436     # Login as the correct moderator
437     session_for(moderator_user)
438
439     # A bogus block period should result in an error
440     assert_no_difference "UserBlock.count" do
441       put user_block_path(:id => active_block, :user_block_period => "99")
442     end
443     assert_redirected_to edit_user_block_path(active_block)
444     assert_equal "The blocking period must be one of the values selectable in the drop-down list.", flash[:error]
445
446     # Check that updating a block works
447     assert_no_difference "UserBlock.count" do
448       put user_block_path(:id => active_block,
449                           :user_block_period => "12",
450                           :user_block => { :needs_view => true, :reason => "Vandalism" })
451     end
452     assert_redirected_to user_block_path(active_block)
453     assert_equal "Block updated.", flash[:notice]
454     b = UserBlock.find(active_block.id)
455     assert_in_delta Time.now.utc, b.updated_at, 1
456     assert b.needs_view
457     assert_equal "Vandalism", b.reason
458
459     # We should get an error if the block doesn't exist
460     put user_block_path(:id => 99999)
461     assert_response :not_found
462     assert_template "not_found"
463     assert_select "p", "Sorry, the user block with ID 99999 could not be found."
464   end
465
466   ##
467   # test the update action on expired blocks
468   def test_update_expired
469     creator_user = create(:moderator_user)
470     other_moderator_user = create(:moderator_user)
471     block = create(:user_block, :expired, :creator => creator_user, :reason => "Original Reason")
472
473     session_for(other_moderator_user)
474     put user_block_path(block,
475                         :user_block_period => "0",
476                         :user_block => { :needs_view => false, :reason => "Updated Reason" })
477     assert_redirected_to edit_user_block_path(block)
478     assert_equal "Only the moderator who created this block can edit it.", flash[:error]
479     block.reload
480     assert_not block.active?
481     assert_equal "Original Reason", block.reason
482
483     session_for(creator_user)
484     put user_block_path(block,
485                         :user_block_period => "0",
486                         :user_block => { :needs_view => false, :reason => "Updated Reason" })
487     assert_redirected_to user_block_path(block)
488     assert_equal "Block updated.", flash[:notice]
489     block.reload
490     assert_not block.active?
491     assert_equal "Updated Reason", block.reason
492
493     put user_block_path(block,
494                         :user_block_period => "0",
495                         :user_block => { :needs_view => true, :reason => "Updated Reason 2" })
496     assert_redirected_to user_block_path(block)
497     assert_equal "Block updated.", flash[:notice]
498     block.reload
499     assert_predicate block, :active?
500     assert_equal "Updated Reason 2", block.reason
501   end
502
503   ##
504   # test the revoke action
505   def test_revoke
506     active_block = create(:user_block)
507
508     # Check that the block revoke page requires us to login
509     get revoke_user_block_path(:id => active_block)
510     assert_redirected_to login_path(:referer => revoke_user_block_path(:id => active_block))
511
512     # Login as a normal user
513     session_for(create(:user))
514
515     # Check that normal users can't load the block revoke page
516     get revoke_user_block_path(:id => active_block)
517     assert_redirected_to :controller => "errors", :action => "forbidden"
518
519     # Login as a moderator
520     session_for(create(:moderator_user))
521
522     # Check that the block revoke page loads for moderators
523     get revoke_user_block_path(:id => active_block)
524     assert_response :success
525     assert_template "revoke"
526     assert_select "h1 a[href='#{user_path active_block.user}']", :text => active_block.user.display_name
527     assert_select "form", :count => 1 do
528       assert_select "input#confirm[type='checkbox']", :count => 1
529       assert_select "input[type='submit'][value='Revoke!']", :count => 1
530     end
531
532     # Check that revoking a block using GET should fail
533     get revoke_user_block_path(:id => active_block, :confirm => true)
534     assert_response :success
535     assert_template "revoke"
536     b = UserBlock.find(active_block.id)
537     assert_operator b.ends_at - Time.now.utc, :>, 100
538
539     # Check that revoking a block works using POST
540     post revoke_user_block_path(:id => active_block, :confirm => true)
541     assert_redirected_to user_block_path(active_block)
542     b = UserBlock.find(active_block.id)
543     assert_in_delta Time.now.utc, b.ends_at, 1
544
545     # We should get an error if the block doesn't exist
546     get revoke_user_block_path(:id => 99999)
547     assert_response :not_found
548     assert_template "not_found"
549     assert_select "p", "Sorry, the user block with ID 99999 could not be found."
550   end
551
552   ##
553   # test the revoke all page
554   def test_revoke_all_page
555     blocked_user = create(:user)
556     create(:user_block, :user => blocked_user)
557
558     # Asking for the revoke all blocks page with a bogus user name should fail
559     get user_blocks_on_path("non_existent_user")
560     assert_response :not_found
561
562     # Check that the revoke all blocks page requires us to login
563     get revoke_all_user_blocks_path(blocked_user)
564     assert_redirected_to login_path(:referer => revoke_all_user_blocks_path(blocked_user))
565
566     # Login as a normal user
567     session_for(create(:user))
568
569     # Check that normal users can't load the revoke all blocks page
570     get revoke_all_user_blocks_path(blocked_user)
571     assert_redirected_to :controller => "errors", :action => "forbidden"
572
573     # Login as a moderator
574     session_for(create(:moderator_user))
575
576     # Check that the revoke all blocks page loads for moderators
577     get revoke_all_user_blocks_path(blocked_user)
578     assert_response :success
579     assert_select "h1 a[href='#{user_path blocked_user}']", :text => blocked_user.display_name
580   end
581
582   ##
583   # test the revoke all action
584   def test_revoke_all_action
585     blocked_user = create(:user)
586     active_block1 = create(:user_block, :user => blocked_user)
587     active_block2 = create(:user_block, :user => blocked_user)
588     expired_block1 = create(:user_block, :expired, :user => blocked_user)
589     blocks = [active_block1, active_block2, expired_block1]
590     moderator_user = create(:moderator_user)
591
592     assert_predicate active_block1, :active?
593     assert_predicate active_block2, :active?
594     assert_not_predicate expired_block1, :active?
595
596     # Login as a normal user
597     session_for(create(:user))
598
599     # Check that normal users can't load the block revoke page
600     get revoke_all_user_blocks_path(:blocked_user)
601     assert_redirected_to :controller => "errors", :action => "forbidden"
602
603     # Login as a moderator
604     session_for(moderator_user)
605
606     # Check that revoking blocks using GET should fail
607     get revoke_all_user_blocks_path(blocked_user, :confirm => true)
608     assert_response :success
609     assert_template "revoke_all"
610
611     blocks.each(&:reload)
612     assert_predicate active_block1, :active?
613     assert_predicate active_block2, :active?
614     assert_not_predicate expired_block1, :active?
615
616     # Check that revoking blocks works using POST
617     post revoke_all_user_blocks_path(blocked_user, :confirm => true)
618     assert_redirected_to user_blocks_on_path(blocked_user)
619
620     blocks.each(&:reload)
621     assert_not_predicate active_block1, :active?
622     assert_not_predicate active_block2, :active?
623     assert_not_predicate expired_block1, :active?
624     assert_equal moderator_user, active_block1.revoker
625     assert_equal moderator_user, active_block2.revoker
626     assert_not_equal moderator_user, expired_block1.revoker
627   end
628
629   ##
630   # test the blocks_on action
631   def test_blocks_on
632     blocked_user = create(:user)
633     unblocked_user = create(:user)
634     normal_user = create(:user)
635     active_block = create(:user_block, :user => blocked_user)
636     revoked_block = create(:user_block, :revoked, :user => blocked_user)
637     expired_block = create(:user_block, :expired, :user => unblocked_user)
638
639     # Asking for a list of blocks with a bogus user name should fail
640     get user_blocks_on_path("non_existent_user")
641     assert_response :not_found
642     assert_template "users/no_such_user"
643     assert_select "h1", "The user non_existent_user does not exist"
644
645     # Check the list of blocks for a user that has never been blocked
646     get user_blocks_on_path(normal_user)
647     assert_response :success
648     assert_select "table#block_list", false
649     assert_select "p", "#{normal_user.display_name} has not been blocked yet."
650
651     # Check the list of blocks for a user that is currently blocked
652     get user_blocks_on_path(blocked_user)
653     assert_response :success
654     assert_select "h1 a[href='#{user_path blocked_user}']", :text => blocked_user.display_name
655     assert_select "table#block_list tbody", :count => 1 do
656       assert_select "tr", 2
657       assert_select "a[href='#{user_block_path(active_block)}']", 1
658       assert_select "a[href='#{user_block_path(revoked_block)}']", 1
659     end
660
661     # Check the list of blocks for a user that has previously been blocked
662     get user_blocks_on_path(unblocked_user)
663     assert_response :success
664     assert_select "h1 a[href='#{user_path unblocked_user}']", :text => unblocked_user.display_name
665     assert_select "table#block_list tbody", :count => 1 do
666       assert_select "tr", 1
667       assert_select "a[href='#{user_block_path(expired_block)}']", 1
668     end
669   end
670
671   ##
672   # test the blocks_on action with multiple pages
673   def test_blocks_on_paged
674     user = create(:user)
675     user_blocks = create_list(:user_block, 50, :user => user).reverse
676     next_path = user_blocks_on_path(user)
677
678     get next_path
679     assert_response :success
680     check_user_blocks_table user_blocks[0...20]
681     check_no_page_link "Newer Blocks"
682     next_path = check_page_link "Older Blocks"
683
684     get next_path
685     assert_response :success
686     check_user_blocks_table user_blocks[20...40]
687     check_page_link "Newer Blocks"
688     next_path = check_page_link "Older Blocks"
689
690     get next_path
691     assert_response :success
692     check_user_blocks_table user_blocks[40...50]
693     check_page_link "Newer Blocks"
694     check_no_page_link "Older Blocks"
695   end
696
697   ##
698   # test the blocks_on action with invalid pages
699   def test_blocks_on_invalid_paged
700     user = create(:user)
701
702     %w[-1 0 fred].each do |id|
703       get user_blocks_on_path(user, :before => id)
704       assert_redirected_to :controller => :errors, :action => :bad_request
705
706       get user_blocks_on_path(user, :after => id)
707       assert_redirected_to :controller => :errors, :action => :bad_request
708     end
709   end
710
711   ##
712   # test the blocks_by action
713   def test_blocks_by
714     moderator_user = create(:moderator_user)
715     second_moderator_user = create(:moderator_user)
716     normal_user = create(:user)
717     active_block = create(:user_block, :creator => moderator_user)
718     expired_block = create(:user_block, :expired, :creator => second_moderator_user)
719     revoked_block = create(:user_block, :revoked, :creator => second_moderator_user)
720
721     # Asking for a list of blocks with a bogus user name should fail
722     get user_blocks_by_path("non_existent_user")
723     assert_response :not_found
724     assert_template "users/no_such_user"
725     assert_select "h1", "The user non_existent_user does not exist"
726
727     # Check the list of blocks given by one moderator
728     get user_blocks_by_path(moderator_user)
729     assert_response :success
730     assert_select "h1 a[href='#{user_path moderator_user}']", :text => moderator_user.display_name
731     assert_select "table#block_list tbody", :count => 1 do
732       assert_select "tr", 1
733       assert_select "a[href='#{user_block_path(active_block)}']", 1
734     end
735
736     # Check the list of blocks given by a different moderator
737     get user_blocks_by_path(second_moderator_user)
738     assert_response :success
739     assert_select "h1 a[href='#{user_path second_moderator_user}']", :text => second_moderator_user.display_name
740     assert_select "table#block_list tbody", :count => 1 do
741       assert_select "tr", 2
742       assert_select "a[href='#{user_block_path(expired_block)}']", 1
743       assert_select "a[href='#{user_block_path(revoked_block)}']", 1
744     end
745
746     # Check the list of blocks (not) given by a normal user
747     get user_blocks_by_path(normal_user)
748     assert_response :success
749     assert_select "table#block_list", false
750     assert_select "p", "#{normal_user.display_name} has not made any blocks yet."
751   end
752
753   ##
754   # test the blocks_by action with multiple pages
755   def test_blocks_by_paged
756     user = create(:moderator_user)
757     user_blocks = create_list(:user_block, 50, :creator => user).reverse
758     next_path = user_blocks_by_path(user)
759
760     get next_path
761     assert_response :success
762     check_user_blocks_table user_blocks[0...20]
763     check_no_page_link "Newer Blocks"
764     next_path = check_page_link "Older Blocks"
765
766     get next_path
767     assert_response :success
768     check_user_blocks_table user_blocks[20...40]
769     check_page_link "Newer Blocks"
770     next_path = check_page_link "Older Blocks"
771
772     get next_path
773     assert_response :success
774     check_user_blocks_table user_blocks[40...50]
775     check_page_link "Newer Blocks"
776     check_no_page_link "Older Blocks"
777   end
778
779   ##
780   # test the blocks_by action with invalid pages
781   def test_blocks_by_invalid_paged
782     user = create(:moderator_user)
783
784     %w[-1 0 fred].each do |id|
785       get user_blocks_by_path(user, :before => id)
786       assert_redirected_to :controller => :errors, :action => :bad_request
787
788       get user_blocks_by_path(user, :after => id)
789       assert_redirected_to :controller => :errors, :action => :bad_request
790     end
791   end
792
793   private
794
795   def check_user_blocks_table(user_blocks)
796     assert_dom "table#block_list tbody tr" do |rows|
797       assert_equal user_blocks.count, rows.count, "unexpected number of rows in user blocks table"
798       rows.zip(user_blocks).map do |row, user_block|
799         assert_dom row, "a[href='#{user_block_path user_block}']", 1
800       end
801     end
802   end
803
804   def check_no_page_link(name)
805     assert_select "a.page-link", { :text => /#{Regexp.quote(name)}/, :count => 0 }, "unexpected #{name} page link"
806   end
807
808   def check_page_link(name)
809     assert_select "a.page-link", { :text => /#{Regexp.quote(name)}/ }, "missing #{name} page link" do |buttons|
810       return buttons.first.attributes["href"].value
811     end
812   end
813 end