2023-12-05 11:37:23 +01:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-12-05 11:37:23 +01:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2023-12-05 11:37:23 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* See readme.md for tips on writing these tests. */
|
|
|
|
|
|
|
|
import { test, expect } from ".";
|
|
|
|
|
|
|
|
test.describe("Read receipts", () => {
|
|
|
|
test.describe("reactions", () => {
|
|
|
|
test.describe("in threads", () => {
|
|
|
|
test("A reaction to a threaded message does not make the room unread", async ({
|
|
|
|
roomAlpha: room1,
|
|
|
|
roomBeta: room2,
|
|
|
|
util,
|
|
|
|
msg,
|
|
|
|
}) => {
|
|
|
|
// Given a thread exists and I have read it
|
|
|
|
await util.goTo(room1);
|
|
|
|
await util.assertRead(room2);
|
|
|
|
await util.receiveMessages(room2, ["Msg1", msg.threadedOff("Msg1", "Reply1")]);
|
2024-04-29 17:30:19 +02:00
|
|
|
await util.assertUnread(room2, 1);
|
2023-12-05 11:37:23 +01:00
|
|
|
await util.goTo(room2);
|
|
|
|
await util.openThread("Msg1");
|
|
|
|
await util.assertRead(room2);
|
2024-04-29 17:30:19 +02:00
|
|
|
await util.assertReadThread("Msg1");
|
2023-12-05 11:37:23 +01:00
|
|
|
await util.goTo(room1);
|
|
|
|
|
|
|
|
// When someone reacts to a thread message
|
|
|
|
await util.receiveMessages(room2, [msg.reactionTo("Reply1", "🪿")]);
|
|
|
|
|
|
|
|
// Then the room remains read
|
|
|
|
await util.assertStillRead(room2);
|
2024-04-29 17:30:19 +02:00
|
|
|
await util.assertReadThread("Msg1");
|
2023-12-05 11:37:23 +01:00
|
|
|
});
|
2024-04-29 17:30:19 +02:00
|
|
|
|
2023-12-08 17:07:25 +01:00
|
|
|
test("Marking a room as read after a reaction in a thread makes it read", async ({
|
2023-12-05 11:37:23 +01:00
|
|
|
roomAlpha: room1,
|
|
|
|
roomBeta: room2,
|
|
|
|
util,
|
|
|
|
msg,
|
|
|
|
}) => {
|
|
|
|
// Given a thread exists with a reaction
|
|
|
|
await util.goTo(room1);
|
|
|
|
await util.assertRead(room2);
|
|
|
|
await util.receiveMessages(room2, [
|
|
|
|
"Msg1",
|
|
|
|
msg.threadedOff("Msg1", "Reply1"),
|
|
|
|
msg.reactionTo("Reply1", "🪿"),
|
|
|
|
]);
|
2024-04-29 17:30:19 +02:00
|
|
|
await util.assertUnread(room2, 1);
|
2023-12-05 11:37:23 +01:00
|
|
|
|
|
|
|
// When I mark the room as read
|
|
|
|
await util.markAsRead(room2);
|
|
|
|
|
|
|
|
// Then it becomes read
|
|
|
|
await util.assertRead(room2);
|
|
|
|
});
|
2024-04-29 17:30:19 +02:00
|
|
|
|
2023-12-08 17:07:25 +01:00
|
|
|
test("Reacting to a thread message after marking as read does not make the room unread", async ({
|
2023-12-05 11:37:23 +01:00
|
|
|
roomAlpha: room1,
|
|
|
|
roomBeta: room2,
|
|
|
|
util,
|
|
|
|
msg,
|
|
|
|
}) => {
|
|
|
|
// Given a thread exists and I have marked it as read
|
|
|
|
await util.goTo(room1);
|
|
|
|
await util.assertRead(room2);
|
|
|
|
await util.receiveMessages(room2, [
|
|
|
|
"Msg1",
|
|
|
|
msg.threadedOff("Msg1", "Reply1"),
|
|
|
|
msg.reactionTo("Reply1", "🪿"),
|
|
|
|
]);
|
2024-04-29 17:30:19 +02:00
|
|
|
await util.assertUnread(room2, 1);
|
2023-12-05 11:37:23 +01:00
|
|
|
await util.markAsRead(room2);
|
|
|
|
await util.assertRead(room2);
|
|
|
|
|
|
|
|
// When someone reacts to a thread message
|
|
|
|
await util.receiveMessages(room2, [msg.reactionTo("Reply1", "🪿")]);
|
|
|
|
|
|
|
|
// Then the room remains read
|
|
|
|
await util.assertStillRead(room2);
|
2024-04-29 17:30:19 +02:00
|
|
|
// as does the thread
|
|
|
|
await util.assertReadThread("Msg1");
|
2023-12-05 11:37:23 +01:00
|
|
|
});
|
2024-04-29 17:30:19 +02:00
|
|
|
|
2023-12-08 17:07:25 +01:00
|
|
|
test("A room with a reaction to a threaded message is still unread after restart", async ({
|
2023-12-05 11:37:23 +01:00
|
|
|
roomAlpha: room1,
|
|
|
|
roomBeta: room2,
|
|
|
|
util,
|
|
|
|
msg,
|
|
|
|
}) => {
|
|
|
|
// Given a thread exists and I have read it
|
|
|
|
await util.goTo(room1);
|
|
|
|
await util.assertRead(room2);
|
|
|
|
await util.receiveMessages(room2, ["Msg1", msg.threadedOff("Msg1", "Reply1")]);
|
2024-04-29 17:30:19 +02:00
|
|
|
await util.assertUnread(room2, 1);
|
2023-12-05 11:37:23 +01:00
|
|
|
await util.goTo(room2);
|
|
|
|
await util.openThread("Msg1");
|
|
|
|
await util.assertRead(room2);
|
|
|
|
await util.goTo(room1);
|
|
|
|
|
2024-04-29 17:30:19 +02:00
|
|
|
// And someone reacted to it, which doesn't make it read
|
2023-12-05 11:37:23 +01:00
|
|
|
await util.receiveMessages(room2, [msg.reactionTo("Reply1", "🪿")]);
|
|
|
|
await util.assertStillRead(room2);
|
2024-04-29 17:30:19 +02:00
|
|
|
await util.assertReadThread("Msg1");
|
2023-12-05 11:37:23 +01:00
|
|
|
|
|
|
|
// When I restart
|
|
|
|
await util.saveAndReload();
|
|
|
|
|
|
|
|
// Then the room is still read
|
|
|
|
await util.assertRead(room2);
|
2024-04-29 17:30:19 +02:00
|
|
|
await util.assertReadThread("Msg1");
|
2023-12-05 11:37:23 +01:00
|
|
|
});
|
2024-04-29 17:30:19 +02:00
|
|
|
|
2023-12-05 11:37:23 +01:00
|
|
|
test("A room where all reactions in threads are read is still read after restart", async ({
|
|
|
|
roomAlpha: room1,
|
|
|
|
roomBeta: room2,
|
|
|
|
util,
|
|
|
|
msg,
|
|
|
|
}) => {
|
|
|
|
// Given multiple threads with reactions exist and are read
|
|
|
|
await util.goTo(room1);
|
|
|
|
await util.assertRead(room2);
|
|
|
|
await util.receiveMessages(room2, [
|
|
|
|
"Msg1",
|
|
|
|
msg.threadedOff("Msg1", "Reply1a"),
|
|
|
|
msg.reactionTo("Reply1a", "r"),
|
|
|
|
"Msg2",
|
|
|
|
msg.threadedOff("Msg1", "Reply1b"),
|
|
|
|
msg.threadedOff("Msg2", "Reply2a"),
|
|
|
|
msg.reactionTo("Msg1", "e"),
|
|
|
|
msg.threadedOff("Msg2", "Reply2b"),
|
|
|
|
msg.reactionTo("Reply2a", "a"),
|
|
|
|
msg.reactionTo("Reply2b", "c"),
|
|
|
|
msg.reactionTo("Reply1b", "t"),
|
|
|
|
]);
|
2024-04-29 17:30:19 +02:00
|
|
|
await util.assertUnread(room2, 2);
|
2023-12-05 11:37:23 +01:00
|
|
|
await util.goTo(room2);
|
|
|
|
await util.openThread("Msg1");
|
|
|
|
await util.assertReadThread("Msg1");
|
|
|
|
await util.openThread("Msg2");
|
|
|
|
await util.assertReadThread("Msg2");
|
|
|
|
await util.assertRead(room2);
|
|
|
|
await util.goTo(room1);
|
|
|
|
|
|
|
|
// When I restart
|
|
|
|
await util.saveAndReload();
|
|
|
|
|
|
|
|
// Then the room is still read
|
|
|
|
await util.assertRead(room2);
|
|
|
|
await util.goTo(room2);
|
|
|
|
await util.assertReadThread("Msg1");
|
|
|
|
await util.assertReadThread("Msg2");
|
|
|
|
});
|
2024-04-29 17:30:19 +02:00
|
|
|
|
2023-12-05 11:37:23 +01:00
|
|
|
test("Can remove a reaction in a thread", async ({
|
|
|
|
page,
|
|
|
|
roomAlpha: room1,
|
|
|
|
roomBeta: room2,
|
|
|
|
util,
|
|
|
|
msg,
|
|
|
|
}) => {
|
|
|
|
// Note: this is not strictly a read receipt test, but it checks
|
|
|
|
// for a bug we caused when we were fixing unreads, so it's
|
|
|
|
// included here. The bug is:
|
|
|
|
// https://github.com/vector-im/element-web/issues/26498
|
|
|
|
|
|
|
|
// Given a thread exists
|
|
|
|
await util.goTo(room1);
|
|
|
|
await util.assertRead(room2);
|
|
|
|
await util.receiveMessages(room2, ["Msg1", msg.threadedOff("Msg1", "Reply1a")]);
|
2024-04-29 17:30:19 +02:00
|
|
|
await util.assertUnread(room2, 1);
|
2023-12-05 11:37:23 +01:00
|
|
|
|
|
|
|
// When I react to a thread message
|
|
|
|
await util.goTo(room2);
|
|
|
|
await util.openThread("Msg1");
|
|
|
|
await page.locator(".mx_ThreadPanel").getByText("Reply1a").hover();
|
|
|
|
await page.getByRole("button", { name: "React" }).click();
|
|
|
|
await page.locator(".mx_EmojiPicker_body").getByText("😀").click();
|
|
|
|
|
|
|
|
// And cancel the reaction
|
|
|
|
await page.locator(".mx_ThreadPanel").getByLabel("Mae reacted with 😀").click();
|
|
|
|
|
|
|
|
// Then it disappears
|
|
|
|
await expect(page.locator(".mx_ThreadPanel").getByLabel("Mae reacted with 😀")).not.toBeVisible();
|
|
|
|
|
|
|
|
// And I can do it all again without an error
|
|
|
|
await page.locator(".mx_ThreadPanel").getByText("Reply1a").hover();
|
|
|
|
await page.getByRole("button", { name: "React" }).click();
|
|
|
|
await page.locator(".mx_EmojiPicker_body").getByText("😀").first().click();
|
|
|
|
await page.locator(".mx_ThreadPanel").getByLabel("Mae reacted with 😀").click();
|
|
|
|
await expect(await page.locator(".mx_ThreadPanel").getByLabel("Mae reacted with 😀")).not.toBeVisible();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|