2023-01-20 16:58:06 +01:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-01-20 16:58:06 +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-01-20 16:58:06 +01:00
|
|
|
*/
|
|
|
|
|
2024-10-21 15:50:06 +02:00
|
|
|
import { waitFor, renderHook, act } from "jest-matrix-react";
|
2023-01-20 16:58:06 +01:00
|
|
|
import { mocked } from "jest-mock";
|
|
|
|
import { SlidingSync } from "matrix-js-sdk/src/sliding-sync";
|
|
|
|
import { Room } from "matrix-js-sdk/src/matrix";
|
|
|
|
|
2024-10-15 15:57:26 +02:00
|
|
|
import { useSlidingSyncRoomSearch } from "../../../src/hooks/useSlidingSyncRoomSearch";
|
|
|
|
import { MockEventEmitter, stubClient } from "../../test-utils";
|
|
|
|
import { SlidingSyncManager } from "../../../src/SlidingSyncManager";
|
2023-01-20 16:58:06 +01:00
|
|
|
|
|
|
|
describe("useSlidingSyncRoomSearch", () => {
|
2023-02-14 16:04:13 +01:00
|
|
|
afterAll(() => {
|
|
|
|
jest.restoreAllMocks();
|
|
|
|
});
|
|
|
|
|
2023-01-20 16:58:06 +01:00
|
|
|
it("should display rooms when searching", async () => {
|
|
|
|
const client = stubClient();
|
2023-01-20 18:20:10 +01:00
|
|
|
const roomA = new Room("!a:localhost", client, client.getUserId()!);
|
|
|
|
const roomB = new Room("!b:localhost", client, client.getUserId()!);
|
2023-01-20 16:58:06 +01:00
|
|
|
const slidingSync = mocked(
|
|
|
|
new MockEventEmitter({
|
|
|
|
getListData: jest.fn(),
|
|
|
|
}) as unknown as SlidingSync,
|
|
|
|
);
|
|
|
|
jest.spyOn(SlidingSyncManager.instance, "ensureListRegistered").mockResolvedValue({
|
|
|
|
ranges: [[0, 9]],
|
|
|
|
});
|
|
|
|
SlidingSyncManager.instance.slidingSync = slidingSync;
|
|
|
|
mocked(slidingSync.getListData).mockReturnValue({
|
|
|
|
joinedCount: 2,
|
|
|
|
roomIndexToRoomId: {
|
|
|
|
0: roomA.roomId,
|
|
|
|
1: roomB.roomId,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
mocked(client.getRoom).mockImplementation((roomId) => {
|
|
|
|
switch (roomId) {
|
|
|
|
case roomA.roomId:
|
|
|
|
return roomA;
|
|
|
|
case roomB.roomId:
|
|
|
|
return roomB;
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-02-14 16:04:13 +01:00
|
|
|
// first check that everything is empty
|
|
|
|
const { result } = renderHook(() => useSlidingSyncRoomSearch());
|
|
|
|
const query = {
|
|
|
|
limit: 10,
|
|
|
|
query: "foo",
|
2023-01-20 16:58:06 +01:00
|
|
|
};
|
2023-02-14 16:04:13 +01:00
|
|
|
expect(result.current.loading).toBe(false);
|
|
|
|
expect(result.current.rooms).toEqual([]);
|
2023-01-20 16:58:06 +01:00
|
|
|
|
|
|
|
// run the query
|
2023-02-14 16:04:13 +01:00
|
|
|
act(() => {
|
|
|
|
result.current.search(query);
|
2023-01-20 16:58:06 +01:00
|
|
|
});
|
2023-02-14 16:04:13 +01:00
|
|
|
|
|
|
|
// wait for loading to finish
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(result.current.loading).toBe(false);
|
|
|
|
});
|
|
|
|
|
2023-01-20 16:58:06 +01:00
|
|
|
// now we expect there to be rooms
|
2023-02-14 16:04:13 +01:00
|
|
|
expect(result.current.rooms).toEqual([roomA, roomB]);
|
2023-01-20 16:58:06 +01:00
|
|
|
|
2023-02-14 16:04:13 +01:00
|
|
|
// run the query again
|
|
|
|
act(() => {
|
|
|
|
result.current.search(query);
|
|
|
|
});
|
|
|
|
await waitFor(() => {
|
|
|
|
expect(result.current.loading).toBe(false);
|
2023-01-20 16:58:06 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|