f3133f22ca
* Install playwright Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add foundations for writing tests under Playwright Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * .gitignore juggling Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add tsconfig and fix eslint rules Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add docker & synapse plugins Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add login.spec.ts Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Wire up fixture which sets up ElementAppPage & bakes config.json Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove launch test, it has served its purpose Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove test which has been ported to Playwright Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Fix test not cleaning up after itself Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Move registerUser to the Homeserver interface Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove unused fixture param Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove redundant launch test Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Add newline * Run both legacy & rust crypto tests in Playwright Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Remove redundant comment Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: R Midhun Suresh <hi@midhun.dev>
79 lines
2.5 KiB
TypeScript
79 lines
2.5 KiB
TypeScript
/*
|
|
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.
|
|
*/
|
|
|
|
import { test as base } from "@playwright/test";
|
|
|
|
import { HomeserverInstance, StartHomeserverOpts } from "./plugins/utils/homeserver";
|
|
import { Synapse } from "./plugins/synapse";
|
|
|
|
const CONFIG_JSON = {
|
|
// 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",
|
|
},
|
|
},
|
|
|
|
// the location tests want a map style url.
|
|
map_style_url: "https://api.maptiler.com/maps/streets/style.json?key=fU3vlMsMn4Jb6dnEIFsx",
|
|
};
|
|
|
|
export type TestOptions = {
|
|
crypto: "legacy" | "rust";
|
|
};
|
|
|
|
export const test = base.extend<
|
|
TestOptions & {
|
|
config: typeof CONFIG_JSON;
|
|
startHomeserverOpts: StartHomeserverOpts | string;
|
|
homeserver: HomeserverInstance;
|
|
}
|
|
>({
|
|
crypto: ["legacy", { option: true }],
|
|
config: CONFIG_JSON,
|
|
page: async ({ context, page, config, crypto }, use) => {
|
|
await context.route(`http://localhost:8080/config.json*`, async (route) => {
|
|
const json = { ...config };
|
|
if (crypto === "rust") {
|
|
json["features"] = {
|
|
...json["features"],
|
|
feature_rust_crypto: true,
|
|
};
|
|
}
|
|
await route.fulfill({ json });
|
|
});
|
|
await use(page);
|
|
},
|
|
|
|
startHomeserverOpts: "default",
|
|
homeserver: async ({ request, startHomeserverOpts: opts }, use) => {
|
|
if (typeof opts === "string") {
|
|
opts = { template: opts };
|
|
}
|
|
|
|
const server = new Synapse(request);
|
|
await use(await server.start(opts));
|
|
await server.stop();
|
|
},
|
|
});
|
|
|
|
test.use({});
|
|
|
|
export { expect } from "@playwright/test";
|