2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-27 22:27:38 -04:00
|
|
|
RSpec.describe Rtl do
|
2014-08-27 07:38:03 -04:00
|
|
|
let(:user) { Fabricate.build(:user) }
|
|
|
|
|
|
|
|
describe ".css_class" do
|
2022-07-27 12:14:14 -04:00
|
|
|
context "when 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
|
|
|
|
2022-07-27 12:14:14 -04:00
|
|
|
context "when 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
|
|
|
|
|
2022-07-27 12:14:14 -04:00
|
|
|
context "when user locale is not RTL" do
|
2014-08-27 07:38:03 -04:00
|
|
|
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
|
|
|
|
|
2022-07-27 12:14:14 -04:00
|
|
|
context "when 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
|
|
|
|
2022-07-27 12:14:14 -04:00
|
|
|
context "when 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
|
|
|
|
|
2022-07-27 12:14:14 -04:00
|
|
|
context "when 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
|
|
|
|
2022-07-27 12:14:14 -04:00
|
|
|
context "when user locale is RTL" do
|
2014-08-27 07:38:03 -04:00
|
|
|
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
|