Docker / Docker Buildx (push) Has been cancelled
Build Debian package / Build package (release) Has been cancelled
Build and Deploy / prepare (release) Has been cancelled
Deploy release / Deploy to Cloudflare Pages (release) Has been cancelled
Build and Deploy / Trigger Pro pipeline (release) Has been cancelled
Build and Deploy / Windows arm64 (release) Has been cancelled
Build and Deploy / Windows x64 (release) Has been cancelled
Build and Deploy / macOS (release) Has been cancelled
Build and Deploy / Linux amd64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / Linux arm64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (release) Has been cancelled
Build and Deploy / Deploy builds to ESS (release) Has been cancelled
62 lines
2.3 KiB
TypeScript
62 lines
2.3 KiB
TypeScript
/*
|
|
* Copyright 2024 New Vector Ltd.
|
|
* Copyright 2024 The Matrix.org Foundation C.I.C.
|
|
*
|
|
* 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 Locator } from "@playwright/test";
|
|
|
|
import { test, expect } from "../../../element-web-test";
|
|
|
|
test.describe("Roles & Permissions room settings tab", () => {
|
|
const roomName = "Test room";
|
|
|
|
test.use({
|
|
displayName: "Alice",
|
|
});
|
|
|
|
let settings: Locator;
|
|
|
|
test.beforeEach(async ({ user, app }) => {
|
|
await app.client.createRoom({ name: roomName });
|
|
await app.viewRoomByName(roomName);
|
|
settings = await app.settings.openRoomSettings("Roles & Permissions");
|
|
});
|
|
|
|
test("should be able to change the role of a user", async ({ page, app, user, axe }) => {
|
|
const privilegedUserSection = settings.locator(".mx_SettingsFieldset").first();
|
|
const applyButton = privilegedUserSection.getByRole("button", { name: "Apply" });
|
|
|
|
// Alice is admin (100) and the Apply button should be disabled
|
|
await expect(applyButton).toBeDisabled();
|
|
let combobox = privilegedUserSection.getByRole("combobox", { name: user.userId });
|
|
await expect(combobox).toHaveValue("100");
|
|
|
|
// Change the role of Alice to Moderator (50)
|
|
await combobox.selectOption("Moderator");
|
|
|
|
// Should display a modal to warn that we are demoting the only admin user
|
|
const modal = await page.locator(".mx_Dialog", {
|
|
hasText: "Warning",
|
|
});
|
|
await expect(modal).toBeVisible();
|
|
// Click on the continue button in the modal
|
|
await modal.getByRole("button", { name: "Continue" }).click();
|
|
|
|
const respPromise = page.waitForRequest("**/state/**");
|
|
await applyButton.click();
|
|
await respPromise;
|
|
await expect(combobox).toHaveValue("50");
|
|
|
|
// Reload and check Alice is still Moderator (50)
|
|
await page.reload();
|
|
settings = await app.settings.openRoomSettings("Roles & Permissions");
|
|
combobox = privilegedUserSection.getByRole("combobox", { name: user.userId });
|
|
await expect(combobox).toHaveValue("50");
|
|
|
|
await expect(axe).toHaveNoViolations();
|
|
});
|
|
});
|