]> git.openstreetmap.org Git - rails.git/blob - test/controllers/redactions_controller_test.rb
Fix invalid CSS selectors
[rails.git] / test / controllers / redactions_controller_test.rb
1 require 'test_helper'
2 require 'redactions_controller'
3
4 class RedactionsControllerTest < ActionController::TestCase
5   api_fixtures
6
7   ##
8   # test all routes which lead to this controller
9   def test_routes
10     assert_routing(
11       { :path => "/redactions", :method => :get },
12       { :controller => "redactions", :action => "index" }
13     )
14     assert_routing(
15       { :path => "/redactions/new", :method => :get },
16       { :controller => "redactions", :action => "new" }
17     )
18     assert_routing(
19       { :path => "/redactions", :method => :post },
20       { :controller => "redactions", :action => "create" }
21     )
22     assert_routing(
23       { :path => "/redactions/1", :method => :get },
24       { :controller => "redactions", :action => "show", :id => "1" }
25     )
26     assert_routing(
27       { :path => "/redactions/1/edit", :method => :get },
28       { :controller => "redactions", :action => "edit", :id => "1" }
29     )
30     assert_routing(
31       { :path => "/redactions/1", :method => :put },
32       { :controller => "redactions", :action => "update", :id => "1" }
33     )
34     assert_routing(
35       { :path => "/redactions/1", :method => :delete },
36       { :controller => "redactions", :action => "destroy", :id => "1" }
37     )
38   end
39
40   def test_moderators_can_create
41     session[:user] = users(:moderator_user).id
42
43     post :create, :redaction => { :title => "Foo", :description => "Description here." }
44     assert_response :redirect
45     assert_redirected_to(redaction_path(Redaction.find_by_title("Foo")))
46   end
47
48   def test_non_moderators_cant_create
49     session[:user] = users(:public_user).id
50
51     post :create, :redaction => { :title => "Foo", :description => "Description here." }
52     assert_response :forbidden
53   end
54
55   def test_moderators_can_delete_empty
56     session[:user] = users(:moderator_user).id
57
58     # remove all elements from the redaction
59     redaction = redactions(:example)
60     redaction.old_nodes.each     { |n| n.redaction = nil; n.save! }
61     redaction.old_ways.each      { |w| w.redaction = nil; w.save! }
62     redaction.old_relations.each { |r| r.redaction = nil; r.save! }
63
64     delete :destroy, :id => redaction.id
65     assert_response :redirect
66     assert_redirected_to(redactions_path)
67   end
68
69   def test_moderators_cant_delete_nonempty
70     session[:user] = users(:moderator_user).id
71
72     # leave elements in the redaction
73     redaction = redactions(:example)
74
75     delete :destroy, :id => redaction.id
76     assert_response :redirect
77     assert_redirected_to(redaction_path(redaction))
78     assert_match /^Redaction is not empty/, flash[:error]
79   end
80
81   def test_non_moderators_cant_delete
82     session[:user] = users(:public_user).id
83
84     delete :destroy, :id => redactions(:example).id
85     assert_response :forbidden
86   end
87
88   def test_moderators_can_edit
89     session[:user] = users(:moderator_user).id
90
91     get :edit, :id => redactions(:example).id
92     assert_response :success
93   end
94
95   def test_non_moderators_cant_edit
96     session[:user] = users(:public_user).id
97
98     get :edit, :id => redactions(:example).id
99     assert_response :redirect
100     assert_redirected_to(redactions_path)
101   end
102
103   def test_moderators_can_update
104     session[:user] = users(:moderator_user).id
105
106     redaction = redactions(:example)
107
108     put :update, :id => redaction.id, :redaction => { :title => "Foo", :description => "Description here." }
109     assert_response :redirect
110     assert_redirected_to(redaction_path(redaction))
111   end
112
113   def test_non_moderators_cant_update
114     session[:user] = users(:public_user).id
115
116     redaction = redactions(:example)
117
118     put :update, :id => redaction.id, :redaction => { :title => "Foo", :description => "Description here." }
119     assert_response :forbidden
120   end
121 end