JavaScript is used by about 98% of web users, so by testing without it enabled, we're only testing that the application works for a very reduced number of users. We proceeded this way in the past because CONSUL started using Rails 4.2 and truncating the database between JavaScript tests with database cleaner, which made these tests terribly slow. When we upgraded to Rails 5.1 and introduced system tests, we started using database transactions in JavaScript tests, making these tests much faster. So now we can use JavaScript tests everywhere without critically slowing down our test suite.
110 lines
2.9 KiB
Ruby
110 lines
2.9 KiB
Ruby
require "rails_helper"
|
|
|
|
describe "Localization" do
|
|
scenario "Wrong locale" do
|
|
I18n.with_locale(:es) do
|
|
create(:widget_card, title: "Bienvenido a CONSUL",
|
|
description: "Software libre para la participación ciudadana.",
|
|
link_text: "Más información",
|
|
link_url: "http://consulproject.org/",
|
|
header: true)
|
|
end
|
|
|
|
visit root_path(locale: :es)
|
|
visit root_path(locale: :klingon)
|
|
|
|
expect(page).to have_text("Bienvenido a CONSUL")
|
|
end
|
|
|
|
scenario "Available locales appear in the locale switcher" do
|
|
visit "/"
|
|
|
|
within(".locale-form .js-location-changer") do
|
|
expect(page).to have_content "Español"
|
|
expect(page).to have_content "English"
|
|
end
|
|
end
|
|
|
|
scenario "The current locale is selected" do
|
|
visit "/"
|
|
expect(page).to have_select("locale-switcher", selected: "English")
|
|
end
|
|
|
|
scenario "Changing the locale" do
|
|
visit "/"
|
|
expect(page).to have_content("Language")
|
|
|
|
select("Español", from: "locale-switcher")
|
|
expect(page).to have_content("Idioma")
|
|
expect(page).not_to have_content("Language")
|
|
expect(page).to have_select("locale-switcher", selected: "Español")
|
|
end
|
|
|
|
scenario "Keeps query parameters while using protected redirects" do
|
|
visit "/debates?order=created_at&host=evil.dev"
|
|
|
|
select("Español", from: "locale-switcher")
|
|
|
|
expect(current_host).to eq "http://127.0.0.1"
|
|
expect(page).to have_current_path "/debates?locale=es&order=created_at"
|
|
end
|
|
|
|
context "Only one locale" do
|
|
before do
|
|
allow(I18n).to receive(:available_locales).and_return([:en])
|
|
I18n.reload!
|
|
end
|
|
|
|
after { I18n.reload! }
|
|
|
|
scenario "Locale switcher not present" do
|
|
visit "/"
|
|
expect(page).not_to have_content("Language")
|
|
expect(page).not_to have_css("div.locale")
|
|
end
|
|
end
|
|
|
|
context "Missing language names" do
|
|
let!(:default_enforce) { I18n.enforce_available_locales }
|
|
let!(:default_locales) { I18n.available_locales.dup }
|
|
|
|
before do
|
|
I18n.enforce_available_locales = false
|
|
I18n.available_locales = default_locales + [:wl]
|
|
I18n.locale = :wl
|
|
end
|
|
|
|
after do
|
|
I18n.enforce_available_locales = default_enforce
|
|
I18n.available_locales = default_locales
|
|
I18n.locale = I18n.default_locale
|
|
end
|
|
|
|
scenario "Available locales without language translation display locale key" do
|
|
visit "/"
|
|
|
|
within(".locale-form .js-location-changer") do
|
|
expect(page).to have_content "wl"
|
|
end
|
|
end
|
|
end
|
|
|
|
scenario "uses default locale when session locale has disappeared" do
|
|
default_locales = I18n.available_locales
|
|
|
|
visit root_path(locale: :es)
|
|
|
|
expect(page).to have_content "Entrar"
|
|
|
|
begin
|
|
I18n.available_locales = default_locales - [:es]
|
|
|
|
visit root_path
|
|
|
|
expect(page).to have_content "Sign in"
|
|
ensure
|
|
I18n.available_locales = default_locales
|
|
end
|
|
end
|
|
end
|