]> git.openstreetmap.org Git - rails.git/blob - test/functional/browse_controller_test.rb
Fix test failures
[rails.git] / test / functional / browse_controller_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2 require 'browse_controller'
3
4 class BrowseControllerTest < 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 => "/browse/node/1", :method => :get },
12       { :controller => "browse", :action => "node", :id => "1" }
13     )
14     assert_routing(
15       { :path => "/browse/node/1/history", :method => :get },
16       { :controller => "browse", :action => "node_history", :id => "1" }
17     )
18     assert_routing(
19       { :path => "/browse/way/1", :method => :get },
20       { :controller => "browse", :action => "way", :id => "1" }
21     )
22     assert_routing(
23       { :path => "/browse/way/1/history", :method => :get },
24       { :controller => "browse", :action => "way_history", :id => "1" }
25     )
26     assert_routing(
27       { :path => "/browse/relation/1", :method => :get },
28       { :controller => "browse", :action => "relation", :id => "1" }
29     )
30     assert_routing(
31       { :path => "/browse/relation/1/history", :method => :get },
32       { :controller => "browse", :action => "relation_history", :id => "1" }
33     )
34     assert_routing(
35       { :path => "/browse/changeset/1", :method => :get },
36       { :controller => "browse", :action => "changeset", :id => "1" }
37     )
38     assert_routing(
39       { :path => "/browse/note/1", :method => :get },
40       { :controller => "browse", :action => "note", :id => "1" }
41     )
42   end
43
44   def test_read_relation
45     browse_check 'relation', relations(:visible_relation).relation_id, 'browse/feature'
46   end
47
48   def test_read_relation_history
49     browse_check 'relation_history', relations(:visible_relation).relation_id, 'browse/history'
50   end
51
52   def test_read_way
53     browse_check 'way', ways(:visible_way).way_id, 'browse/feature'
54   end
55
56   def test_read_way_history
57     browse_check 'way_history', ways(:visible_way).way_id, 'browse/history'
58   end
59
60   def test_read_node
61     browse_check 'node', nodes(:visible_node).node_id, 'browse/feature'
62   end
63
64   def test_read_node_history
65     browse_check 'node_history', nodes(:visible_node).node_id, 'browse/history'
66   end
67
68   def test_read_changeset
69     browse_check 'changeset', changesets(:normal_user_first_change).id, 'browse/changeset'
70   end
71
72   def test_read_note
73     browse_check 'note', notes(:open_note).id, 'browse/note'
74   end
75
76   ##
77   #  Methods to check redaction.
78   #
79   # note that these are presently highly reliant on the structure of the
80   # page for the selection tests, which doesn't work out particularly
81   # well if that structure changes. so... if you change the page layout
82   # then please make it more easily (and robustly) testable!
83   ##
84   def test_redacted_node_history
85     get :node_history, :id => nodes(:redacted_node_redacted_version).node_id
86     assert_response :success
87     assert_template 'browse/history'
88
89     # there are 2 revisions of the redacted node, but only one
90     # should be showing details here.
91     assert_select ".browse-section", 2
92     assert_select ".browse-section.browse-redacted", 1
93     assert_select ".browse-section.browse-node", 1
94   end
95
96   def test_redacted_way_history
97     get :way_history, :id => ways(:way_with_redacted_versions_v1).way_id
98     assert_response :success
99     assert_template 'browse/history'
100
101     # there are 4 revisions of the redacted way, but only 2
102     # should be showing details here.
103     assert_select ".browse-section", 4
104     assert_select ".browse-section.browse-redacted", 2
105     assert_select ".browse-section.browse-way", 2
106   end
107
108   def test_redacted_relation_history
109     get :relation_history, :id => relations(:relation_with_redacted_versions_v1).relation_id
110     assert_response :success
111     assert_template 'browse/history'
112
113     # there are 4 revisions of the redacted relation, but only 2
114     # should be showing details here.
115     assert_select ".browse-section", 4
116     assert_select ".browse-section.browse-redacted", 2
117     assert_select ".browse-section.browse-relation", 2
118   end
119
120 private
121
122   # This is a convenience method for most of the above checks
123   # First we check that when we don't have an id, it will correctly return a 404
124   # then we check that we get the correct 404 when a non-existant id is passed
125   # then we check that it will get a successful response, when we do pass an id
126   def browse_check(type, id, template)
127     assert_raise ActionController::UrlGenerationError do
128       get type
129     end
130     assert_raise ActionController::UrlGenerationError do
131       get type, {:id => -10} # we won't have an id that's negative
132     end
133     get type, {:id => id}
134     assert_response :success
135     assert_template template
136   end
137 end