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