]> git.openstreetmap.org Git - rails.git/blob - test/functional/old_way_controller_test.rb
Clear pass_crypt_confirmation when encrypting a new password
[rails.git] / test / functional / old_way_controller_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'old_way_controller'
3
4 class OldWayControllerTest < 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 => "/api/0.6/way/1/history", :method => :get },
12       { :controller => "old_way", :action => "history", :id => "1" }
13     )
14     assert_routing(
15       { :path => "/api/0.6/way/1/2", :method => :get },
16       { :controller => "old_way", :action => "version", :id => "1", :version => "2" }
17     )
18     assert_routing(
19       { :path => "/api/0.6/way/1/2/redact", :method => :post },
20       { :controller => "old_way", :action => "redact", :id => "1", :version => "2" }
21     )
22   end
23
24   # -------------------------------------
25   # Test reading old ways.
26   # -------------------------------------
27
28   def test_history_visible
29     # check that a visible way is returned properly
30     get :history, :id => ways(:visible_way).way_id
31     assert_response :success
32   end
33   
34   def test_history_invisible
35     # check that an invisible way's history is returned properly
36     get :history, :id => ways(:invisible_way).way_id
37     assert_response :success
38   end
39   
40   def test_history_invalid
41     # check chat a non-existent way is not returned
42     get :history, :id => 0
43     assert_response :not_found
44   end
45   
46   ##
47   # check that we can retrieve versions of a way
48   def test_version
49     check_current_version(current_ways(:visible_way).id)
50     check_current_version(current_ways(:used_way).id)
51     check_current_version(current_ways(:way_with_versions).id)
52   end
53
54   ##
55   # check that returned history is the same as getting all 
56   # versions of a way from the api.
57   def test_history_equals_versions
58     check_history_equals_versions(current_ways(:visible_way).id)
59     check_history_equals_versions(current_ways(:used_way).id)
60     check_history_equals_versions(current_ways(:way_with_versions).id)
61   end
62
63   ##
64   # test the redaction of an old version of a way, while not being
65   # authorised.
66   def test_redact_way_unauthorised
67     do_redact_way(ways(:way_with_versions_v3),
68                   redactions(:example))
69     assert_response :unauthorized, "should need to be authenticated to redact."
70   end
71
72     ##
73   # test the redaction of an old version of a way, while being 
74   # authorised as a normal user.
75   def test_redact_way_normal_user
76     basic_authorization(users(:public_user).email, "test")
77
78     do_redact_way(ways(:way_with_versions_v3),
79                   redactions(:example))
80     assert_response :forbidden, "should need to be moderator to redact."
81   end
82
83   ##
84   # test that, even as moderator, the current version of a way
85   # can't be redacted.
86   def test_redact_way_current_version
87     basic_authorization(users(:moderator_user).email, "test")
88
89     do_redact_way(ways(:way_with_versions_v4),
90                    redactions(:example))
91     assert_response :bad_request, "shouldn't be OK to redact current version as moderator."
92   end    
93
94   ##
95   # test that redacted ways aren't visible, regardless of 
96   # authorisation except as moderator...
97   def test_version_redacted
98     way = ways(:way_with_redacted_versions_v2)
99
100     get :version, :id => way.way_id, :version => way.version
101     assert_response :forbidden, "Redacted node shouldn't be visible via the version API."
102
103     # not even to a logged-in user
104     basic_authorization(users(:public_user).email, "test")
105     get :version, :id => way.way_id, :version => way.version
106     assert_response :forbidden, "Redacted node shouldn't be visible via the version API, even when logged in."
107   end
108
109   ##
110   # test that redacted nodes aren't visible in the history
111   def test_history_redacted
112     way = ways(:way_with_redacted_versions_v2)
113
114     get :history, :id => way.way_id
115     assert_response :success, "Redaction shouldn't have stopped history working."
116     assert_select "osm way[id=#{way.way_id}][version=#{way.version}]", 0, "redacted way #{way.way_id} version #{way.version} shouldn't be present in the history."
117
118     # not even to a logged-in user
119     basic_authorization(users(:public_user).email, "test")
120     get :version, :id => way.way_id, :version => way.version
121     get :history, :id => way.way_id
122     assert_response :success, "Redaction shouldn't have stopped history working."
123     assert_select "osm way[id=#{way.way_id}][version=#{way.version}]", 0, "redacted node #{way.way_id} version #{way.version} shouldn't be present in the history, even when logged in."
124   end
125
126   ##
127   # test the redaction of an old version of a way, while being 
128   # authorised as a moderator.
129   def test_redact_way_moderator
130     way = ways(:way_with_versions_v3)
131     basic_authorization(users(:moderator_user).email, "test")
132
133     do_redact_way(way, redactions(:example))
134     assert_response :success, "should be OK to redact old version as moderator."
135
136     # check moderator can still see the redacted data, when passing
137     # the appropriate flag
138     get :version, :id => way.way_id, :version => way.version
139     assert_response :forbidden, "After redaction, node should be gone for moderator, when flag not passed."
140     get :version, :id => way.way_id, :version => way.version, :show_redactions => 'true'
141     assert_response :success, "After redaction, node should not be gone for moderator, when flag passed."
142     
143     # and when accessed via history
144     get :history, :id => way.way_id
145     assert_response :success, "Redaction shouldn't have stopped history working."
146     assert_select "osm way[id=#{way.way_id}][version=#{way.version}]", 0, "way #{way.way_id} version #{way.version} should not be present in the history for moderators when not passing flag."
147     get :history, :id => way.way_id, :show_redactions => 'true'
148     assert_response :success, "Redaction shouldn't have stopped history working."
149     assert_select "osm way[id=#{way.way_id}][version=#{way.version}]", 1, "way #{way.way_id} version #{way.version} should still be present in the history for moderators when passing flag."
150   end
151
152   # testing that if the moderator drops auth, he can't see the
153   # redacted stuff any more.
154   def test_redact_way_is_redacted
155     way = ways(:way_with_versions_v3)
156     basic_authorization(users(:moderator_user).email, "test")
157
158     do_redact_way(way, redactions(:example))
159     assert_response :success, "should be OK to redact old version as moderator."
160
161     # re-auth as non-moderator
162     basic_authorization(users(:public_user).email, "test")
163
164     # check can't see the redacted data
165     get :version, :id => way.way_id, :version => way.version
166     assert_response :forbidden, "Redacted node shouldn't be visible via the version API."
167     
168     # and when accessed via history
169     get :history, :id => way.way_id
170     assert_response :success, "Redaction shouldn't have stopped history working."
171     assert_select "osm way[id=#{way.way_id}][version=#{way.version}]", 0, "redacted way #{way.way_id} version #{way.version} shouldn't be present in the history."
172   end
173
174   ##
175   # check that the current version of a way is equivalent to the
176   # version which we're getting from the versions call.
177   def check_current_version(way_id)
178     # get the current version
179     current_way = with_controller(WayController.new) do
180       get :read, :id => way_id
181       assert_response :success, "can't get current way #{way_id}"
182       Way.from_xml(@response.body)
183     end
184     assert_not_nil current_way, "getting way #{way_id} returned nil"
185
186     # get the "old" version of the way from the version method
187     get :version, :id => way_id, :version => current_way.version
188     assert_response :success, "can't get old way #{way_id}, v#{current_way.version}"
189     old_way = Way.from_xml(@response.body)
190
191     # check that the ways are identical
192     assert_ways_are_equal current_way, old_way
193   end
194
195   ##
196   # look at all the versions of the way in the history and get each version from
197   # the versions call. check that they're the same.
198   def check_history_equals_versions(way_id)
199     get :history, :id => way_id
200     assert_response :success, "can't get way #{way_id} from API"
201     history_doc = XML::Parser.string(@response.body).parse
202     assert_not_nil history_doc, "parsing way #{way_id} history failed"
203
204     history_doc.find("//osm/way").each do |way_doc|
205       history_way = Way.from_xml_node(way_doc)
206       assert_not_nil history_way, "parsing way #{way_id} version failed"
207
208       get :version, :id => way_id, :version => history_way.version
209       assert_response :success, "couldn't get way #{way_id}, v#{history_way.version}"
210       version_way = Way.from_xml(@response.body)
211       assert_not_nil version_way, "failed to parse #{way_id}, v#{history_way.version}"
212       
213       assert_ways_are_equal history_way, version_way
214     end
215   end
216
217   def do_redact_way(way, redaction)
218     get :version, :id => way.way_id, :version => way.version
219     assert_response :success, "should be able to get version #{way.version} of node #{way.way_id}."
220     
221     # now redact it
222     post :redact, :id => way.way_id, :version => way.version, :redaction => redaction.id
223   end
224
225 end