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