]> git.openstreetmap.org Git - rails.git/blob - test/functional/site_controller_test.rb
Fix test failures
[rails.git] / test / functional / site_controller_test.rb
1 require File.dirname(__FILE__) + '/../test_helper'
2
3 class SiteControllerTest < ActionController::TestCase
4   api_fixtures
5
6   ##
7   # test all routes which lead to this controller
8   def test_routes
9     assert_routing(
10       { :path => "/", :method => :get },
11       { :controller => "site", :action => "index" }
12     )
13     assert_routing(
14       { :path => "/", :method => :post },
15       { :controller => "site", :action => "index" }
16     )
17     assert_recognizes(
18       { :controller => "site", :action => "index" },
19       { :path => "/index.html", :method => :get }
20     )
21     assert_routing(
22       { :path => "/edit", :method => :get },
23       { :controller => "site", :action => "edit" }
24     )
25     assert_recognizes(
26       { :controller => "site", :action => "edit", :format => "html" },
27       { :path => "/edit.html", :method => :get }
28     )
29     assert_routing(
30       { :path => "/copyright", :method => :get },
31       { :controller => "site", :action => "copyright" }
32     )
33     assert_routing(
34       { :path => "/copyright/locale", :method => :get },
35       { :controller => "site", :action => "copyright", :copyright_locale => "locale" }
36     )
37     assert_routing(
38       { :path => "/welcome", :method => :get },
39       { :controller => "site", :action => "welcome" }
40     )
41     assert_routing(
42       { :path => "/export", :method => :get },
43       { :controller => "site", :action => "export" }
44     )
45     assert_recognizes(
46       { :controller => "site", :action => "export", :format => "html" },
47       { :path => "/export.html", :method => :get }
48     )
49     assert_routing(
50       { :path => "/offline", :method => :get },
51       { :controller => "site", :action => "offline" }
52     )
53     assert_routing(
54       { :path => "/key", :method => :get },
55       { :controller => "site", :action => "key" }
56     )
57     assert_routing(
58       { :path => "/go/shortcode", :method => :get },
59       { :controller => "site", :action => "permalink", :code => "shortcode" }
60     )
61     assert_routing(
62       { :path => "/preview/formatname", :method => :post },
63       { :controller => "site", :action => "preview", :format => "formatname" }
64     )
65     assert_routing(
66       { :path => "/id", :method => :get },
67       { :controller => "site", :action => "id" }
68     )
69   end
70
71   ## Lets check that we can get all the pages without any errors  
72   # Get the index
73   def test_index
74     get :index
75     assert_response :success
76     assert_template 'index'
77   end
78
79   def test_index_redirect
80     get :index, :lat => 4, :lon => 5
81     assert_redirected_to :controller => :site, :action => 'index', :anchor => 'map=5/4/5'
82
83     get :index, :lat => 4, :lon => 5, :zoom => 3
84     assert_redirected_to :controller => :site, :action => 'index', :anchor => 'map=3/4/5'
85
86     get :index, :layers => 'T'
87     assert_redirected_to :controller => :site, :action => 'index', :anchor => 'layers=T'
88
89     get :index, :notes => 'yes'
90     assert_redirected_to :controller => :site, :action => 'index', :anchor => 'layers=N'
91
92     get :index, :lat => 4, :lon => 5, :zoom => 3, :layers => 'T'
93     assert_redirected_to :controller => :site, :action => 'index', :anchor => 'map=3/4/5&layers=T'
94   end
95
96   def test_edit_redirect
97     get :edit, :lat => 4, :lon => 5
98     assert_redirected_to :controller => :site, :action => 'edit', :anchor => 'map=5/4/5'
99
100     get :edit, :lat => 4, :lon => 5, :zoom => 3
101     assert_redirected_to :controller => :site, :action => 'edit', :anchor => 'map=3/4/5'
102
103     get :edit, :lat => 4, :lon => 5, :zoom => 3, :editor => 'id'
104     assert_redirected_to :controller => :site, :action => 'edit', :editor => 'id', :anchor => 'map=3/4/5'
105   end
106
107   def test_permalink
108     get :permalink, :code => 'wBz3--'
109     assert_redirected_to :controller => :site, :action => 'index', :anchor => 'map=3/4.8779296875/3.955078125'
110   end
111
112   # Get the edit page
113   def test_edit
114     get :edit
115     # Should be redirected
116     assert_redirected_to :controller => :user, :action => 'login', :referer => "/edit"
117   end
118   
119   # Offline page
120   def test_offline
121     get :offline
122     assert_response :success
123     assert_template 'offline'
124   end
125
126   # test the right editor gets used when the user hasn't set a preference
127   def test_edit_without_preference
128     get(:edit, nil, { 'user' => users(:public_user).id })
129     assert_response :success
130     assert_template :partial => "_#{DEFAULT_EDITOR}", :count => 1
131   end
132
133   # and when they have...
134   def test_edit_with_preference
135     user = users(:public_user)
136     user.preferred_editor = "potlatch"
137     user.save!
138
139     get(:edit, nil, { 'user' => user.id })
140     assert_response :success
141     assert_template :partial => "_potlatch", :count => 1
142
143     user = users(:public_user)
144     user.preferred_editor = "remote"
145     user.save!
146
147     get(:edit, nil, { 'user' => user.id })
148     assert_response :success
149     assert_template "index"
150   end
151
152   def test_edit_with_node
153     user = users(:public_user)
154     node = current_nodes(:visible_node)
155
156     get :edit, { :node => node.id }, { 'user' => user.id }
157     assert_equal 1.0, assigns(:lat)
158     assert_equal 1.0, assigns(:lon)
159   end
160
161   def test_edit_with_way
162     user = users(:public_user)
163     way  = current_ways(:visible_way)
164
165     get :edit, { :way => way.id }, { 'user' => user.id }
166     assert_equal 3.0, assigns(:lat)
167     assert_equal 3.0, assigns(:lon)
168   end
169
170   def test_edit_with_gpx
171     user = users(:public_user)
172     gpx  = gpx_files(:public_trace_file)
173
174     get :edit, { :gpx => gpx.id }, { 'user' => user.id }
175     assert_equal 1.0, assigns(:lat)
176     assert_equal 1.0, assigns(:lon)
177   end
178 end