discourse/plugins/chat/spec/system/archive_channel_spec.rb
Loïc Guitaut e1ae32103d DEV: Refactor chat specs related to message creation
This is extracted from #22390.

This patch aims to ease the transition to the new message creation
service. (in progress in #22390) Indeed, the new service patch is
breaking some specs from `discourse-ai` and `discourse-templates`
because these plugins are using either `Chat::MessageCreator` or the
`chat_message` fabricator.

This patch addresses theses issues by normalizing how we create a chat
message in specs. To do so, the preferred way is to use
`Fabricate(:chat_message)` with a new `:use_service` option allowing to
call the service under the hood. While this patch will obviously call
`Chat::MessageCreator`, the new service patch will now be able to simply
change the call to `Chat::CreateMessage` without breaking any specs from
other plugins.

Another thing this patch does is to not create chat messages using the
service for specs that aren’t system ones, thus speeding the execution
time a bit in the process.
2023-08-31 11:21:23 +02:00

126 lines
3.8 KiB
Ruby
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# frozen_string_literal: true
RSpec.describe "Archive channel", type: :system do
fab!(:channel_1) { Fabricate(:chat_channel) }
let(:chat) { PageObjects::Pages::Chat.new }
let(:channel) { PageObjects::Pages::ChatChannel.new }
before do
SiteSetting.navigation_menu = "sidebar"
chat_system_bootstrap
sign_in(current_user)
end
context "when archiving is disabled" do
context "when admin user" do
fab!(:current_user) { Fabricate(:admin) }
before { sign_in(current_user) }
it "doesnt allow to archive a channel" do
chat.visit_channel_settings(channel_1)
expect(page).to have_no_content(I18n.t("js.chat.channel_settings.archive_channel"))
end
end
end
context "when archiving is enabled" do
before { SiteSetting.chat_allow_archiving_channels = true }
context "when regular user" do
fab!(:current_user) { Fabricate(:user) }
before { sign_in(current_user) }
it "doesnt allow to archive a channel" do
chat.visit_channel_settings(channel_1)
expect(page).to have_no_content(I18n.t("js.chat.channel_settings.archive_channel"))
end
end
context "when admin user" do
fab!(:current_user) { Fabricate(:admin) }
before { sign_in(current_user) }
it "allows to archive a channel" do
chat.visit_channel_settings(channel_1)
expect(page).to have_content(I18n.t("js.chat.channel_settings.archive_channel"))
end
context "when archiving" do
it "works" do
Jobs.run_immediately!
chat.visit_channel_settings(channel_1)
click_button(I18n.t("js.chat.channel_settings.archive_channel"))
find("#split-topic-name").fill_in(with: "An interesting topic for cats")
click_button(I18n.t("js.chat.channel_archive.title"))
expect(page).to have_css(".chat-channel-archive-status", wait: 15)
end
context "when archived channels had unreads" do
let(:other_user) { Fabricate(:user) }
before do
Jobs.run_immediately!
channel_1.add(current_user)
Fabricate(
:chat_message,
chat_channel: channel_1,
user: other_user,
message: "this is fine @#{current_user.username}",
use_service: true,
)
end
it "clears unread indicators" do
visit("/")
expect(page.find(".chat-channel-unread-indicator")).to have_content(1)
chat.visit_channel_settings(channel_1)
click_button(I18n.t("js.chat.channel_settings.archive_channel"))
find("#split-topic-name").fill_in(with: "An interesting topic for cats")
click_button(I18n.t("js.chat.channel_archive.title"))
expect(page).to have_no_css(".chat-channel-unread-indicator")
end
end
end
context "when archiving failed" do
before { channel_1.update!(status: :read_only) }
fab!(:archive) do
Chat::ChannelArchive.create!(
chat_channel: channel_1,
archived_by: current_user,
destination_topic_title: "This will be the archive topic",
total_messages: 2,
archived_messages: 1,
archive_error: "Something went wrong",
)
end
xit "can be retried" do
Jobs.run_immediately!
chat.visit_channel(channel_1)
click_button(I18n.t("js.chat.channel_archive.retry"))
expect(page).to have_css(".chat-channel-archive-status a")
new_window = window_opened_by { find(".chat-channel-archive-status a").click }
within_window(new_window) do
expect(page).to have_content(archive.destination_topic_title)
end
end
end
end
end
end