1 require File.dirname(__FILE__) + '/../test_helper'
3 class SiteControllerTest < ActionController::TestCase
7 # test all routes which lead to this controller
10 { :path => "/", :method => :get },
11 { :controller => "site", :action => "index" }
14 { :path => "/", :method => :post },
15 { :controller => "site", :action => "index" }
18 { :controller => "site", :action => "index" },
19 { :path => "/index.html", :method => :get }
22 { :path => "/edit", :method => :get },
23 { :controller => "site", :action => "edit" }
26 { :controller => "site", :action => "edit", :format => "html" },
27 { :path => "/edit.html", :method => :get }
30 { :path => "/copyright", :method => :get },
31 { :controller => "site", :action => "copyright" }
34 { :path => "/copyright/locale", :method => :get },
35 { :controller => "site", :action => "copyright", :copyright_locale => "locale" }
38 { :path => "/welcome", :method => :get },
39 { :controller => "site", :action => "welcome" }
42 { :path => "/export", :method => :get },
43 { :controller => "site", :action => "export" }
46 { :controller => "site", :action => "export", :format => "html" },
47 { :path => "/export.html", :method => :get }
50 { :path => "/offline", :method => :get },
51 { :controller => "site", :action => "offline" }
54 { :path => "/key", :method => :get },
55 { :controller => "site", :action => "key" }
58 { :path => "/go/shortcode", :method => :get },
59 { :controller => "site", :action => "permalink", :code => "shortcode" }
62 { :path => "/preview/formatname", :method => :post },
63 { :controller => "site", :action => "preview", :format => "formatname" }
66 { :path => "/id", :method => :get },
67 { :controller => "site", :action => "id" }
71 ## Lets check that we can get all the pages without any errors
75 assert_response :success
76 assert_template 'index'
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'
83 get :index, :lat => 4, :lon => 5, :zoom => 3
84 assert_redirected_to :controller => :site, :action => 'index', :anchor => 'map=3/4/5'
86 get :index, :layers => 'T'
87 assert_redirected_to :controller => :site, :action => 'index', :anchor => 'layers=T'
89 get :index, :notes => 'yes'
90 assert_redirected_to :controller => :site, :action => 'index', :anchor => 'layers=N'
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'
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'
100 get :edit, :lat => 4, :lon => 5, :zoom => 3
101 assert_redirected_to :controller => :site, :action => 'edit', :anchor => 'map=3/4/5'
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'
108 get :permalink, :code => 'wBz3--'
109 assert_redirected_to :controller => :site, :action => 'index', :anchor => 'map=3/4.8779296875/3.955078125'
115 # Should be redirected
116 assert_redirected_to :controller => :user, :action => 'login', :referer => "/edit"
122 assert_response :success
123 assert_template 'offline'
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
133 # and when they have...
134 def test_edit_with_preference
135 user = users(:public_user)
136 user.preferred_editor = "potlatch"
139 get(:edit, nil, { 'user' => user.id })
140 assert_response :success
141 assert_template :partial => "_potlatch", :count => 1
143 user = users(:public_user)
144 user.preferred_editor = "remote"
147 get(:edit, nil, { 'user' => user.id })
148 assert_response :success
149 assert_template "index"
152 def test_edit_with_node
153 user = users(:public_user)
154 node = current_nodes(:visible_node)
156 get :edit, { :node => node.id }, { 'user' => user.id }
157 assert_equal 1.0, assigns(:lat)
158 assert_equal 1.0, assigns(:lon)
161 def test_edit_with_way
162 user = users(:public_user)
163 way = current_ways(:visible_way)
165 get :edit, { :way => way.id }, { 'user' => user.id }
166 assert_equal 3.0, assigns(:lat)
167 assert_equal 3.0, assigns(:lon)
170 def test_edit_with_gpx
171 user = users(:public_user)
172 gpx = gpx_files(:public_trace_file)
174 get :edit, { :gpx => gpx.id }, { 'user' => user.id }
175 assert_equal 1.0, assigns(:lat)
176 assert_equal 1.0, assigns(:lon)