discourse/plugins/chat/spec/system/archive_channel_spec.rb
Martin Brennan b57f9c73a4
DEV: Skip all chat specs with Jobs.run_immediately! (#19684)
These specs are causing issues around AR connection pools
and busy connections, try skipping them for now, e.g. see
https://github.com/discourse/discourse/actions/runs/3826965835/jobs/6511173680
and /t/82525
2023-01-03 16:02:15 +10:00

124 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, js: true 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
# before { Jobs.run_immediately! }
xit "works" do
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_content(I18n.t("js.chat.channel_archive.process_started"))
expect(page).to have_css(".chat-channel-archive-status")
end
context "when archived channels had unreads" do
before do
other_user = Fabricate(:user)
channel_1.add(other_user)
channel_1.add(current_user)
Chat::ChatMessageCreator.create(
chat_channel: channel_1,
user: other_user,
content: "this is fine @#{current_user.username}",
)
end
xit "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 do
# Jobs.run_immediately!
channel_1.update!(status: :read_only)
end
fab!(:archive) do
ChatChannelArchive.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
chat.visit_channel(channel_1)
click_button(I18n.t("js.chat.channel_archive.retry"))
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