2017-04-14 23:12:39 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe 'Localization' do
|
2023-04-30 12:07:03 +00:00
|
|
|
around do |example|
|
|
|
|
I18n.with_locale(I18n.locale) do
|
|
|
|
example.run
|
|
|
|
end
|
2017-06-12 08:58:03 +00:00
|
|
|
end
|
2017-07-11 13:27:59 +00:00
|
|
|
|
2017-04-14 23:12:39 +00:00
|
|
|
it 'uses a specific region when provided' do
|
|
|
|
headers = { 'Accept-Language' => 'zh-HK' }
|
|
|
|
|
2023-02-18 22:38:14 +00:00
|
|
|
get '/auth/sign_in', headers: headers
|
2019-03-12 16:34:00 +00:00
|
|
|
|
2017-04-14 23:12:39 +00:00
|
|
|
expect(response.body).to include(
|
2022-10-06 00:19:45 +00:00
|
|
|
I18n.t('auth.login', locale: 'zh-HK')
|
2017-04-14 23:12:39 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'falls back to a locale when region missing' do
|
|
|
|
headers = { 'Accept-Language' => 'es-FAKE' }
|
|
|
|
|
2023-02-18 22:38:14 +00:00
|
|
|
get '/auth/sign_in', headers: headers
|
2019-03-12 16:34:00 +00:00
|
|
|
|
2017-04-14 23:12:39 +00:00
|
|
|
expect(response.body).to include(
|
2022-10-06 00:19:45 +00:00
|
|
|
I18n.t('auth.login', locale: 'es')
|
2017-04-14 23:12:39 +00:00
|
|
|
)
|
|
|
|
end
|
2019-11-15 20:00:09 +00:00
|
|
|
|
2017-04-14 23:12:39 +00:00
|
|
|
it 'falls back to english when locale is missing' do
|
|
|
|
headers = { 'Accept-Language' => '12-FAKE' }
|
|
|
|
|
2023-02-18 22:38:14 +00:00
|
|
|
get '/auth/sign_in', headers: headers
|
2019-03-12 16:34:00 +00:00
|
|
|
|
2017-04-14 23:12:39 +00:00
|
|
|
expect(response.body).to include(
|
2022-10-06 00:19:45 +00:00
|
|
|
I18n.t('auth.login', locale: 'en')
|
2017-04-14 23:12:39 +00:00
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|