2016-04-08 14:49:50 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe TranslationOverride do
|
2017-06-15 04:08:23 -04:00
|
|
|
context 'validations' do
|
|
|
|
describe '#value' do
|
|
|
|
before do
|
2017-06-21 22:23:31 -04:00
|
|
|
I18n.backend.store_translations(:en, some_key: '%{first} %{second}')
|
2017-06-15 04:08:23 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'when interpolation keys are missing' do
|
|
|
|
it 'should not be valid' do
|
|
|
|
translation_override = TranslationOverride.upsert!(
|
2017-11-20 03:10:06 -05:00
|
|
|
I18n.locale, 'some_key', '%{key} %{omg}'
|
2017-06-15 04:08:23 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
expect(translation_override.errors.full_messages).to include(I18n.t(
|
2017-11-20 03:10:06 -05:00
|
|
|
'activerecord.errors.models.translation_overrides.attributes.value.invalid_interpolation_keys',
|
|
|
|
keys: 'key, omg'
|
2017-06-15 04:08:23 -04:00
|
|
|
))
|
|
|
|
end
|
2017-11-20 03:10:06 -05:00
|
|
|
|
|
|
|
context 'when custom interpolation keys are included' do
|
|
|
|
it 'should be valid' do
|
|
|
|
translation_override = TranslationOverride.upsert!(
|
|
|
|
I18n.locale,
|
|
|
|
'some_key',
|
|
|
|
"#{described_class::CUSTOM_INTERPOLATION_KEYS_WHITELIST['user_notifications.user_'].join(", ")} %{something}"
|
|
|
|
)
|
|
|
|
|
|
|
|
expect(translation_override.errors.full_messages).to include(I18n.t(
|
|
|
|
'activerecord.errors.models.translation_overrides.attributes.value.invalid_interpolation_keys',
|
|
|
|
keys: 'something'
|
|
|
|
))
|
|
|
|
end
|
|
|
|
end
|
2017-06-15 04:08:23 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-04-08 14:49:50 -04:00
|
|
|
|
|
|
|
it "upserts values" do
|
|
|
|
TranslationOverride.upsert!('en', 'some.key', 'some value')
|
|
|
|
|
|
|
|
ovr = TranslationOverride.where(locale: 'en', translation_key: 'some.key').first
|
|
|
|
expect(ovr).to be_present
|
|
|
|
expect(ovr.value).to eq('some value')
|
|
|
|
end
|
|
|
|
|
|
|
|
it "stores js for a message format key" do
|
|
|
|
TranslationOverride.upsert!('en', 'some.key_MF', '{NUM_RESULTS, plural, one {1 result} other {many} }')
|
|
|
|
|
|
|
|
ovr = TranslationOverride.where(locale: 'en', translation_key: 'some.key_MF').first
|
|
|
|
expect(ovr).to be_present
|
|
|
|
expect(ovr.compiled_js).to match(/function/)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|