2022-05-06 17:09:28 +08:00
|
|
|
/*
|
2023-08-01 15:32:53 +08:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
2022-05-06 17:09:28 +08:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2021-10-01 21:54:26 +08:00
|
|
|
import React from "react";
|
2023-08-01 15:32:53 +08:00
|
|
|
import { Mocked } from "jest-mock";
|
|
|
|
import { render } from "@testing-library/react";
|
2022-09-25 22:57:25 +08:00
|
|
|
import { Room } from "matrix-js-sdk/src/models/room";
|
|
|
|
|
2023-08-01 15:32:53 +08:00
|
|
|
import { stubClient } from "../../../test-utils";
|
|
|
|
import RoomHeader from "../../../../src/components/views/rooms/RoomHeader";
|
2022-09-25 22:57:25 +08:00
|
|
|
import type { MatrixClient } from "matrix-js-sdk/src/client";
|
2023-06-09 20:33:54 +08:00
|
|
|
|
2023-08-01 15:32:53 +08:00
|
|
|
describe("Roomeader", () => {
|
2022-09-25 22:57:25 +08:00
|
|
|
let client: Mocked<MatrixClient>;
|
|
|
|
let room: Room;
|
|
|
|
|
2023-08-01 15:32:53 +08:00
|
|
|
const ROOM_ID = "!1:example.org";
|
2022-09-25 22:57:25 +08:00
|
|
|
|
2023-08-01 15:32:53 +08:00
|
|
|
beforeEach(async () => {
|
2022-09-25 22:57:25 +08:00
|
|
|
stubClient();
|
2023-08-01 15:32:53 +08:00
|
|
|
room = new Room(ROOM_ID, client, "@alice:example.org");
|
2023-02-28 16:58:23 +08:00
|
|
|
});
|
|
|
|
|
2023-08-01 15:32:53 +08:00
|
|
|
it("renders with no props", () => {
|
|
|
|
const { asFragment } = render(<RoomHeader />);
|
|
|
|
expect(asFragment()).toMatchSnapshot();
|
2023-02-28 16:58:23 +08:00
|
|
|
});
|
|
|
|
|
2023-08-01 15:32:53 +08:00
|
|
|
it("renders the room header", () => {
|
|
|
|
const { container } = render(<RoomHeader room={room} />);
|
|
|
|
expect(container).toHaveTextContent(ROOM_ID);
|
2023-02-28 16:58:23 +08:00
|
|
|
});
|
2022-09-25 22:57:25 +08:00
|
|
|
});
|