]> git.openstreetmap.org Git - rails.git/blob - test/functional/site_controller_test.rb
145805c01f273ae92f42dbbe08bc117bd7af1a93
[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 => "/export", :method => :get },
39       { :controller => "site", :action => "index", :export => true }
40     )
41     assert_recognizes(
42       { :controller => "site", :action => "index", :export => true, :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 => :get },
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     assert_site_partials
74   end
75
76   def test_index_redirect
77     get :index, :lat => 4, :lon => 5
78     assert_redirected_to :controller => :site, :action => 'index', :anchor => '5/4/5'
79
80     get :index, :lat => 4, :lon => 5, :zoom => 3
81     assert_redirected_to :controller => :site, :action => 'index', :anchor => '3/4/5'
82   end
83
84   def test_permalink
85     get :permalink, :code => 'wBz3--'
86     assert_redirected_to :controller => :site, :action => 'index', :anchor => '3/4.8779296875/3.955078125'
87   end
88
89   # Get the edit page
90   def test_edit
91     get :edit
92     # Should be redirected
93     assert_redirected_to :controller => :user, :action => 'login', :referer => "/edit"
94   end
95   
96   # Offline page
97   def test_offline
98     get :offline
99     assert_response :success
100     assert_template 'offline'
101     assert_site_partials 0
102   end
103   
104   def assert_site_partials(count = 1)
105     assert_template :partial => '_search', :count => count
106     assert_template :partial => '_sidebar', :count => count
107   end
108
109   # test the right editor gets used when the user hasn't set a preference
110   def test_edit_without_preference
111     @request.cookies["_osm_username"] = users(:public_user).display_name
112
113     get(:edit, nil, { 'user' => users(:public_user).id })
114     assert_response :success
115     assert_template :partial => "_#{DEFAULT_EDITOR}", :count => 1
116   end
117
118   # and when they have...
119   def test_edit_with_preference
120     @request.cookies["_osm_username"] = users(:public_user).display_name
121
122     user = users(:public_user)
123     user.preferred_editor = "potlatch"
124     user.save!
125
126     get(:edit, nil, { 'user' => user.id })
127     assert_response :success
128     assert_template :partial => "_potlatch", :count => 1
129
130     user = users(:public_user)
131     user.preferred_editor = "remote"
132     user.save!
133
134     get(:edit, nil, { 'user' => user.id })
135     assert_response :success
136     assert_template "index"
137   end
138
139   def test_edit_with_node
140     @request.cookies["_osm_username"] = users(:public_user).display_name
141
142     user = users(:public_user)
143     node = current_nodes(:visible_node)
144
145     get :edit, { :node => node.id }, { 'user' => user.id }
146     assert_equal 1.0, assigns(:lat)
147     assert_equal 1.0, assigns(:lon)
148   end
149
150   def test_edit_with_way
151     @request.cookies["_osm_username"] = users(:public_user).display_name
152
153     user = users(:public_user)
154     way  = current_ways(:visible_way)
155
156     get :edit, { :way => way.id }, { 'user' => user.id }
157     assert_equal 3.0, assigns(:lat)
158     assert_equal 3.0, assigns(:lon)
159   end
160
161   def test_edit_with_gpx
162     @request.cookies["_osm_username"] = users(:public_user).display_name
163
164     user = users(:public_user)
165     gpx  = gpx_files(:public_trace_file)
166
167     get :edit, { :gpx => gpx.id }, { 'user' => user.id }
168     assert_equal 1.0, assigns(:lat)
169     assert_equal 1.0, assigns(:lon)
170   end
171 end