2017-04-14 19:12:39 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe 'Localization' do
|
2017-06-12 04:58:03 -04:00
|
|
|
after(:all) do
|
|
|
|
I18n.locale = I18n.default_locale
|
|
|
|
end
|
2017-07-11 09:27:59 -04:00
|
|
|
|
2017-04-14 19:12:39 -04:00
|
|
|
it 'uses a specific region when provided' do
|
|
|
|
headers = { 'Accept-Language' => 'zh-HK' }
|
|
|
|
|
|
|
|
get "/about", headers: headers
|
2019-03-12 12:34:00 -04:00
|
|
|
|
2017-04-14 19:12:39 -04:00
|
|
|
expect(response.body).to include(
|
2019-03-12 12:34:00 -04:00
|
|
|
I18n.t('about.tagline', locale: 'zh-HK')
|
2017-04-14 19:12:39 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'falls back to a locale when region missing' do
|
|
|
|
headers = { 'Accept-Language' => 'es-FAKE' }
|
|
|
|
|
|
|
|
get "/about", headers: headers
|
2019-03-12 12:34:00 -04:00
|
|
|
|
2017-04-14 19:12:39 -04:00
|
|
|
expect(response.body).to include(
|
2019-03-12 12:34:00 -04:00
|
|
|
I18n.t('about.tagline', locale: 'es')
|
2017-04-14 19:12:39 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
it 'falls back to english when locale is missing' do
|
|
|
|
headers = { 'Accept-Language' => '12-FAKE' }
|
|
|
|
|
|
|
|
get "/about", headers: headers
|
2019-03-12 12:34:00 -04:00
|
|
|
|
2017-04-14 19:12:39 -04:00
|
|
|
expect(response.body).to include(
|
2019-03-12 12:34:00 -04:00
|
|
|
I18n.t('about.tagline', locale: 'en')
|
2017-04-14 19:12:39 -04:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|