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