207 lines
		
	
	
		
			7.0 KiB
		
	
	
	
		
			TypeScript
		
	
	
			
		
		
	
	
			207 lines
		
	
	
		
			7.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>();
 | |
| 
 | |
| const dockerConfigDir = "/etc/dendrite/";
 | |
| const dendriteConfigFile = "dendrite.yaml";
 | |
| 
 | |
| function randB64Bytes(numBytes: number): string {
 | |
|     return crypto.randomBytes(numBytes).toString("base64").replace(/=*$/, "");
 | |
| }
 | |
| 
 | |
| async function cfgDirFromTemplate(template: string, dendriteImage: string): Promise<HomeserverConfig> {
 | |
|     template = "default";
 | |
|     const templateDir = path.join(__dirname, "templates", template);
 | |
| 
 | |
|     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) !== dendriteConfigFile });
 | |
| 
 | |
|     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, dendriteConfigFile)}`);
 | |
|     let hsYaml = await fse.readFile(path.join(templateDir, dendriteConfigFile), "utf8");
 | |
|     hsYaml = hsYaml.replace(/{{REGISTRATION_SECRET}}/g, registrationSecret);
 | |
|     await fse.writeFile(path.join(tempDir, dendriteConfigFile), hsYaml);
 | |
| 
 | |
|     await dockerRun({
 | |
|         image: dendriteImage,
 | |
|         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> {
 | |
|     return containerStart(template, false);
 | |
| }
 | |
| 
 | |
| // Start a dendrite instance using pinecone routing: the template must be the name of
 | |
| // one of the templates in the cypress/plugins/dendritedocker/templates
 | |
| // directory
 | |
| async function dendritePineconeStart(template: string): Promise<HomeserverInstance> {
 | |
|     return containerStart(template, true);
 | |
| }
 | |
| 
 | |
| async function containerStart(template: string, usePinecone: boolean): Promise<HomeserverInstance> {
 | |
|     let dendriteImage = "matrixdotorg/dendrite-monolith:main";
 | |
|     let dendriteEntrypoint = "/usr/bin/dendrite-monolith-server";
 | |
|     if (usePinecone) {
 | |
|         dendriteImage = "matrixdotorg/dendrite-demo-pinecone:main";
 | |
|         dendriteEntrypoint = "/usr/bin/dendrite-demo-pinecone";
 | |
|     }
 | |
|     const denCfg = await cfgDirFromTemplate(template, dendriteImage);
 | |
| 
 | |
|     console.log(`Starting dendrite with config dir ${denCfg.configDir}...`);
 | |
| 
 | |
|     const dendriteId = await dockerRun({
 | |
|         image: dendriteImage,
 | |
|         params: [
 | |
|             "--rm",
 | |
|             "-v",
 | |
|             `${denCfg.configDir}:` + dockerConfigDir,
 | |
|             "-p",
 | |
|             `${denCfg.port}:8008/tcp`,
 | |
|             "--entrypoint",
 | |
|             dendriteEntrypoint,
 | |
|         ],
 | |
|         containerName: `react-sdk-cypress-dendrite`,
 | |
|         cmd: ["--config", dockerConfigDir + dendriteConfigFile, "--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;
 | |
| }
 | |
| 
 | |
| async function dendritePineconeStop(id: string): Promise<void> {
 | |
|     return dendriteStop(id);
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * @type {Cypress.PluginConfig}
 | |
|  */
 | |
| export function dendriteDocker(on: PluginEvents, config: PluginConfigOptions) {
 | |
|     on("task", {
 | |
|         dendriteStart,
 | |
|         dendriteStop,
 | |
|         dendritePineconeStart,
 | |
|         dendritePineconeStop,
 | |
|     });
 | |
| 
 | |
|     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"));
 | |
|     });
 | |
| }
 |