2 require "browse_controller"
4 class BrowseControllerTest < ActionController::TestCase
8 # test all routes which lead to this controller
11 { :path => "/node/1", :method => :get },
12 { :controller => "browse", :action => "node", :id => "1" }
15 { :path => "/node/1/history", :method => :get },
16 { :controller => "browse", :action => "node_history", :id => "1" }
19 { :path => "/way/1", :method => :get },
20 { :controller => "browse", :action => "way", :id => "1" }
23 { :path => "/way/1/history", :method => :get },
24 { :controller => "browse", :action => "way_history", :id => "1" }
27 { :path => "/relation/1", :method => :get },
28 { :controller => "browse", :action => "relation", :id => "1" }
31 { :path => "/relation/1/history", :method => :get },
32 { :controller => "browse", :action => "relation_history", :id => "1" }
35 { :path => "/changeset/1", :method => :get },
36 { :controller => "browse", :action => "changeset", :id => "1" }
39 { :path => "/note/1", :method => :get },
40 { :controller => "browse", :action => "note", :id => "1" }
43 { :path => "/note/new", :method => :get },
44 { :controller => "browse", :action => "new_note" }
48 def test_read_relation
49 browse_check "relation", relations(:visible_relation).relation_id, "browse/feature"
52 def test_read_relation_history
53 browse_check "relation_history", relations(:visible_relation).relation_id, "browse/history"
57 browse_check "way", ways(:visible_way).way_id, "browse/feature"
60 def test_read_way_history
61 browse_check "way_history", ways(:visible_way).way_id, "browse/history"
65 browse_check "node", nodes(:visible_node).node_id, "browse/feature"
68 def test_read_node_history
69 browse_check "node_history", nodes(:visible_node).node_id, "browse/history"
72 def test_read_changeset
73 browse_check "changeset", changesets(:normal_user_first_change).id, "browse/changeset"
74 browse_check "changeset", changesets(:public_user_first_change).id, "browse/changeset"
77 def test_read_changeset_hidden_comments
78 browse_check "changeset", changesets(:normal_user_closed_change).id, "browse/changeset"
79 assert_select "div.changeset-comments ul li", :count => 3
81 session[:user] = users(:moderator_user).id
83 browse_check "changeset", changesets(:normal_user_closed_change).id, "browse/changeset"
84 assert_select "div.changeset-comments ul li", :count => 4
88 browse_check "note", notes(:open_note).id, "browse/note"
91 def test_read_hidden_note
92 get :note, :id => notes(:hidden_note_with_comment).id
93 assert_response :not_found
94 assert_template "browse/not_found"
95 assert_template :layout => "map"
97 xhr :get, :note, :id => notes(:hidden_note_with_comment).id
98 assert_response :not_found
99 assert_template "browse/not_found"
100 assert_template :layout => "xhr"
102 session[:user] = users(:moderator_user).id
104 browse_check "note", notes(:hidden_note_with_comment).id, "browse/note"
107 def test_read_note_hidden_comments
108 browse_check "note", notes(:note_with_hidden_comment).id, "browse/note"
109 assert_select "div.note-comments ul li", :count => 1
111 session[:user] = users(:moderator_user).id
113 browse_check "note", notes(:note_with_hidden_comment).id, "browse/note"
114 assert_select "div.note-comments ul li", :count => 2
118 # Methods to check redaction.
120 # note that these are presently highly reliant on the structure of the
121 # page for the selection tests, which doesn't work out particularly
122 # well if that structure changes. so... if you change the page layout
123 # then please make it more easily (and robustly) testable!
125 def test_redacted_node
126 get :node, :id => current_nodes(:redacted_node).id
127 assert_response :success
128 assert_template "feature"
130 # check that we don't show lat/lon for a redacted node.
131 assert_select ".browse-section", 1
132 assert_select ".browse-section.browse-node", 1
133 assert_select ".browse-section.browse-node .latitude", 0
134 assert_select ".browse-section.browse-node .longitude", 0
137 def test_redacted_node_history
138 get :node_history, :id => nodes(:redacted_node_redacted_version).node_id
139 assert_response :success
140 assert_template "browse/history"
142 # there are 2 revisions of the redacted node, but only one
143 # should be showing details here.
144 assert_select ".browse-section", 2
145 assert_select ".browse-section.browse-redacted", 1
146 assert_select ".browse-section.browse-node", 1
147 assert_select ".browse-section.browse-node .latitude", 0
148 assert_select ".browse-section.browse-node .longitude", 0
151 def test_redacted_way_history
152 get :way_history, :id => ways(:way_with_redacted_versions_v1).way_id
153 assert_response :success
154 assert_template "browse/history"
156 # there are 4 revisions of the redacted way, but only 2
157 # should be showing details here.
158 assert_select ".browse-section", 4
159 assert_select ".browse-section.browse-redacted", 2
160 assert_select ".browse-section.browse-way", 2
163 def test_redacted_relation_history
164 get :relation_history, :id => relations(:relation_with_redacted_versions_v1).relation_id
165 assert_response :success
166 assert_template "browse/history"
168 # there are 4 revisions of the redacted relation, but only 2
169 # should be showing details here.
170 assert_select ".browse-section", 4
171 assert_select ".browse-section.browse-redacted", 2
172 assert_select ".browse-section.browse-relation", 2
177 # This is a convenience method for most of the above checks
178 # First we check that when we don't have an id, it will correctly return a 404
179 # then we check that we get the correct 404 when a non-existant id is passed
180 # then we check that it will get a successful response, when we do pass an id
181 def browse_check(type, id, template)
182 assert_raise ActionController::UrlGenerationError do
186 assert_raise ActionController::UrlGenerationError do
187 get type, :id => -10 # we won't have an id that's negative
191 assert_response :not_found
192 assert_template "browse/not_found"
193 assert_template :layout => "map"
195 xhr :get, type, :id => 0
196 assert_response :not_found
197 assert_template "browse/not_found"
198 assert_template :layout => "xhr"
201 assert_response :success
202 assert_template template
203 assert_template :layout => "map"
205 xhr :get, type, :id => id
206 assert_response :success
207 assert_template template
208 assert_template :layout => "xhr"