mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:49:55 +08:00
92839dc722
This would cause an error when deleting the original message of a thread, due to the non existing `last_message`. This fix is implemented using the null pattern. Note this commit is also using this opportunity to unify naming of null objects, `Chat::DeletedUser` becomes `Chat::NullUser`, it feels better to have a name describing what is the object, instead of a name describing why this object has to be used, which can change depending on cases.
70 lines
2.1 KiB
Ruby
70 lines
2.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
describe "Thread preview", type: :system do
|
|
fab!(:current_user) { Fabricate(:admin) }
|
|
fab!(:channel_1) { Fabricate(:chat_channel, threading_enabled: true) }
|
|
fab!(:message_1) { Fabricate(:chat_message, chat_channel: channel_1, use_service: true) }
|
|
|
|
let(:chat_page) { PageObjects::Pages::Chat.new }
|
|
let(:channel_page) { PageObjects::Pages::ChatChannel.new }
|
|
|
|
before do
|
|
chat_system_bootstrap
|
|
channel_1.add(current_user)
|
|
sign_in(current_user)
|
|
end
|
|
|
|
context "when message has no thread" do
|
|
it "shows no preview" do
|
|
chat_page.visit_channel(channel_1)
|
|
|
|
expect(channel_page.messages).to have_message(id: message_1.id)
|
|
expect(channel_page).to have_no_thread_indicator(message_1)
|
|
end
|
|
end
|
|
|
|
context "when message has thread with no replies" do
|
|
before { Fabricate(:chat_thread, channel: channel_1) }
|
|
|
|
it "shows no preview" do
|
|
chat_page.visit_channel(channel_1)
|
|
|
|
expect(channel_page.messages).to have_message(id: message_1.id)
|
|
expect(channel_page).to have_no_thread_indicator(message_1)
|
|
end
|
|
end
|
|
|
|
context "when message has thread with replies" do
|
|
fab!(:thread_1) { Fabricate(:chat_thread, channel: channel_1, original_message: message_1) }
|
|
fab!(:thread_1_message_1) do
|
|
Fabricate(:chat_message, thread: thread_1, in_reply_to: message_1, use_service: true)
|
|
end
|
|
|
|
it "shows preview" do
|
|
chat_page.visit_channel(channel_1)
|
|
|
|
expect(channel_page.messages).to have_message(id: message_1.id)
|
|
expect(channel_page).to have_thread_indicator(message_1)
|
|
end
|
|
end
|
|
|
|
context "when message has thread with deleted original message" do
|
|
fab!(:thread_1) { Fabricate(:chat_thread, channel: channel_1, original_message: message_1) }
|
|
|
|
before do
|
|
Chat::TrashMessage.call(
|
|
message_id: message_1.id,
|
|
channel_id: channel_1.id,
|
|
guardian: message_1.user.guardian,
|
|
)
|
|
end
|
|
|
|
it "shows preview" do
|
|
chat_page.visit_channel(channel_1)
|
|
|
|
expect(channel_page.messages).to have_message(id: message_1.id, deleted: 1)
|
|
expect(channel_page).to have_no_thread_indicator(message_1)
|
|
end
|
|
end
|
|
end
|