2022-04-22 19:38:27 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-04-22 20:05:36 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
2022-04-22 19:38:27 +08:00
|
|
|
|
2024-09-09 21:57:16 +08:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2022-04-22 19:38:27 +08:00
|
|
|
*/
|
|
|
|
|
2024-03-25 20:21:02 +08:00
|
|
|
import { EventType, MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
|
2022-04-22 19:38:27 +08:00
|
|
|
|
|
|
|
import { shouldDisplayAsBeaconTile } from "../../../src/utils/beacon/timeline";
|
2024-03-25 20:21:02 +08:00
|
|
|
import { makeBeaconInfoEvent, stubClient } from "../../test-utils";
|
2022-04-22 19:38:27 +08:00
|
|
|
|
|
|
|
describe("shouldDisplayAsBeaconTile", () => {
|
|
|
|
const userId = "@user:server";
|
|
|
|
const roomId = "!room:server";
|
|
|
|
const liveBeacon = makeBeaconInfoEvent(userId, roomId, { isLive: true });
|
|
|
|
const notLiveBeacon = makeBeaconInfoEvent(userId, roomId, { isLive: false });
|
|
|
|
const memberEvent = new MatrixEvent({ type: EventType.RoomMember });
|
2022-06-27 20:21:22 +08:00
|
|
|
const redactedBeacon = makeBeaconInfoEvent(userId, roomId, { isLive: false });
|
2024-03-25 20:21:02 +08:00
|
|
|
redactedBeacon.makeRedacted(redactedBeacon, new Room(roomId, stubClient(), userId));
|
2022-04-22 19:38:27 +08:00
|
|
|
|
|
|
|
it("returns true for a beacon with live property set to true", () => {
|
|
|
|
expect(shouldDisplayAsBeaconTile(liveBeacon)).toBe(true);
|
|
|
|
});
|
|
|
|
|
2022-06-27 20:21:22 +08:00
|
|
|
it("returns true for a redacted beacon", () => {
|
|
|
|
expect(shouldDisplayAsBeaconTile(redactedBeacon)).toBe(true);
|
|
|
|
});
|
|
|
|
|
2022-04-22 19:38:27 +08:00
|
|
|
it("returns false for a beacon with live property set to false", () => {
|
|
|
|
expect(shouldDisplayAsBeaconTile(notLiveBeacon)).toBe(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("returns false for a non beacon event", () => {
|
|
|
|
expect(shouldDisplayAsBeaconTile(memberEvent)).toBe(false);
|
|
|
|
});
|
|
|
|
});
|