X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e84ed734aae9eea6f970f203bd28d8f698588b97..56fd5c4d90c7d3757fb97ff16c40aaa307ae1d22:/test/functional/site_controller_test.rb diff --git a/test/functional/site_controller_test.rb b/test/functional/site_controller_test.rb index 770f3e2b5..8885fae28 100644 --- a/test/functional/site_controller_test.rb +++ b/test/functional/site_controller_test.rb @@ -34,6 +34,10 @@ class SiteControllerTest < ActionController::TestCase { :path => "/copyright/locale", :method => :get }, { :controller => "site", :action => "copyright", :copyright_locale => "locale" } ) + assert_routing( + { :path => "/welcome", :method => :get }, + { :controller => "site", :action => "welcome" } + ) assert_routing( { :path => "/export", :method => :get }, { :controller => "site", :action => "index", :export => true } @@ -90,6 +94,17 @@ class SiteControllerTest < ActionController::TestCase assert_redirected_to :controller => :site, :action => 'index', :anchor => 'map=3/4/5&layers=T' end + def test_edit_redirect + get :edit, :lat => 4, :lon => 5 + assert_redirected_to :controller => :site, :action => 'edit', :anchor => 'map=5/4/5' + + get :edit, :lat => 4, :lon => 5, :zoom => 3 + assert_redirected_to :controller => :site, :action => 'edit', :anchor => 'map=3/4/5' + + get :edit, :lat => 4, :lon => 5, :zoom => 3, :editor => 'id' + assert_redirected_to :controller => :site, :action => 'edit', :editor => 'id', :anchor => 'map=3/4/5' + end + def test_permalink get :permalink, :code => 'wBz3--' assert_redirected_to :controller => :site, :action => 'index', :anchor => 'map=3/4.8779296875/3.955078125'