You've already forked element-web
mirror of
https://github.com/element-hq/element-web.git
synced 2025-07-30 08:43:13 +03:00
Pass the freshLogin parameter along to doSetLoggedIn when restoring a session, instead of hard-coding it to always be false.
62 lines
2.6 KiB
TypeScript
62 lines
2.6 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2023 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 MailpitClient } from "@element-hq/element-web-playwright-common/lib/testcontainers";
|
|
import { type Page } from "@playwright/test";
|
|
|
|
import { expect } from "../../element-web-test";
|
|
|
|
/**
|
|
* Click through registering a new user in the MAS UI.
|
|
*/
|
|
export async function registerAccountMas(
|
|
page: Page,
|
|
mailpit: MailpitClient,
|
|
username: string,
|
|
email: string,
|
|
password: string,
|
|
): Promise<void> {
|
|
await expect(page.getByText("Please sign in to continue:")).toBeVisible();
|
|
|
|
await page.getByRole("link", { name: "Create Account" }).click();
|
|
await page.getByRole("textbox", { name: "Username" }).fill(username);
|
|
await page.getByRole("textbox", { name: "Email address" }).fill(email);
|
|
await page.getByRole("textbox", { name: "Password", exact: true }).fill(password);
|
|
await page.getByRole("textbox", { name: "Confirm Password" }).fill(password);
|
|
await page.getByRole("button", { name: "Continue" }).click();
|
|
|
|
let code: string;
|
|
await expect(async () => {
|
|
const messages = await mailpit.listMessages();
|
|
expect(messages.messages[0].To[0].Address).toEqual(email);
|
|
const text = await mailpit.renderMessageText(messages.messages[0].ID);
|
|
[, code] = text.match(/Your verification code to confirm this email address is: (\d{6})/);
|
|
}).toPass();
|
|
|
|
await page.getByRole("textbox", { name: "6-digit code" }).fill(code);
|
|
await page.getByRole("button", { name: "Continue" }).click();
|
|
await page.getByRole("textbox", { name: "Display Name" }).fill(username);
|
|
await page.getByRole("button", { name: "Continue" }).click();
|
|
await expect(page.getByText("Allow access to your account?")).toBeVisible();
|
|
await page.getByRole("button", { name: "Continue" }).click();
|
|
}
|
|
|
|
/**
|
|
* Click through entering username and password into the MAS login prompt.
|
|
*/
|
|
export async function logInAccountMas(page: Page, username: string, password: string): Promise<void> {
|
|
await expect(page.getByText("Please sign in to continue:")).toBeVisible();
|
|
|
|
await page.getByRole("textbox", { name: "Username" }).fill(username);
|
|
await page.getByRole("textbox", { name: "Password", exact: true }).fill(password);
|
|
await page.getByRole("button", { name: "Continue" }).click();
|
|
|
|
await expect(page.getByText("Allow access to your account?")).toBeVisible();
|
|
await page.getByRole("button", { name: "Continue" }).click();
|
|
}
|