2023-08-09 14:27:37 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-08-09 14:27:37 +02: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-08-09 14:27:37 +02:00
|
|
|
*/
|
|
|
|
|
2024-10-21 15:50:06 +02:00
|
|
|
import { waitFor, renderHook, act } from "jest-matrix-react";
|
2024-03-18 15:40:52 +01:00
|
|
|
import { MatrixClient, MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { KnownMembership } from "matrix-js-sdk/src/types";
|
2023-08-09 14:27:37 +02:00
|
|
|
|
2024-10-15 15:57:26 +02:00
|
|
|
import { MatrixClientPeg } from "../../../src/MatrixClientPeg";
|
|
|
|
import { stubClient } from "../../test-utils";
|
|
|
|
import { useMyRoomMembership, useRoomMemberCount, useRoomMembers } from "../../../src/hooks/useRoomMembers";
|
2023-08-09 14:27:37 +02:00
|
|
|
|
|
|
|
describe("useRoomMembers", () => {
|
|
|
|
function render(room: Room) {
|
|
|
|
return renderHook(() => useRoomMembers(room));
|
|
|
|
}
|
|
|
|
|
|
|
|
let cli: MatrixClient;
|
|
|
|
let room: Room;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
stubClient();
|
|
|
|
cli = MatrixClientPeg.safeGet();
|
|
|
|
room = new Room("!room:server", cli, cli.getSafeUserId());
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should update on RoomState.Members events", async () => {
|
|
|
|
const { result } = render(room);
|
|
|
|
|
|
|
|
expect(result.current).toHaveLength(0);
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
room.currentState.markOutOfBandMembersStarted();
|
|
|
|
room.currentState.setOutOfBandMembers([
|
|
|
|
new MatrixEvent({
|
|
|
|
type: "m.room.member",
|
|
|
|
state_key: "!user:server",
|
|
|
|
room_id: room.roomId,
|
|
|
|
content: {
|
2024-03-12 15:52:54 +01:00
|
|
|
membership: KnownMembership.Join,
|
2023-08-09 14:27:37 +02:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
await waitFor(() => expect(result.current).toHaveLength(1));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("useRoomMemberCount", () => {
|
|
|
|
function render(room: Room) {
|
|
|
|
return renderHook(() => useRoomMemberCount(room));
|
|
|
|
}
|
|
|
|
|
|
|
|
let cli: MatrixClient;
|
|
|
|
let room: Room;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
stubClient();
|
|
|
|
cli = MatrixClientPeg.safeGet();
|
|
|
|
room = new Room("!room:server", cli, cli.getSafeUserId());
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should update on RoomState.Members events", async () => {
|
|
|
|
const { result } = render(room);
|
|
|
|
|
|
|
|
expect(result.current).toBe(0);
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
room.currentState.markOutOfBandMembersStarted();
|
|
|
|
room.currentState.setOutOfBandMembers([
|
|
|
|
new MatrixEvent({
|
|
|
|
type: "m.room.member",
|
|
|
|
state_key: "!user:server",
|
|
|
|
room_id: room.roomId,
|
|
|
|
content: {
|
2024-03-12 15:52:54 +01:00
|
|
|
membership: KnownMembership.Join,
|
2023-08-09 14:27:37 +02:00
|
|
|
},
|
|
|
|
}),
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
await waitFor(() => expect(result.current).toBe(1));
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe("useMyRoomMembership", () => {
|
|
|
|
function render(room: Room) {
|
|
|
|
return renderHook(() => useMyRoomMembership(room));
|
|
|
|
}
|
|
|
|
|
|
|
|
let cli: MatrixClient;
|
|
|
|
let room: Room;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
stubClient();
|
|
|
|
cli = MatrixClientPeg.safeGet();
|
|
|
|
room = new Room("!room:server", cli, cli.getSafeUserId());
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should update on RoomState.Members events", async () => {
|
2024-03-12 15:52:54 +01:00
|
|
|
room.updateMyMembership(KnownMembership.Join);
|
2023-08-09 14:27:37 +02:00
|
|
|
const { result } = render(room);
|
|
|
|
|
2024-03-12 15:52:54 +01:00
|
|
|
expect(result.current).toBe(KnownMembership.Join);
|
2023-08-09 14:27:37 +02:00
|
|
|
|
|
|
|
act(() => {
|
2024-03-12 15:52:54 +01:00
|
|
|
room.updateMyMembership(KnownMembership.Leave);
|
2023-08-09 14:27:37 +02:00
|
|
|
});
|
2024-03-12 15:52:54 +01:00
|
|
|
await waitFor(() => expect(result.current).toBe(KnownMembership.Leave));
|
2023-08-09 14:27:37 +02:00
|
|
|
});
|
|
|
|
});
|