2022-05-19 16:03:29 +08:00
|
|
|
/*
|
2024-09-09 21:57:16 +08:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2022-05-19 16:03:29 +08:00
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
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-05-19 16:03:29 +08:00
|
|
|
*/
|
|
|
|
|
2024-10-21 21:50:06 +08:00
|
|
|
import { waitFor, renderHook, act } from "jest-matrix-react";
|
2023-02-13 19:39:16 +08:00
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
2022-05-19 16:03:29 +08:00
|
|
|
|
2024-10-15 21:57:26 +08:00
|
|
|
import { useUserDirectory } from "../../../src/hooks/useUserDirectory";
|
|
|
|
import { MatrixClientPeg } from "../../../src/MatrixClientPeg";
|
|
|
|
import { stubClient } from "../../test-utils";
|
2022-05-19 16:03:29 +08:00
|
|
|
|
2023-02-15 00:01:10 +08:00
|
|
|
function render() {
|
|
|
|
return renderHook(() => useUserDirectory());
|
2022-05-19 16:03:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
describe("useUserDirectory", () => {
|
2023-02-13 19:39:16 +08:00
|
|
|
let cli: MatrixClient;
|
2022-05-19 16:03:29 +08:00
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
stubClient();
|
2023-06-06 01:12:23 +08:00
|
|
|
cli = MatrixClientPeg.safeGet();
|
2022-05-19 16:03:29 +08:00
|
|
|
|
2024-05-28 15:41:20 +08:00
|
|
|
cli.getDomain = () => "matrix.org";
|
2022-05-19 16:03:29 +08:00
|
|
|
cli.getThirdpartyProtocols = () => Promise.resolve({});
|
|
|
|
cli.searchUserDirectory = ({ term: query }) =>
|
|
|
|
Promise.resolve({
|
|
|
|
results: [
|
|
|
|
{
|
|
|
|
user_id: "@bob:matrix.org",
|
|
|
|
display_name: query,
|
|
|
|
},
|
2022-12-12 19:24:14 +08:00
|
|
|
],
|
2023-02-13 19:39:16 +08:00
|
|
|
limited: false,
|
2022-05-19 16:03:29 +08:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it("search for users in the identity server", async () => {
|
|
|
|
const query = "Bob";
|
2023-02-15 00:01:10 +08:00
|
|
|
const { result } = render();
|
2022-05-19 16:03:29 +08:00
|
|
|
|
2023-02-15 00:01:10 +08:00
|
|
|
act(() => {
|
|
|
|
result.current.search({ limit: 1, query });
|
2022-05-19 16:03:29 +08:00
|
|
|
});
|
2023-02-15 00:01:10 +08:00
|
|
|
await waitFor(() => expect(result.current.ready).toBe(true));
|
2022-05-19 16:03:29 +08:00
|
|
|
|
2023-02-15 00:01:10 +08:00
|
|
|
expect(result.current.loading).toBe(false);
|
|
|
|
expect(result.current.users[0].name).toBe(query);
|
2022-05-19 16:03:29 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should work with empty queries", async () => {
|
|
|
|
const query = "";
|
2023-02-15 00:01:10 +08:00
|
|
|
const { result } = render();
|
2022-05-19 16:03:29 +08:00
|
|
|
|
2023-02-15 00:01:10 +08:00
|
|
|
act(() => {
|
|
|
|
result.current.search({ limit: 1, query });
|
2022-05-19 16:03:29 +08:00
|
|
|
});
|
2023-02-15 00:01:10 +08:00
|
|
|
await waitFor(() => expect(result.current.ready).toBe(true));
|
|
|
|
|
|
|
|
expect(result.current.loading).toBe(false);
|
|
|
|
expect(result.current.users).toEqual([]);
|
2022-05-19 16:03:29 +08:00
|
|
|
});
|
|
|
|
|
2022-06-15 22:14:05 +08:00
|
|
|
it("should recover from a server exception", async () => {
|
2022-05-19 16:03:29 +08:00
|
|
|
cli.searchUserDirectory = () => {
|
|
|
|
throw new Error("Oops");
|
|
|
|
};
|
|
|
|
const query = "Bob";
|
|
|
|
|
2023-02-15 00:01:10 +08:00
|
|
|
const { result } = render();
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
result.current.search({ limit: 1, query });
|
2022-05-19 16:03:29 +08:00
|
|
|
});
|
2023-02-15 00:01:10 +08:00
|
|
|
await waitFor(() => expect(result.current.ready).toBe(true));
|
|
|
|
|
|
|
|
expect(result.current.loading).toBe(false);
|
|
|
|
expect(result.current.users).toEqual([]);
|
2022-05-19 16:03:29 +08:00
|
|
|
});
|
|
|
|
});
|