2022-05-19 10:03:29 +02:00
|
|
|
/*
|
|
|
|
Copyright 2022 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-02-14 17:01:10 +01:00
|
|
|
import { waitFor } from "@testing-library/react";
|
|
|
|
import { renderHook, act } from "@testing-library/react-hooks/dom";
|
2023-02-13 12:39:16 +01:00
|
|
|
import { MatrixClient } from "matrix-js-sdk/src/matrix";
|
2022-05-19 10:03:29 +02:00
|
|
|
|
|
|
|
import { useUserDirectory } from "../../src/hooks/useUserDirectory";
|
|
|
|
import { MatrixClientPeg } from "../../src/MatrixClientPeg";
|
|
|
|
import { stubClient } from "../test-utils";
|
|
|
|
|
2023-02-14 17:01:10 +01:00
|
|
|
function render() {
|
|
|
|
return renderHook(() => useUserDirectory());
|
2022-05-19 10:03:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
describe("useUserDirectory", () => {
|
2023-02-13 12:39:16 +01:00
|
|
|
let cli: MatrixClient;
|
2022-05-19 10:03:29 +02:00
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
stubClient();
|
2023-06-05 19:12:23 +02:00
|
|
|
cli = MatrixClientPeg.safeGet();
|
2022-05-19 10:03:29 +02:00
|
|
|
|
|
|
|
MatrixClientPeg.getHomeserverName = () => "matrix.org";
|
|
|
|
cli.getThirdpartyProtocols = () => Promise.resolve({});
|
2022-12-12 12:24:14 +01:00
|
|
|
cli.searchUserDirectory = ({ term: query }) =>
|
|
|
|
Promise.resolve({
|
|
|
|
results: [
|
|
|
|
{
|
|
|
|
user_id: "@bob:matrix.org",
|
|
|
|
display_name: query,
|
|
|
|
},
|
|
|
|
],
|
2023-02-13 12:39:16 +01:00
|
|
|
limited: false,
|
2022-12-12 12:24:14 +01:00
|
|
|
});
|
2022-05-19 10:03:29 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it("search for users in the identity server", async () => {
|
|
|
|
const query = "Bob";
|
2023-02-14 17:01:10 +01:00
|
|
|
const { result } = render();
|
2022-05-19 10:03:29 +02:00
|
|
|
|
2023-02-14 17:01:10 +01:00
|
|
|
act(() => {
|
|
|
|
result.current.search({ limit: 1, query });
|
2022-05-19 10:03:29 +02:00
|
|
|
});
|
2023-02-14 17:01:10 +01:00
|
|
|
await waitFor(() => expect(result.current.ready).toBe(true));
|
2022-05-19 10:03:29 +02:00
|
|
|
|
2023-02-14 17:01:10 +01:00
|
|
|
expect(result.current.loading).toBe(false);
|
|
|
|
expect(result.current.users[0].name).toBe(query);
|
2022-05-19 10:03:29 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
it("should work with empty queries", async () => {
|
|
|
|
const query = "";
|
2023-02-14 17:01:10 +01:00
|
|
|
const { result } = render();
|
2022-05-19 10:03:29 +02:00
|
|
|
|
2023-02-14 17:01:10 +01:00
|
|
|
act(() => {
|
|
|
|
result.current.search({ limit: 1, query });
|
2022-05-19 10:03:29 +02:00
|
|
|
});
|
2023-02-14 17:01:10 +01:00
|
|
|
await waitFor(() => expect(result.current.ready).toBe(true));
|
|
|
|
|
|
|
|
expect(result.current.loading).toBe(false);
|
|
|
|
expect(result.current.users).toEqual([]);
|
2022-05-19 10:03:29 +02:00
|
|
|
});
|
|
|
|
|
2022-06-15 16:14:05 +02:00
|
|
|
it("should recover from a server exception", async () => {
|
2022-12-12 12:24:14 +01:00
|
|
|
cli.searchUserDirectory = () => {
|
|
|
|
throw new Error("Oops");
|
|
|
|
};
|
2022-05-19 10:03:29 +02:00
|
|
|
const query = "Bob";
|
|
|
|
|
2023-02-14 17:01:10 +01:00
|
|
|
const { result } = render();
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
result.current.search({ limit: 1, query });
|
2022-05-19 10:03:29 +02:00
|
|
|
});
|
2023-02-14 17:01:10 +01:00
|
|
|
await waitFor(() => expect(result.current.ready).toBe(true));
|
|
|
|
|
|
|
|
expect(result.current.loading).toBe(false);
|
|
|
|
expect(result.current.users).toEqual([]);
|
2022-05-19 10:03:29 +02:00
|
|
|
});
|
|
|
|
});
|