2023-12-04 12:01:06 +00:00
|
|
|
/*
|
2024-09-09 14:57:16 +01:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-12-04 12:01:06 +00:00
|
|
|
Copyright 2023 Suguru Hirahara
|
|
|
|
|
|
2025-01-06 11:18:54 +00:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
2024-09-09 14:57:16 +01:00
|
|
|
Please see LICENSE files in the repository root for full details.
|
2023-12-04 12:01:06 +00:00
|
|
|
*/
|
|
|
|
|
|
2025-02-05 13:25:06 +00:00
|
|
|
import { type Page } from "@playwright/test";
|
2025-02-21 11:27:57 +00:00
|
|
|
import { type Visibility } from "matrix-js-sdk/src/matrix";
|
2026-06-30 16:02:27 +02:00
|
|
|
import { closeReleaseAnnouncement, rejectToast } from "@element-hq/element-web-playwright-common";
|
2023-12-04 12:01:06 +00:00
|
|
|
|
|
|
|
|
import { test, expect } from "../../element-web-test";
|
2025-02-05 13:25:06 +00:00
|
|
|
import { type ElementAppPage } from "../../pages/ElementAppPage";
|
2023-12-04 12:01:06 +00:00
|
|
|
|
|
|
|
|
test.describe("Room Header", () => {
|
|
|
|
|
test.use({
|
|
|
|
|
displayName: "Sakura",
|
2026-06-30 16:02:27 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test.beforeEach(async ({ page, app, user }) => {
|
|
|
|
|
// The toasts are displayed above the search section
|
|
|
|
|
await rejectToast(page, "Verify this device");
|
|
|
|
|
await rejectToast(page, "Notifications");
|
|
|
|
|
|
|
|
|
|
// Close the release announcement about the new room list sections
|
|
|
|
|
await closeReleaseAnnouncement(page, "Introducing Sections");
|
2023-12-04 12:01:06 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test.describe("with feature_notifications enabled", () => {
|
2023-12-16 15:31:26 +05:30
|
|
|
test.use({
|
|
|
|
|
labsFlags: ["feature_notifications"],
|
2023-12-04 12:01:06 +00:00
|
|
|
});
|
2024-12-04 09:12:43 +00:00
|
|
|
test("should render default buttons properly", { tag: "@screenshot" }, async ({ page, app, user }) => {
|
2023-12-04 12:01:06 +00:00
|
|
|
await app.client.createRoom({ name: "Test Room" });
|
2026-06-30 16:02:27 +02:00
|
|
|
await app.viewRoomByName("Test Room");
|
2023-12-04 12:01:06 +00:00
|
|
|
|
2024-07-23 16:26:25 +05:30
|
|
|
const header = page.locator(".mx_RoomHeader");
|
2023-12-04 12:01:06 +00:00
|
|
|
|
2024-07-23 16:26:25 +05:30
|
|
|
// There's two room info button - the header itself and the i button
|
|
|
|
|
const infoButtons = header.getByRole("button", { name: "Room info" });
|
|
|
|
|
await expect(infoButtons).toHaveCount(2);
|
|
|
|
|
await expect(infoButtons.first()).toBeVisible();
|
|
|
|
|
await expect(infoButtons.last()).toBeVisible();
|
2023-12-04 12:01:06 +00:00
|
|
|
|
2024-07-23 16:26:25 +05:30
|
|
|
// Memberlist button
|
|
|
|
|
await expect(header.locator(".mx_FacePile")).toBeVisible();
|
|
|
|
|
|
|
|
|
|
// There should be both a voice and a video call button
|
2025-08-12 12:07:59 +02:00
|
|
|
await expect(header.getByRole("button", { name: "Video call" })).toBeVisible();
|
|
|
|
|
await expect(header.getByRole("button", { name: "Voice call" })).toBeVisible();
|
2024-07-23 16:26:25 +05:30
|
|
|
|
|
|
|
|
await expect(header.getByRole("button", { name: "Threads" })).toBeVisible();
|
|
|
|
|
await expect(header.getByRole("button", { name: "Notifications" })).toBeVisible();
|
|
|
|
|
|
2024-09-26 11:14:53 +01:00
|
|
|
// Assert that there are eight buttons in total
|
|
|
|
|
await expect(header.getByRole("button")).toHaveCount(8);
|
2023-12-04 12:01:06 +00:00
|
|
|
|
|
|
|
|
await expect(header).toMatchScreenshot("room-header.png");
|
|
|
|
|
});
|
|
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
test(
|
|
|
|
|
"should render a very long room name without collapsing the buttons",
|
|
|
|
|
{ tag: "@screenshot" },
|
|
|
|
|
async ({ page, app, user }) => {
|
|
|
|
|
const LONG_ROOM_NAME =
|
|
|
|
|
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore " +
|
|
|
|
|
"et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut " +
|
|
|
|
|
"aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum " +
|
|
|
|
|
"dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui " +
|
|
|
|
|
"officia deserunt mollit anim id est laborum.";
|
2023-12-04 12:01:06 +00:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
await app.client.createRoom({ name: LONG_ROOM_NAME });
|
2026-06-30 16:02:27 +02:00
|
|
|
await app.viewRoomByName(LONG_ROOM_NAME);
|
2023-12-04 12:01:06 +00:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
const header = page.locator(".mx_RoomHeader");
|
|
|
|
|
// Wait until the room name is set
|
|
|
|
|
await expect(page.locator(".mx_RoomHeader_heading").getByText(LONG_ROOM_NAME)).toBeVisible();
|
2023-12-04 12:01:06 +00:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
// Assert the size of buttons on RoomHeader are specified and the buttons are not compressed
|
|
|
|
|
// Note these assertions do not check the size of mx_LegacyRoomHeader_name button
|
2024-12-18 09:55:59 +00:00
|
|
|
const buttons = header.getByRole("button").filter({
|
|
|
|
|
has: page.locator("svg"),
|
|
|
|
|
});
|
2024-12-04 09:12:43 +00:00
|
|
|
await expect(buttons).toHaveCount(5);
|
2024-07-23 16:26:25 +05:30
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
for (const button of await buttons.all()) {
|
|
|
|
|
await expect(button).toBeVisible();
|
|
|
|
|
await expect(button).toHaveCSS("height", "32px");
|
|
|
|
|
await expect(button).toHaveCSS("width", "32px");
|
|
|
|
|
}
|
2023-12-04 12:01:06 +00:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
await expect(header).toMatchScreenshot("room-header-long-name.png");
|
|
|
|
|
},
|
|
|
|
|
);
|
2025-02-21 11:27:57 +00:00
|
|
|
|
|
|
|
|
test("should render room header icon correctly", { tag: "@screenshot" }, async ({ page, app, user }) => {
|
|
|
|
|
await app.client.createRoom({ name: "Test Room", visibility: "public" as Visibility });
|
2026-06-30 16:02:27 +02:00
|
|
|
await app.viewRoomByName("Test Room");
|
2025-02-21 11:27:57 +00:00
|
|
|
|
|
|
|
|
const header = page.locator(".mx_RoomHeader");
|
|
|
|
|
|
|
|
|
|
await expect(header).toMatchScreenshot("room-header-with-icon.png");
|
|
|
|
|
});
|
2023-12-04 12:01:06 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test.describe("with a video room", () => {
|
2023-12-16 15:31:26 +05:30
|
|
|
test.use({ labsFlags: ["feature_video_rooms"] });
|
2023-12-04 12:01:06 +00:00
|
|
|
|
|
|
|
|
const createVideoRoom = async (page: Page, app: ElementAppPage) => {
|
2026-06-30 16:02:27 +02:00
|
|
|
const roomListHeader = page.getByTestId("room-list-header");
|
|
|
|
|
await roomListHeader.getByRole("button", { name: "New conversation" }).click();
|
2023-12-04 12:01:06 +00:00
|
|
|
await page.getByRole("menuitem", { name: "New video room" }).click();
|
|
|
|
|
|
|
|
|
|
await page.getByRole("textbox", { name: "Name" }).type("Test video room");
|
|
|
|
|
|
|
|
|
|
await page.getByRole("button", { name: "Create video room" }).click();
|
|
|
|
|
|
2026-06-30 16:02:27 +02:00
|
|
|
await app.viewRoomByName("Test video room");
|
2023-12-04 12:01:06 +00:00
|
|
|
};
|
|
|
|
|
|
2023-12-16 15:31:26 +05:30
|
|
|
test.describe("and with feature_notifications enabled", () => {
|
|
|
|
|
test.use({ labsFlags: ["feature_video_rooms", "feature_notifications"] });
|
2023-12-04 12:01:06 +00:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
test(
|
|
|
|
|
"should render buttons for chat, room info, threads and facepile",
|
|
|
|
|
{ tag: "@screenshot" },
|
|
|
|
|
async ({ page, app, user }) => {
|
|
|
|
|
await createVideoRoom(page, app);
|
|
|
|
|
const header = page.locator(".mx_RoomHeader");
|
2023-12-04 12:01:06 +00:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
// There's two room info button - the header itself and the i button
|
|
|
|
|
const infoButtons = header.getByRole("button", { name: "Room info" });
|
|
|
|
|
await expect(infoButtons).toHaveCount(2);
|
|
|
|
|
await expect(infoButtons.first()).toBeVisible();
|
|
|
|
|
await expect(infoButtons.last()).toBeVisible();
|
2024-07-23 16:26:25 +05:30
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
// Facepile
|
|
|
|
|
await expect(header.locator(".mx_FacePile")).toBeVisible();
|
2024-07-23 16:26:25 +05:30
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
// Chat, Threads and Notification buttons
|
|
|
|
|
await expect(header.getByRole("button", { name: "Chat" })).toBeVisible();
|
|
|
|
|
await expect(header.getByRole("button", { name: "Threads" })).toBeVisible();
|
|
|
|
|
await expect(header.getByRole("button", { name: "Notifications" })).toBeVisible();
|
2023-12-04 12:01:06 +00:00
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
// Assert that there is not a button except those buttons
|
|
|
|
|
await expect(header.getByRole("button")).toHaveCount(7);
|
2023-12-16 15:31:26 +05:30
|
|
|
|
2024-12-04 09:12:43 +00:00
|
|
|
await expect(header).toMatchScreenshot("room-header-video-room.png");
|
|
|
|
|
},
|
|
|
|
|
);
|
2023-12-04 12:01:06 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test("should render a working chat button which opens the timeline on a right panel", async ({
|
|
|
|
|
page,
|
|
|
|
|
app,
|
|
|
|
|
user,
|
|
|
|
|
}) => {
|
|
|
|
|
await createVideoRoom(page, app);
|
|
|
|
|
|
2024-07-23 16:26:25 +05:30
|
|
|
await page.locator(".mx_RoomHeader").getByRole("button", { name: "Chat" }).click();
|
2023-12-04 12:01:06 +00:00
|
|
|
|
2024-01-29 17:06:12 +01:00
|
|
|
// Assert that the call view is still visible
|
|
|
|
|
await expect(page.locator(".mx_CallView")).toBeVisible();
|
2023-12-04 12:01:06 +00:00
|
|
|
|
|
|
|
|
// Assert that GELS is visible
|
|
|
|
|
await expect(
|
|
|
|
|
page.locator(".mx_RightPanel .mx_TimelineCard").getByText("Sakura created and configured the room."),
|
|
|
|
|
).toBeVisible();
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
});
|