mirror of
https://github.com/directus/directus.git
synced 2026-01-30 21:08:01 -05:00
* Refactor e2e tests * Only install root dependencies for lint step * Fix dumbest error ever * Pass process.env too to spawned subprocess * Suppress npm package installation prompt * Improve error handling * Add new compose file for tests * Avoid port conflict with remoted * Update docker-compose.yml * Add test docs * Use current branch workflow files and simplify skips * Fix workflow file * Fix workflow file * Try adding `.yml` extension to allow reference in `uses` * Place workflow file in folders to allow reference in `uses` * Requires more work than expected, reverting * Update docs to use correct compose file * Remove comment / unused code * Run tests from main Co-authored-by: ian <licitdev@gmail.com> Co-authored-by: Jay Cammarano <jay.cammarano@gmail.com> Co-authored-by: rijkvanzanten <rijkvanzanten@me.com>
66 lines
1.8 KiB
TypeScript
66 lines
1.8 KiB
TypeScript
/* eslint-disable no-console */
|
|
|
|
import knex from 'knex';
|
|
import Listr from 'listr';
|
|
import vendors from '../get-dbs-to-test';
|
|
import config from '../config';
|
|
import global from './global';
|
|
import { spawn, spawnSync } from 'child_process';
|
|
import { sleep } from './utils/sleep';
|
|
|
|
let started = false;
|
|
|
|
export default async (): Promise<void> => {
|
|
if (started) return;
|
|
started = true;
|
|
|
|
console.log('\n\n');
|
|
|
|
console.log(`👮♀️ Starting tests!\n`);
|
|
|
|
await new Listr([
|
|
{
|
|
title: 'Bootstrap databases and start servers',
|
|
task: async () => {
|
|
return new Listr(
|
|
vendors.map((vendor) => {
|
|
return {
|
|
title: config.names[vendor]!,
|
|
task: async () => {
|
|
const database = knex(config.knexConfig[vendor]!);
|
|
const bootstrap = spawnSync('node', ['api/cli', 'bootstrap'], { env: config.envs[vendor] });
|
|
if (bootstrap.stderr.length > 0) {
|
|
throw new Error(`Directus-${vendor} bootstrap failed: \n ${bootstrap.stderr.toString()}`);
|
|
}
|
|
await database.migrate.latest();
|
|
await database.seed.run();
|
|
await database.destroy();
|
|
const server = spawn('node', ['api/cli', 'start'], { env: config.envs[vendor] });
|
|
global.directus[vendor] = server;
|
|
let serverOutput = '';
|
|
server.stdout.on('data', (data) => (serverOutput += data.toString()));
|
|
server.on('exit', (code) => {
|
|
if (code !== null) throw new Error(`Directus-${vendor} server failed: \n ${serverOutput}`);
|
|
});
|
|
// Give the server some time to start
|
|
await sleep(5000);
|
|
server.on('exit', () => undefined);
|
|
},
|
|
};
|
|
}),
|
|
{ concurrent: true }
|
|
);
|
|
},
|
|
},
|
|
])
|
|
.run()
|
|
.catch((reason) => {
|
|
for (const server of Object.values(global.directus)) {
|
|
server?.kill();
|
|
}
|
|
throw new Error(reason);
|
|
});
|
|
|
|
console.log('\n');
|
|
};
|