mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-29 03:49:28 +08:00
5d9f5ccf0b
* Create useRoomName hook Mark RoomName component as deprecated * Pass out-of-band data to relevant RoomHeader component * Mark LegacyRoomHeader as deprecated * Fix incorrect search&replace in _RoomHeader.pcss * lintfix * Fix i18n * Discard use of useCallback * Change export of useRoomName * fix ts issue * lints
59 lines
1.8 KiB
TypeScript
59 lines
1.8 KiB
TypeScript
/*
|
|
Copyright 2023 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.
|
|
*/
|
|
|
|
import React from "react";
|
|
import { Mocked } from "jest-mock";
|
|
import { render } from "@testing-library/react";
|
|
import { Room } from "matrix-js-sdk/src/models/room";
|
|
|
|
import { stubClient } from "../../../test-utils";
|
|
import RoomHeader from "../../../../src/components/views/rooms/RoomHeader";
|
|
import type { MatrixClient } from "matrix-js-sdk/src/client";
|
|
|
|
describe("Roomeader", () => {
|
|
let client: Mocked<MatrixClient>;
|
|
let room: Room;
|
|
|
|
const ROOM_ID = "!1:example.org";
|
|
|
|
beforeEach(async () => {
|
|
stubClient();
|
|
room = new Room(ROOM_ID, client, "@alice:example.org");
|
|
});
|
|
|
|
it("renders with no props", () => {
|
|
const { asFragment } = render(<RoomHeader />);
|
|
expect(asFragment()).toMatchSnapshot();
|
|
});
|
|
|
|
it("renders the room header", () => {
|
|
const { container } = render(<RoomHeader room={room} />);
|
|
expect(container).toHaveTextContent(ROOM_ID);
|
|
});
|
|
|
|
it("display the out-of-band room name", () => {
|
|
const OOB_NAME = "My private room";
|
|
const { container } = render(
|
|
<RoomHeader
|
|
oobData={{
|
|
name: OOB_NAME,
|
|
}}
|
|
/>,
|
|
);
|
|
expect(container).toHaveTextContent(OOB_NAME);
|
|
});
|
|
});
|