2023-11-22 12:49:51 +01:00
|
|
|
/*
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2023-12-04 12:02:48 +01:00
|
|
|
import { test as base, expect as baseExpect, Locator, Page, ExpectMatcherState, ElementHandle } from "@playwright/test";
|
2023-11-23 10:09:32 +01:00
|
|
|
import AxeBuilder from "@axe-core/playwright";
|
2023-11-23 11:27:11 +01:00
|
|
|
import _ from "lodash";
|
2023-12-14 14:49:35 +01:00
|
|
|
import { basename } from "node:path";
|
2023-11-22 12:49:51 +01:00
|
|
|
|
2023-11-23 10:09:32 +01:00
|
|
|
import type mailhog from "mailhog";
|
|
|
|
import type { IConfigOptions } from "../src/IConfigOptions";
|
2023-11-27 15:40:45 +01:00
|
|
|
import { Credentials, Homeserver, HomeserverInstance, StartHomeserverOpts } from "./plugins/homeserver";
|
|
|
|
import { Synapse } from "./plugins/homeserver/synapse";
|
|
|
|
import { Dendrite, Pinecone } from "./plugins/homeserver/dendrite";
|
2024-02-19 18:26:32 +01:00
|
|
|
import { Instance, MailHogServer } from "./plugins/mailhog";
|
2023-11-27 13:11:00 +01:00
|
|
|
import { ElementAppPage } from "./pages/ElementAppPage";
|
2023-11-23 11:27:11 +01:00
|
|
|
import { OAuthServer } from "./plugins/oauth_server";
|
2023-11-28 13:08:05 +01:00
|
|
|
import { Crypto } from "./pages/crypto";
|
2023-11-27 11:00:16 +01:00
|
|
|
import { Toasts } from "./pages/toasts";
|
2023-11-29 17:39:27 +01:00
|
|
|
import { Bot, CreateBotOpts } from "./pages/bot";
|
2023-12-16 11:01:26 +01:00
|
|
|
import { ProxyInstance, SlidingSyncProxy } from "./plugins/sliding-sync-proxy";
|
2023-12-04 13:01:06 +01:00
|
|
|
import { Webserver } from "./plugins/webserver";
|
2023-11-22 12:49:51 +01:00
|
|
|
|
2023-11-23 10:09:32 +01:00
|
|
|
const CONFIG_JSON: Partial<IConfigOptions> = {
|
2023-11-22 12:49:51 +01:00
|
|
|
// This is deliberately quite a minimal config.json, so that we can test that the default settings
|
|
|
|
// actually work.
|
|
|
|
//
|
|
|
|
// The only thing that we really *need* (otherwise Element refuses to load) is a default homeserver.
|
|
|
|
// We point that to a guaranteed-invalid domain.
|
|
|
|
default_server_config: {
|
|
|
|
"m.homeserver": {
|
|
|
|
base_url: "https://server.invalid",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2023-12-09 19:38:01 +01:00
|
|
|
// The default language is set here for test consistency
|
|
|
|
setting_defaults: {
|
|
|
|
language: "en-GB",
|
|
|
|
},
|
|
|
|
|
2023-11-22 12:49:51 +01:00
|
|
|
// the location tests want a map style url.
|
|
|
|
map_style_url: "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx",
|
2024-04-08 10:43:59 +02:00
|
|
|
|
|
|
|
features: {
|
|
|
|
// We don't want to go through the feature announcement during the e2e test
|
|
|
|
feature_release_announcement: false,
|
|
|
|
},
|
2023-11-22 12:49:51 +01:00
|
|
|
};
|
|
|
|
|
2023-11-22 14:20:58 +01:00
|
|
|
export type TestOptions = {
|
2023-11-28 13:08:05 +01:00
|
|
|
cryptoBackend: "legacy" | "rust";
|
2023-11-22 14:20:58 +01:00
|
|
|
};
|
|
|
|
|
2023-11-29 23:46:51 +01:00
|
|
|
interface CredentialsWithDisplayName extends Credentials {
|
|
|
|
displayName: string;
|
|
|
|
}
|
|
|
|
|
2023-11-22 14:20:58 +01:00
|
|
|
export const test = base.extend<
|
|
|
|
TestOptions & {
|
2023-11-23 10:09:32 +01:00
|
|
|
axe: AxeBuilder;
|
|
|
|
checkA11y: () => Promise<void>;
|
2024-04-03 12:02:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The contents of the config.json to send when the client requests it.
|
|
|
|
*/
|
2023-11-22 14:20:58 +01:00
|
|
|
config: typeof CONFIG_JSON;
|
2024-04-03 12:02:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The options with which to run the {@link #homeserver} fixture.
|
|
|
|
*/
|
2023-11-22 14:20:58 +01:00
|
|
|
startHomeserverOpts: StartHomeserverOpts | string;
|
2024-04-03 12:02:41 +02:00
|
|
|
|
2023-11-22 14:20:58 +01:00
|
|
|
homeserver: HomeserverInstance;
|
2023-11-23 11:27:11 +01:00
|
|
|
oAuthServer: { port: number };
|
2024-04-03 12:02:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The displayname to use for the user registered in {@link #credentials}.
|
|
|
|
*
|
|
|
|
* To set it, call `test.use({ displayName: "myDisplayName" })` in the test file or `describe` block.
|
|
|
|
* See {@link https://playwright.dev/docs/api/class-test#test-use}.
|
|
|
|
*/
|
|
|
|
displayName?: string;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A test fixture which registers a test user on the {@link #homeserver} and supplies the details
|
|
|
|
* of the registered user.
|
|
|
|
*/
|
2023-11-29 23:46:51 +01:00
|
|
|
credentials: CredentialsWithDisplayName;
|
2024-01-17 08:14:49 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The same as {@link https://playwright.dev/docs/api/class-fixtures#fixtures-page|`page`},
|
|
|
|
* but adds an initScript which will populate localStorage with the user's details from
|
|
|
|
* {@link #credentials} and {@link #homeserver}.
|
|
|
|
*
|
|
|
|
* Similar to {@link #user}, but doesn't load the app.
|
|
|
|
*/
|
|
|
|
pageWithCredentials: Page;
|
|
|
|
|
2024-04-03 12:02:41 +02:00
|
|
|
/**
|
|
|
|
* A (rather poorly-named) test fixture which registers a user per {@link #credentials}, stores
|
|
|
|
* the credentials into localStorage per {@link #homeserver}, and then loads the front page of the
|
|
|
|
* app.
|
|
|
|
*/
|
2023-11-29 23:46:51 +01:00
|
|
|
user: CredentialsWithDisplayName;
|
2024-04-03 12:02:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The same as {@link https://playwright.dev/docs/api/class-fixtures#fixtures-page|`page`},
|
|
|
|
* but wraps the returned `Page` in a class of utilities for interacting with the Element-Web UI,
|
|
|
|
* {@link ElementAppPage}.
|
|
|
|
*/
|
2023-11-27 13:11:00 +01:00
|
|
|
app: ElementAppPage;
|
2024-04-03 12:02:41 +02:00
|
|
|
|
2024-02-19 18:26:32 +01:00
|
|
|
mailhog: { api: mailhog.API; instance: Instance };
|
2023-11-28 13:08:05 +01:00
|
|
|
crypto: Crypto;
|
2023-11-28 14:52:09 +01:00
|
|
|
room?: { roomId: string };
|
2023-11-27 11:00:16 +01:00
|
|
|
toasts: Toasts;
|
2023-11-29 14:50:13 +01:00
|
|
|
uut?: Locator; // Unit Under Test, useful place to refer a prepared locator
|
2023-11-29 17:39:27 +01:00
|
|
|
botCreateOpts: CreateBotOpts;
|
|
|
|
bot: Bot;
|
2023-12-16 11:01:26 +01:00
|
|
|
slidingSyncProxy: ProxyInstance;
|
2023-12-12 15:08:36 +01:00
|
|
|
labsFlags: string[];
|
2023-12-04 13:01:06 +01:00
|
|
|
webserver: Webserver;
|
2023-11-22 14:20:58 +01:00
|
|
|
}
|
|
|
|
>({
|
2023-11-28 13:08:05 +01:00
|
|
|
cryptoBackend: ["legacy", { option: true }],
|
2023-11-22 14:20:58 +01:00
|
|
|
config: CONFIG_JSON,
|
2023-12-12 15:08:36 +01:00
|
|
|
page: async ({ context, page, config, cryptoBackend, labsFlags }, use) => {
|
2023-11-22 12:49:51 +01:00
|
|
|
await context.route(`http://localhost:8080/config.json*`, async (route) => {
|
2023-11-23 11:27:11 +01:00
|
|
|
const json = { ...CONFIG_JSON, ...config };
|
2023-12-12 15:08:36 +01:00
|
|
|
json["features"] = {
|
|
|
|
...json["features"],
|
|
|
|
// Enable the lab features
|
|
|
|
...labsFlags.reduce((obj, flag) => {
|
|
|
|
obj[flag] = true;
|
|
|
|
return obj;
|
|
|
|
}, {}),
|
|
|
|
};
|
2024-02-02 13:20:13 +01:00
|
|
|
// the default is to use rust now, so set to `false` if on legacy backend
|
|
|
|
if (cryptoBackend === "legacy") {
|
|
|
|
json.features.feature_rust_crypto = false;
|
2023-11-22 14:20:58 +01:00
|
|
|
}
|
|
|
|
await route.fulfill({ json });
|
2023-11-22 12:49:51 +01:00
|
|
|
});
|
|
|
|
await use(page);
|
|
|
|
},
|
|
|
|
|
|
|
|
startHomeserverOpts: "default",
|
2023-12-14 14:49:35 +01:00
|
|
|
homeserver: async ({ request, startHomeserverOpts: opts }, use, testInfo) => {
|
2023-11-22 12:49:51 +01:00
|
|
|
if (typeof opts === "string") {
|
|
|
|
opts = { template: opts };
|
|
|
|
}
|
|
|
|
|
2023-11-27 15:40:45 +01:00
|
|
|
let server: Homeserver;
|
|
|
|
const homeserverName = process.env["PLAYWRIGHT_HOMESERVER"];
|
|
|
|
switch (homeserverName) {
|
|
|
|
case "dendrite":
|
|
|
|
server = new Dendrite(request);
|
|
|
|
break;
|
|
|
|
case "pinecone":
|
|
|
|
server = new Pinecone(request);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
server = new Synapse(request);
|
|
|
|
}
|
|
|
|
|
2023-11-22 12:49:51 +01:00
|
|
|
await use(await server.start(opts));
|
2023-12-14 14:49:35 +01:00
|
|
|
const logs = await server.stop();
|
|
|
|
|
|
|
|
if (testInfo.status !== "passed") {
|
|
|
|
for (const path of logs) {
|
|
|
|
await testInfo.attach(`homeserver-${basename(path)}`, {
|
|
|
|
path,
|
|
|
|
contentType: "text/plain",
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2023-11-22 12:49:51 +01:00
|
|
|
},
|
2023-11-23 11:27:11 +01:00
|
|
|
// eslint-disable-next-line no-empty-pattern
|
|
|
|
oAuthServer: async ({}, use) => {
|
|
|
|
const server = new OAuthServer();
|
|
|
|
const port = server.start();
|
|
|
|
await use({ port });
|
|
|
|
server.stop();
|
|
|
|
},
|
|
|
|
|
|
|
|
displayName: undefined,
|
2023-11-29 23:46:51 +01:00
|
|
|
credentials: async ({ homeserver, displayName: testDisplayName }, use) => {
|
2023-11-23 11:27:11 +01:00
|
|
|
const names = ["Alice", "Bob", "Charlie", "Daniel", "Eve", "Frank", "Grace", "Hannah", "Isaac", "Judy"];
|
|
|
|
const password = _.uniqueId("password_");
|
|
|
|
const displayName = testDisplayName ?? _.sample(names)!;
|
|
|
|
|
2023-12-07 11:32:23 +01:00
|
|
|
const credentials = await homeserver.registerUser("user", password, displayName);
|
|
|
|
console.log(`Registered test user @user:localhost with displayname ${displayName}`);
|
2023-11-23 11:27:11 +01:00
|
|
|
|
2023-11-29 23:46:51 +01:00
|
|
|
await use({
|
|
|
|
...credentials,
|
|
|
|
displayName,
|
|
|
|
});
|
|
|
|
},
|
2023-12-12 15:08:36 +01:00
|
|
|
labsFlags: [],
|
2024-01-17 08:14:49 +01:00
|
|
|
|
|
|
|
pageWithCredentials: async ({ page, homeserver, credentials }, use) => {
|
2023-11-23 11:27:11 +01:00
|
|
|
await page.addInitScript(
|
|
|
|
({ baseUrl, credentials }) => {
|
|
|
|
// Seed the localStorage with the required credentials
|
|
|
|
window.localStorage.setItem("mx_hs_url", baseUrl);
|
|
|
|
window.localStorage.setItem("mx_user_id", credentials.userId);
|
|
|
|
window.localStorage.setItem("mx_access_token", credentials.accessToken);
|
|
|
|
window.localStorage.setItem("mx_device_id", credentials.deviceId);
|
|
|
|
window.localStorage.setItem("mx_is_guest", "false");
|
|
|
|
window.localStorage.setItem("mx_has_pickle_key", "false");
|
|
|
|
window.localStorage.setItem("mx_has_access_token", "true");
|
|
|
|
|
|
|
|
// Ensure the language is set to a consistent value
|
|
|
|
window.localStorage.setItem("mx_local_settings", '{"language":"en"}');
|
|
|
|
},
|
|
|
|
{ baseUrl: homeserver.config.baseUrl, credentials },
|
|
|
|
);
|
2024-01-17 08:14:49 +01:00
|
|
|
await use(page);
|
|
|
|
},
|
|
|
|
|
|
|
|
user: async ({ pageWithCredentials: page, credentials }, use) => {
|
2023-11-23 11:27:11 +01:00
|
|
|
await page.goto("/");
|
|
|
|
await page.waitForSelector(".mx_MatrixChat", { timeout: 30000 });
|
2023-11-28 12:02:50 +01:00
|
|
|
await use(credentials);
|
2023-11-23 11:27:11 +01:00
|
|
|
},
|
2023-11-23 10:09:32 +01:00
|
|
|
|
|
|
|
axe: async ({ page }, use) => {
|
|
|
|
await use(new AxeBuilder({ page }));
|
|
|
|
},
|
|
|
|
checkA11y: async ({ axe }, use, testInfo) =>
|
|
|
|
use(async () => {
|
|
|
|
const results = await axe.analyze();
|
|
|
|
|
|
|
|
await testInfo.attach("accessibility-scan-results", {
|
|
|
|
body: JSON.stringify(results, null, 2),
|
|
|
|
contentType: "application/json",
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(results.violations).toEqual([]);
|
|
|
|
}),
|
2023-11-27 11:00:16 +01:00
|
|
|
|
2023-11-27 13:11:00 +01:00
|
|
|
app: async ({ page }, use) => {
|
2023-11-30 11:18:18 +01:00
|
|
|
const app = new ElementAppPage(page);
|
|
|
|
await use(app);
|
2023-11-27 13:11:00 +01:00
|
|
|
},
|
2023-11-28 13:08:05 +01:00
|
|
|
crypto: async ({ page, homeserver, request }, use) => {
|
|
|
|
await use(new Crypto(page, homeserver, request));
|
|
|
|
},
|
2023-11-27 11:00:16 +01:00
|
|
|
toasts: async ({ page }, use) => {
|
|
|
|
await use(new Toasts(page));
|
|
|
|
},
|
2023-11-29 17:39:27 +01:00
|
|
|
|
|
|
|
botCreateOpts: {},
|
2023-12-12 09:55:29 +01:00
|
|
|
bot: async ({ page, homeserver, botCreateOpts, user }, use) => {
|
2023-11-29 17:39:27 +01:00
|
|
|
const bot = new Bot(page, homeserver, botCreateOpts);
|
2023-11-30 11:18:18 +01:00
|
|
|
await bot.prepareClient(); // eagerly register the bot
|
2023-11-29 17:39:27 +01:00
|
|
|
await use(bot);
|
|
|
|
},
|
2023-12-04 13:01:06 +01:00
|
|
|
|
2024-02-19 18:26:32 +01:00
|
|
|
// eslint-disable-next-line no-empty-pattern
|
|
|
|
mailhog: async ({}, use) => {
|
|
|
|
const mailhog = new MailHogServer();
|
|
|
|
const instance = await mailhog.start();
|
|
|
|
await use(instance);
|
|
|
|
await mailhog.stop();
|
|
|
|
},
|
|
|
|
|
2023-12-16 11:01:26 +01:00
|
|
|
slidingSyncProxy: async ({ page, user, homeserver }, use) => {
|
|
|
|
const proxy = new SlidingSyncProxy(homeserver.config.dockerUrl);
|
|
|
|
const proxyInstance = await proxy.start();
|
|
|
|
const proxyAddress = `http://localhost:${proxyInstance.port}`;
|
|
|
|
await page.addInitScript((proxyAddress) => {
|
|
|
|
window.localStorage.setItem(
|
|
|
|
"mx_local_settings",
|
|
|
|
JSON.stringify({
|
|
|
|
feature_sliding_sync_proxy_url: proxyAddress,
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
window.localStorage.setItem("mx_labs_feature_feature_sliding_sync", "true");
|
|
|
|
}, proxyAddress);
|
|
|
|
await page.goto("/");
|
|
|
|
await page.waitForSelector(".mx_MatrixChat", { timeout: 30000 });
|
|
|
|
await use(proxyInstance);
|
|
|
|
await proxy.stop();
|
|
|
|
},
|
|
|
|
|
2023-12-04 13:01:06 +01:00
|
|
|
// eslint-disable-next-line no-empty-pattern
|
|
|
|
webserver: async ({}, use) => {
|
|
|
|
const webserver = new Webserver();
|
|
|
|
await use(webserver);
|
|
|
|
webserver.stop();
|
|
|
|
},
|
2023-11-22 12:49:51 +01:00
|
|
|
});
|
|
|
|
|
2023-12-04 12:02:48 +01:00
|
|
|
export const expect = baseExpect.extend({
|
2023-12-11 15:36:30 +01:00
|
|
|
async toMatchScreenshot(
|
|
|
|
this: ExpectMatcherState,
|
|
|
|
receiver: Page | Locator,
|
|
|
|
name?: `${string}.png`,
|
|
|
|
options?: {
|
|
|
|
mask?: Array<Locator>;
|
|
|
|
omitBackground?: boolean;
|
|
|
|
timeout?: number;
|
|
|
|
css?: string;
|
|
|
|
},
|
|
|
|
) {
|
2023-12-04 12:02:48 +01:00
|
|
|
const page = "page" in receiver ? receiver.page() : receiver;
|
|
|
|
|
|
|
|
// We add a custom style tag before taking screenshots
|
|
|
|
const style = (await page.addStyleTag({
|
|
|
|
content: `
|
|
|
|
.mx_MessagePanel_myReadMarker {
|
|
|
|
display: none !important;
|
|
|
|
}
|
|
|
|
.mx_RoomView_MessageList {
|
|
|
|
height: auto !important;
|
|
|
|
}
|
|
|
|
.mx_DisambiguatedProfile_displayName {
|
|
|
|
color: var(--cpd-color-blue-1200) !important;
|
|
|
|
}
|
|
|
|
.mx_BaseAvatar {
|
|
|
|
background-color: var(--cpd-color-fuchsia-1200) !important;
|
|
|
|
color: white !important;
|
|
|
|
}
|
|
|
|
.mx_ReplyChain {
|
|
|
|
border-left-color: var(--cpd-color-blue-1200) !important;
|
|
|
|
}
|
2023-12-13 15:59:08 +01:00
|
|
|
/* Use monospace font for timestamp for consistent mask width */
|
|
|
|
.mx_MessageTimestamp {
|
|
|
|
font-family: Inconsolata !important;
|
|
|
|
}
|
2023-12-11 15:36:30 +01:00
|
|
|
${options?.css ?? ""}
|
2023-12-04 12:02:48 +01:00
|
|
|
`,
|
|
|
|
})) as ElementHandle<Element>;
|
|
|
|
|
2023-12-11 15:36:30 +01:00
|
|
|
await baseExpect(receiver).toHaveScreenshot(name, options);
|
2023-12-04 12:02:48 +01:00
|
|
|
|
|
|
|
await style.evaluate((tag) => tag.remove());
|
|
|
|
return { pass: true, message: () => "", name: "toMatchScreenshot" };
|
|
|
|
},
|
|
|
|
});
|