2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 10:27:38 +08:00
|
|
|
RSpec.describe Rtl do
|
2014-08-27 19:38:03 +08:00
|
|
|
let(:user) { Fabricate.build(:user) }
|
|
|
|
|
|
|
|
describe ".css_class" do
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when user locale is allowed" do
|
2017-07-04 03:22:44 +08:00
|
|
|
before { SiteSetting.allow_user_locale = true }
|
2014-08-27 19:38:03 +08:00
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when user locale is RTL" do
|
2017-07-04 03:22:44 +08:00
|
|
|
before { user.locale = "he" }
|
2014-08-27 19:38:03 +08:00
|
|
|
|
|
|
|
it "returns rtl class" do
|
2017-07-04 03:22:44 +08:00
|
|
|
expect(Rtl.new(user).css_class).to eq("rtl")
|
2014-08-27 19:38:03 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when user locale is not RTL" do
|
2014-08-27 19:38:03 +08:00
|
|
|
it "returns empty class" do
|
2017-07-04 03:22:44 +08:00
|
|
|
expect(Rtl.new(user).css_class).to eq("")
|
2014-08-27 19:38:03 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when user locale is not allowed" do
|
2017-07-07 14:09:14 +08:00
|
|
|
before { SiteSetting.allow_user_locale = false }
|
2014-08-27 19:38:03 +08:00
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when site default locale is RTL" do
|
2017-07-07 14:09:14 +08:00
|
|
|
before { SiteSetting.default_locale = "he" }
|
2014-08-27 19:38:03 +08:00
|
|
|
|
|
|
|
it "returns rtl class" do
|
2017-07-04 03:22:44 +08:00
|
|
|
expect(Rtl.new(user).css_class).to eq("rtl")
|
2014-08-27 19:38:03 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when site default locale is LTR" do
|
2017-07-07 14:09:14 +08:00
|
|
|
before { SiteSetting.default_locale = "en" }
|
2014-08-27 19:38:03 +08:00
|
|
|
|
2022-07-28 00:14:14 +08:00
|
|
|
context "when user locale is RTL" do
|
2014-08-27 19:38:03 +08:00
|
|
|
before { user.stubs(:locale).returns("he") }
|
|
|
|
|
|
|
|
it "returns empty class" do
|
2017-07-04 03:22:44 +08:00
|
|
|
expect(Rtl.new(user).css_class).to eq("")
|
2014-08-27 19:38:03 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|