mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 22:14:58 +08:00
79033eb034
* Minimum hacks required to run cypress tests with dendrite * Remove wget hack since dendrite containers now have curl * Add basic dendritedocker plugin & hack into login spec for testing * Add generic HomeserverInstance interface * Add env var to configure which homeserver to use * Remove synapse specific homeserver support api * Update the rest of the tests to use HomeserverInstance * Update cypress docs to reference new homeserver abstraction * Fix formatting issues * Change dendrite to use main branch container
182 lines
6.0 KiB
TypeScript
182 lines
6.0 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.
|
|
*/
|
|
|
|
/// <reference types="cypress" />
|
|
|
|
import * as path from "path";
|
|
import * as os from "os";
|
|
import * as crypto from "crypto";
|
|
import * as fse from "fs-extra";
|
|
|
|
import PluginEvents = Cypress.PluginEvents;
|
|
import PluginConfigOptions = Cypress.PluginConfigOptions;
|
|
import { getFreePort } from "../utils/port";
|
|
import { dockerExec, dockerLogs, dockerRun, dockerStop } from "../docker";
|
|
import { HomeserverConfig, HomeserverInstance } from "../utils/homeserver";
|
|
|
|
// A cypress plugins to add command to start & stop dendrites in
|
|
// docker with preset templates.
|
|
|
|
const dendrites = new Map<string, HomeserverInstance>();
|
|
|
|
function randB64Bytes(numBytes: number): string {
|
|
return crypto.randomBytes(numBytes).toString("base64").replace(/=*$/, "");
|
|
}
|
|
|
|
async function cfgDirFromTemplate(template: string): Promise<HomeserverConfig> {
|
|
template = "default";
|
|
const templateDir = path.join(__dirname, "templates", template);
|
|
const configFile = "dendrite.yaml";
|
|
|
|
const stats = await fse.stat(templateDir);
|
|
if (!stats?.isDirectory) {
|
|
throw new Error(`No such template: ${template}`);
|
|
}
|
|
const tempDir = await fse.mkdtemp(path.join(os.tmpdir(), "react-sdk-dendritedocker-"));
|
|
|
|
// copy the contents of the template dir, omitting homeserver.yaml as we'll template that
|
|
console.log(`Copy ${templateDir} -> ${tempDir}`);
|
|
await fse.copy(templateDir, tempDir, { filter: (f) => path.basename(f) !== configFile });
|
|
|
|
const registrationSecret = randB64Bytes(16);
|
|
|
|
const port = await getFreePort();
|
|
const baseUrl = `http://localhost:${port}`;
|
|
|
|
// now copy homeserver.yaml, applying substitutions
|
|
console.log(`Gen ${path.join(templateDir, configFile)}`);
|
|
let hsYaml = await fse.readFile(path.join(templateDir, configFile), "utf8");
|
|
hsYaml = hsYaml.replace(/{{REGISTRATION_SECRET}}/g, registrationSecret);
|
|
await fse.writeFile(path.join(tempDir, configFile), hsYaml);
|
|
|
|
await dockerRun({
|
|
image: "matrixdotorg/dendrite-monolith:main",
|
|
params: ["--rm", "--entrypoint=", "-v", `${tempDir}:/mnt`],
|
|
containerName: `react-sdk-cypress-dendrite-keygen`,
|
|
cmd: ["/usr/bin/generate-keys", "-private-key", "/mnt/matrix_key.pem"],
|
|
});
|
|
|
|
return {
|
|
port,
|
|
baseUrl,
|
|
configDir: tempDir,
|
|
registrationSecret,
|
|
};
|
|
}
|
|
|
|
// Start a dendrite instance: the template must be the name of
|
|
// one of the templates in the cypress/plugins/dendritedocker/templates
|
|
// directory
|
|
async function dendriteStart(template: string): Promise<HomeserverInstance> {
|
|
const denCfg = await cfgDirFromTemplate(template);
|
|
|
|
console.log(`Starting dendrite with config dir ${denCfg.configDir}...`);
|
|
|
|
const dendriteId = await dockerRun({
|
|
image: "matrixdotorg/dendrite-monolith:main",
|
|
params: [
|
|
"--rm",
|
|
"-v",
|
|
`${denCfg.configDir}:/etc/dendrite`,
|
|
"-p",
|
|
`${denCfg.port}:8008/tcp`,
|
|
"--entrypoint",
|
|
"/usr/bin/dendrite-monolith-server",
|
|
],
|
|
containerName: `react-sdk-cypress-dendrite`,
|
|
cmd: ["--really-enable-open-registration", "true", "run"],
|
|
});
|
|
|
|
console.log(`Started dendrite with id ${dendriteId} on port ${denCfg.port}.`);
|
|
|
|
// Await Dendrite healthcheck
|
|
await dockerExec({
|
|
containerId: dendriteId,
|
|
params: [
|
|
"curl",
|
|
"--connect-timeout",
|
|
"30",
|
|
"--retry",
|
|
"30",
|
|
"--retry-delay",
|
|
"1",
|
|
"--retry-all-errors",
|
|
"--silent",
|
|
"http://localhost:8008/_matrix/client/versions",
|
|
],
|
|
});
|
|
|
|
const dendrite: HomeserverInstance = { serverId: dendriteId, ...denCfg };
|
|
dendrites.set(dendriteId, dendrite);
|
|
return dendrite;
|
|
}
|
|
|
|
async function dendriteStop(id: string): Promise<void> {
|
|
const denCfg = dendrites.get(id);
|
|
|
|
if (!denCfg) throw new Error("Unknown dendrite ID");
|
|
|
|
const dendriteLogsPath = path.join("cypress", "dendritelogs", id);
|
|
await fse.ensureDir(dendriteLogsPath);
|
|
|
|
await dockerLogs({
|
|
containerId: id,
|
|
stdoutFile: path.join(dendriteLogsPath, "stdout.log"),
|
|
stderrFile: path.join(dendriteLogsPath, "stderr.log"),
|
|
});
|
|
|
|
await dockerStop({
|
|
containerId: id,
|
|
});
|
|
|
|
await fse.remove(denCfg.configDir);
|
|
|
|
dendrites.delete(id);
|
|
|
|
console.log(`Stopped dendrite id ${id}.`);
|
|
// cypress deliberately fails if you return 'undefined', so
|
|
// return null to signal all is well, and we've handled the task.
|
|
return null;
|
|
}
|
|
|
|
/**
|
|
* @type {Cypress.PluginConfig}
|
|
*/
|
|
export function dendriteDocker(on: PluginEvents, config: PluginConfigOptions) {
|
|
on("task", {
|
|
dendriteStart,
|
|
dendriteStop,
|
|
});
|
|
|
|
on("after:spec", async (spec) => {
|
|
// Cleans up any remaining dendrite instances after a spec run
|
|
// This is on the theory that we should avoid re-using dendrite
|
|
// instances between spec runs: they should be cheap enough to
|
|
// start that we can have a separate one for each spec run or even
|
|
// test. If we accidentally re-use dendrites, we could inadvertently
|
|
// make our tests depend on each other.
|
|
for (const denId of dendrites.keys()) {
|
|
console.warn(`Cleaning up dendrite ID ${denId} after ${spec.name}`);
|
|
await dendriteStop(denId);
|
|
}
|
|
});
|
|
|
|
on("before:run", async () => {
|
|
// tidy up old dendrite log files before each run
|
|
await fse.emptyDir(path.join("cypress", "dendritelogs"));
|
|
});
|
|
}
|