discourse/plugins/chat/spec/system/read_only_spec.rb
Alan Guo Xiang Tan 41f8bff2c3
DEV: Remove superfluous js: true metadata (#21960)
Why this change?

It is very unlikely that we need to ever JS for system tests considering
that we rely on a JS framework on the frontend.
2023-06-07 09:26:58 +08:00

59 lines
1.5 KiB
Ruby

# frozen_string_literal: true
RSpec.describe "Read only", type: :system do
fab!(:channel_1) { Fabricate(:chat_channel) }
let(:chat) { PageObjects::Pages::Chat.new }
let(:channel) { PageObjects::Pages::ChatChannel.new }
before { chat_system_bootstrap }
context "when regular user" do
fab!(:current_user) { Fabricate(:user) }
before do
channel_1.add(current_user)
sign_in(current_user)
end
it "shows the read only status" do
channel_1.read_only!(Discourse.system_user)
chat.visit_channel_settings(channel_1)
chat.visit_channel(channel_1)
expect(page).to have_content(I18n.t("js.chat.channel_status.read_only_header"))
end
it "disables the composer" do
channel_1.read_only!(Discourse.system_user)
chat.visit_channel_settings(channel_1)
chat.visit_channel(channel_1)
expect(page).to have_field(
placeholder: I18n.t("js.chat.placeholder_new_message_disallowed.read_only"),
disabled: true,
)
end
end
context "when admin" do
fab!(:current_user) { Fabricate(:admin) }
before do
channel_1.add(current_user)
sign_in(current_user)
end
it "disables the composer" do
channel_1.read_only!(Discourse.system_user)
chat.visit_channel_settings(channel_1)
chat.visit_channel(channel_1)
expect(page).to have_field(
placeholder: I18n.t("js.chat.placeholder_new_message_disallowed.read_only"),
disabled: true,
)
end
end
end