mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:50:14 +08:00
41f8bff2c3
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.
45 lines
1.1 KiB
Ruby
45 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "Silenced user", type: :system do
|
|
fab!(:channel_1) { Fabricate(:category_channel) }
|
|
|
|
let(:chat) { PageObjects::Pages::Chat.new }
|
|
let(:channel) { PageObjects::Pages::ChatChannel.new }
|
|
|
|
before { chat_system_bootstrap }
|
|
|
|
context "when user is silenced" do
|
|
fab!(:silenced_user) { Fabricate(:user) }
|
|
|
|
before do
|
|
UserSilencer.silence(silenced_user)
|
|
channel_1.add(silenced_user)
|
|
sign_in(silenced_user)
|
|
chat.visit_channel(channel_1)
|
|
end
|
|
|
|
it "disables the composer" do
|
|
chat.visit_channel(channel_1)
|
|
|
|
expect(page).to have_field(
|
|
placeholder: I18n.t("js.chat.placeholder_silenced"),
|
|
disabled: true,
|
|
)
|
|
end
|
|
|
|
it "disables the send button" do
|
|
chat.visit_channel(channel_1)
|
|
|
|
expect(page).to have_css(".chat-composer-button.-send[disabled]")
|
|
end
|
|
|
|
it "prevents reactions" do
|
|
message_1 = Fabricate(:chat_message, chat_channel: channel_1)
|
|
chat.visit_channel(channel_1)
|
|
channel.hover_message(message_1)
|
|
|
|
expect(page).to have_no_css(".chat-message-actions")
|
|
end
|
|
end
|
|
end
|