angular/aio/scripts/run-with-local-server.mjs
2022-11-22 13:51:16 -07:00

63 lines
1.7 KiB
JavaScript

import getPort from 'get-port';
import path from 'node:path';
import sh from 'shelljs';
import treeKill from 'tree-kill';
const RUNFILES_ROOT = path.resolve(process.env.RUNFILES, 'angular');
sh.set('-e');
// Serve contents over http while running an abitrary script. This is an
// implementation for the bazel macro local_server_test.
//
// Arguments: <lightserverScript> <distDir> <testScript> [testScriptArg ...]
// lightserverScript - path light-server binary
// distDir - path to the contents to serve
// testScript - path to a script to run
// ...testScriptArg - arguments to pass to the test script. The argument LOCALHOST_URL
// will be substituted with the url of the served contents
async function main(args) {
const lightserver = path.join(RUNFILES_ROOT, args[0]);
const distDir = path.join(RUNFILES_ROOT, args[1]);
const testScript = path.join(RUNFILES_ROOT, args[2]);
const testScriptArgs = args.slice(3);
const port = await getPort();
const lightserverCmd = [
lightserver,
'--bind=localhost',
`--historyindex=${path.sep}index.html`,
'--no-reload',
'-s',
distDir,
'-p',
port,
'--quiet'
];
const lightserverProcess = sh.exec(lightserverCmd.join(' '), {async: true, silent: true});
const command = [
testScript,
...testScriptArgs
].join(' ').replace('LOCALHOST_URL', `http://localhost:${port}`);
const returnCode = sh.exec(command).code;
await killProcess(lightserverProcess);
process.exit(returnCode);
}
(async() => await main(process.argv.slice(2)))();
function killProcess(childProcess) {
return new Promise((resolve, reject) => {
treeKill(childProcess.pid, error => {
if (error) {
reject(error);
return;
}
resolve();
});
});
}