2023-07-18 00:17:59 +00:00
|
|
|
import { spawn } from 'node:child_process';
|
|
|
|
import { fileURLToPath } from 'node:url';
|
2022-07-27 15:50:48 +00:00
|
|
|
import { loadFixture as baseLoadFixture } from '../../../astro/test/test-utils.js';
|
|
|
|
|
|
|
|
export { fixLineEndings } from '../../../astro/test/test-utils.js';
|
|
|
|
|
2023-05-17 13:23:20 +00:00
|
|
|
/**
|
2023-07-17 12:30:02 +00:00
|
|
|
* @typedef {{ ready: Promise<void>, stop: Promise<void> }} WranglerCLI
|
2023-05-17 13:23:20 +00:00
|
|
|
* @typedef {import('../../../astro/test/test-utils').Fixture} Fixture
|
|
|
|
*/
|
|
|
|
|
2022-07-27 15:50:48 +00:00
|
|
|
export function loadFixture(config) {
|
|
|
|
if (config?.root) {
|
|
|
|
config.root = new URL(config.root, import.meta.url);
|
|
|
|
}
|
|
|
|
return baseLoadFixture(config);
|
|
|
|
}
|
2022-07-27 20:15:19 +00:00
|
|
|
|
2022-07-27 20:17:38 +00:00
|
|
|
const wranglerPath = fileURLToPath(
|
|
|
|
new URL('../node_modules/wrangler/bin/wrangler.js', import.meta.url)
|
|
|
|
);
|
2022-07-27 20:15:19 +00:00
|
|
|
|
2023-07-17 12:30:02 +00:00
|
|
|
/**
|
|
|
|
* @returns {WranglerCLI}
|
|
|
|
*/
|
2023-06-13 20:34:44 +00:00
|
|
|
export function runCLI(basePath, { silent, port = 8787 }) {
|
2022-07-27 20:15:19 +00:00
|
|
|
const script = fileURLToPath(new URL(`${basePath}/dist/_worker.js`, import.meta.url));
|
2023-06-13 20:34:44 +00:00
|
|
|
const p = spawn('node', [wranglerPath, 'dev', '-l', script, '--port', port]);
|
2022-07-27 20:15:19 +00:00
|
|
|
|
|
|
|
p.stderr.setEncoding('utf-8');
|
|
|
|
p.stdout.setEncoding('utf-8');
|
|
|
|
|
|
|
|
const timeout = 10000;
|
|
|
|
|
|
|
|
const ready = new Promise(async (resolve, reject) => {
|
2022-07-27 20:17:38 +00:00
|
|
|
const failed = setTimeout(
|
|
|
|
() => reject(new Error(`Timed out starting the wrangler CLI`)),
|
|
|
|
timeout
|
|
|
|
);
|
2022-07-27 20:15:19 +00:00
|
|
|
|
|
|
|
(async function () {
|
2022-07-27 20:17:38 +00:00
|
|
|
for (const msg of p.stderr) {
|
|
|
|
if (!silent) {
|
2022-07-27 20:15:19 +00:00
|
|
|
console.error(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
|
2022-07-27 20:17:38 +00:00
|
|
|
for await (const msg of p.stdout) {
|
|
|
|
if (!silent) {
|
2022-07-27 20:15:19 +00:00
|
|
|
console.log(msg);
|
|
|
|
}
|
2022-07-27 20:17:38 +00:00
|
|
|
if (msg.includes(`Listening on`)) {
|
2022-07-27 20:15:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
clearTimeout(failed);
|
|
|
|
resolve();
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
|
|
|
ready,
|
|
|
|
stop() {
|
2023-06-21 13:09:49 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
p.on('close', () => resolve());
|
|
|
|
p.on('error', (err) => reject(err));
|
|
|
|
p.kill();
|
|
|
|
});
|
2022-07-27 20:17:38 +00:00
|
|
|
},
|
|
|
|
};
|
2022-07-27 20:15:19 +00:00
|
|
|
}
|