X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/ac6a872a48c2663524fb2884724524f11ab671c9..3666b674330ec8d14a224932a191d6121c5974e2:/test/controllers/site_controller_test.rb?ds=sidebyside diff --git a/test/controllers/site_controller_test.rb b/test/controllers/site_controller_test.rb index a798013db..4dc07f996 100644 --- a/test/controllers/site_controller_test.rb +++ b/test/controllers/site_controller_test.rb @@ -8,8 +8,6 @@ class SiteControllerTest < ActionController::TestCase Settings.id_key = create(:client_application).key Settings.potlatch2_key = create(:client_application).key - - stub_hostip_requests end ## @@ -54,6 +52,18 @@ class SiteControllerTest < ActionController::TestCase { :path => "/fixthemap", :method => :get }, { :controller => "site", :action => "fixthemap" } ) + assert_routing( + { :path => "/help", :method => :get }, + { :controller => "site", :action => "help" } + ) + assert_routing( + { :path => "/about", :method => :get }, + { :controller => "site", :action => "about" } + ) + assert_routing( + { :path => "/about/locale", :method => :get }, + { :controller => "site", :action => "about", :about_locale => "locale" } + ) assert_routing( { :path => "/export", :method => :get }, { :controller => "site", :action => "export" } @@ -409,6 +419,17 @@ class SiteControllerTest < ActionController::TestCase get :copyright assert_response :success assert_template "copyright" + assert_select "div[lang='en'][dir='ltr']" + + get :copyright, :params => { :copyright_locale => "fr" } + assert_response :success + assert_template "copyright" + assert_select "div[lang='fr'][dir='ltr']" + + get :copyright, :params => { :copyright_locale => "ar" } + assert_response :success + assert_template "copyright" + assert_select "div[lang='ar'][dir='rtl']" end # Test the welcome page @@ -441,6 +462,17 @@ class SiteControllerTest < ActionController::TestCase get :about assert_response :success assert_template "about" + assert_select "div[lang='en'][dir='ltr']" + + get :about, :params => { :about_locale => "fr" } + assert_response :success + assert_template "about" + assert_select "div[lang='fr'][dir='ltr']" + + get :about, :params => { :about_locale => "ar" } + assert_response :success + assert_template "about" + assert_select "div[lang='ar'][dir='rtl']" end # Test the export page