mirror of
https://github.com/vector-im/element-web.git
synced 2025-12-08 02:41:32 +01:00
* Default to new room list and enforce in config for app and develop * Update jest tests * Update LandmarkNavigation and e2e test * Update viewRoomByName helper * lint * Update Add -> New Room flow Keep legacy viewRoomByName until we delete the olds tests. * Update e2e test to use Add -> Start Chat * Update screenshots * Fix viewRoomByName, can't use option as it contains more that just the room name. Using title which should be exact. * Fix knocking tests * fix layout.spec.ts and pstn.spec * timeline snapshots * Fix spotlight.spec * TAC spaces and media preview settings * Fix more screenshots and mark as unread tests * Fix leftpanel test * Bugfix for knocking use case. We should check EffectiveMembership when remove rooms from the new room list, so that knocking is handled * Fix openCreateRoomDialog to new room list specifics to fix create-knock-room.spec.ts * lint * Fix Landmark navigation from left panel search to the next landmark * lint * Update window-12px-linux.png * Update apps-drawer-linux.png * Update sliding sync e2e tests * Update some screenshots * Revert change to the space create screenshot * Use actual screenshot as focused elements are different when generated locally * Fix test selectors * Morfe test screenshot selector / update * Add test for landmark navigation * Replace screenshots * Fix another test that just got added an hour ago * Not sure why this was changed, doesn't seem necessary * Disambiguate selector * Another screenshot that's now changed in width by 1px * Revert changes to config files It's being turned on by default so these are unnecessary * Convert read.unread assertions to new room list removing support for checking for activity in assertUnread which was unused. * Update room list order tests that feel a bit like they ought to be in room-list rather than read-receipts but whatever * Fix room titles in read receipts test --------- Co-authored-by: David Baker <dbkr@users.noreply.github.com>
173 lines
7.6 KiB
TypeScript
173 lines
7.6 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2023 Suguru Hirahara
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { type Page } from "@playwright/test";
|
|
import { type Visibility } from "matrix-js-sdk/src/matrix";
|
|
|
|
import { test, expect } from "../../element-web-test";
|
|
import { type ElementAppPage } from "../../pages/ElementAppPage";
|
|
|
|
test.describe("Room Header", () => {
|
|
test.use({
|
|
displayName: "Sakura",
|
|
config: {
|
|
features: {
|
|
feature_new_room_list: false,
|
|
},
|
|
},
|
|
});
|
|
|
|
test.describe("with feature_notifications enabled", () => {
|
|
test.use({
|
|
labsFlags: ["feature_notifications"],
|
|
});
|
|
test("should render default buttons properly", { tag: "@screenshot" }, async ({ page, app, user }) => {
|
|
await app.client.createRoom({ name: "Test Room" });
|
|
await app.viewRoomByNameOnOldRoomList("Test Room");
|
|
|
|
const header = page.locator(".mx_RoomHeader");
|
|
|
|
// 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();
|
|
|
|
// Memberlist button
|
|
await expect(header.locator(".mx_FacePile")).toBeVisible();
|
|
|
|
// There should be both a voice and a video call button
|
|
await expect(header.getByRole("button", { name: "Video call" })).toBeVisible();
|
|
await expect(header.getByRole("button", { name: "Voice call" })).toBeVisible();
|
|
|
|
await expect(header.getByRole("button", { name: "Threads" })).toBeVisible();
|
|
await expect(header.getByRole("button", { name: "Notifications" })).toBeVisible();
|
|
|
|
// Assert that there are eight buttons in total
|
|
await expect(header.getByRole("button")).toHaveCount(8);
|
|
|
|
await expect(header).toMatchScreenshot("room-header.png");
|
|
});
|
|
|
|
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.";
|
|
|
|
await app.client.createRoom({ name: LONG_ROOM_NAME });
|
|
await app.viewRoomByNameOnOldRoomList(LONG_ROOM_NAME);
|
|
|
|
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();
|
|
|
|
// 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
|
|
const buttons = header.getByRole("button").filter({
|
|
has: page.locator("svg"),
|
|
});
|
|
await expect(buttons).toHaveCount(5);
|
|
|
|
for (const button of await buttons.all()) {
|
|
await expect(button).toBeVisible();
|
|
await expect(button).toHaveCSS("height", "32px");
|
|
await expect(button).toHaveCSS("width", "32px");
|
|
}
|
|
|
|
await expect(header).toMatchScreenshot("room-header-long-name.png");
|
|
},
|
|
);
|
|
|
|
test("should render room header icon correctly", { tag: "@screenshot" }, async ({ page, app, user }) => {
|
|
await app.client.createRoom({ name: "Test Room", visibility: "public" as Visibility });
|
|
await app.viewRoomByNameOnOldRoomList("Test Room");
|
|
|
|
const header = page.locator(".mx_RoomHeader");
|
|
|
|
await expect(header).toMatchScreenshot("room-header-with-icon.png");
|
|
});
|
|
});
|
|
|
|
test.describe("with a video room", () => {
|
|
test.use({ labsFlags: ["feature_video_rooms"] });
|
|
|
|
const createVideoRoom = async (page: Page, app: ElementAppPage) => {
|
|
await page.locator(".mx_LeftPanel_roomListContainer").getByRole("button", { name: "Add room" }).click();
|
|
|
|
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();
|
|
|
|
await app.viewRoomByNameOnOldRoomList("Test video room");
|
|
};
|
|
|
|
test.describe("and with feature_notifications enabled", () => {
|
|
test.use({ labsFlags: ["feature_video_rooms", "feature_notifications"] });
|
|
|
|
test(
|
|
"should render buttons for chat, room info, threads and facepile",
|
|
{ tag: "@screenshot" },
|
|
async ({ page, app, user }) => {
|
|
await createVideoRoom(page, app);
|
|
|
|
// Dismiss a toast that is otherwise in the way (it's the other
|
|
// side but there's no need to have it in the screenshot)
|
|
await page.getByRole("button", { name: "Later" }).click();
|
|
|
|
const header = page.locator(".mx_RoomHeader");
|
|
|
|
// 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();
|
|
|
|
// Facepile
|
|
await expect(header.locator(".mx_FacePile")).toBeVisible();
|
|
|
|
// 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();
|
|
|
|
// Assert that there is not a button except those buttons
|
|
await expect(header.getByRole("button")).toHaveCount(7);
|
|
|
|
await expect(header).toMatchScreenshot("room-header-video-room.png");
|
|
},
|
|
);
|
|
});
|
|
|
|
test("should render a working chat button which opens the timeline on a right panel", async ({
|
|
page,
|
|
app,
|
|
user,
|
|
}) => {
|
|
await createVideoRoom(page, app);
|
|
|
|
await page.locator(".mx_RoomHeader").getByRole("button", { name: "Chat" }).click();
|
|
|
|
// Assert that the call view is still visible
|
|
await expect(page.locator(".mx_CallView")).toBeVisible();
|
|
|
|
// Assert that GELS is visible
|
|
await expect(
|
|
page.locator(".mx_RightPanel .mx_TimelineCard").getByText("Sakura created and configured the room."),
|
|
).toBeVisible();
|
|
});
|
|
});
|
|
});
|