2024-07-10 10:06:13 +01:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2024-07-10 10:06:13 +01:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2024-07-10 10:06:13 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* See readme.md for tips on writing these tests. */
|
|
|
|
|
|
|
|
|
|
import { test } from ".";
|
|
|
|
|
|
2024-12-05 14:30:28 +00:00
|
|
|
test.describe("Read receipts", { tag: "@mergequeue" }, () => {
|
2024-07-10 10:06:13 +01:00
|
|
|
test.describe("Message ordering", () => {
|
|
|
|
|
test.describe("in the main timeline", () => {
|
2025-12-11 15:37:25 +00:00
|
|
|
test.fixme("A receipt for the last event in sync order (even with wrong ts) marks a room as read", () => {});
|
|
|
|
|
test.fixme("A receipt for a non-last event in sync order (even when ts makes it last) leaves room unread", () => {});
|
2024-07-10 10:06:13 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test.describe("in threads", () => {
|
|
|
|
|
// These don't pass yet - we need MSC4033 - we don't even know the Sync order yet
|
2025-12-11 15:37:25 +00:00
|
|
|
test.fixme("A receipt for the last event in sync order (even with wrong ts) marks a thread as read", () => {});
|
|
|
|
|
test.fixme("A receipt for a non-last event in sync order (even when ts makes it last) leaves thread unread", () => {});
|
2024-07-10 10:06:13 +01:00
|
|
|
|
|
|
|
|
// These pass now and should not later - we should use order from MSC4033 instead of ts
|
|
|
|
|
// These are broken out
|
2025-12-11 15:37:25 +00:00
|
|
|
test.fixme("A receipt for last threaded event in ts order (even when it was received non-last) marks a thread as read", () => {});
|
|
|
|
|
test.fixme("A receipt for non-last threaded event in ts order (even when it was received last) leaves thread unread", () => {});
|
|
|
|
|
test.fixme("A receipt for last threaded edit in ts order (even when it was received non-last) marks a thread as read", () => {});
|
|
|
|
|
test.fixme("A receipt for non-last threaded edit in ts order (even when it was received last) leaves thread unread", () => {});
|
|
|
|
|
test.fixme("A receipt for last threaded reaction in ts order (even when it was received non-last) marks a thread as read", () => {});
|
|
|
|
|
test.fixme("A receipt for non-last threaded reaction in ts order (even when it was received last) leaves thread unread", () => {});
|
2024-07-10 10:06:13 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test.describe("thread roots", () => {
|
2025-12-11 15:37:25 +00:00
|
|
|
test.fixme("A receipt for last reaction to thread root in sync order (even when ts makes it last) marks room as read", () => {});
|
|
|
|
|
test.fixme("A receipt for non-last reaction to thread root in sync order (even when ts makes it last) leaves room unread", () => {});
|
|
|
|
|
test.fixme("A receipt for last edit to thread root in sync order (even when ts makes it last) marks room as read", () => {});
|
|
|
|
|
test.fixme("A receipt for non-last edit to thread root in sync order (even when ts makes it last) leaves room unread", () => {});
|
2024-07-10 10:06:13 +01:00
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|