2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2014-08-27 07:38:03 -04:00
|
|
|
|
2017-07-03 15:22:44 -04:00
|
|
|
describe Rtl do
|
2014-08-27 07:38:03 -04:00
|
|
|
|
|
|
|
let(:user) { Fabricate.build(:user) }
|
|
|
|
|
|
|
|
describe '.css_class' do
|
|
|
|
|
|
|
|
context 'user locale is allowed' do
|
2017-07-03 15:22:44 -04:00
|
|
|
before {
|
|
|
|
SiteSetting.allow_user_locale = true
|
|
|
|
}
|
2014-08-27 07:38:03 -04:00
|
|
|
|
|
|
|
context 'user locale is RTL' do
|
2017-07-03 15:22:44 -04:00
|
|
|
before { user.locale = 'he' }
|
2014-08-27 07:38:03 -04:00
|
|
|
|
|
|
|
it 'returns rtl class' do
|
2017-07-03 15:22:44 -04:00
|
|
|
expect(Rtl.new(user).css_class).to eq('rtl')
|
2014-08-27 07:38:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user locale is not RTL' do
|
|
|
|
it 'returns empty class' do
|
2017-07-03 15:22:44 -04:00
|
|
|
expect(Rtl.new(user).css_class).to eq('')
|
2014-08-27 07:38:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'user locale is not allowed' do
|
2017-07-07 02:09:14 -04:00
|
|
|
before { SiteSetting.allow_user_locale = false }
|
2014-08-27 07:38:03 -04:00
|
|
|
|
|
|
|
context 'site default locale is RTL' do
|
2017-07-07 02:09:14 -04:00
|
|
|
before { SiteSetting.default_locale = 'he' }
|
2014-08-27 07:38:03 -04:00
|
|
|
|
|
|
|
it 'returns rtl class' do
|
2017-07-03 15:22:44 -04:00
|
|
|
expect(Rtl.new(user).css_class).to eq('rtl')
|
2014-08-27 07:38:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'site default locale is LTR' do
|
2017-07-07 02:09:14 -04:00
|
|
|
before { SiteSetting.default_locale = 'en' }
|
2014-08-27 07:38:03 -04:00
|
|
|
|
|
|
|
context 'user locale is RTL' do
|
|
|
|
before { user.stubs(:locale).returns('he') }
|
|
|
|
|
|
|
|
it 'returns empty class' do
|
2017-07-03 15:22:44 -04:00
|
|
|
expect(Rtl.new(user).css_class).to eq('')
|
2014-08-27 07:38:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|