astro/packages/integrations/cloudflare/test/test-utils.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.3 KiB
JavaScript
Raw Normal View History

import { loadFixture as baseLoadFixture } from '../../../astro/test/test-utils.js';
import { spawn } from 'child_process';
import { fileURLToPath } from 'url';
export { fixLineEndings } from '../../../astro/test/test-utils.js';
export function loadFixture(config) {
if (config?.root) {
config.root = new URL(config.root, import.meta.url);
}
return baseLoadFixture(config);
}
2022-07-27 20:17:38 +00:00
const wranglerPath = fileURLToPath(
new URL('../node_modules/wrangler/bin/wrangler.js', import.meta.url)
);
export function runCLI(basePath, { silent }) {
const script = fileURLToPath(new URL(`${basePath}/dist/_worker.js`, import.meta.url));
const p = spawn('node', [wranglerPath, 'dev', '-l', script]);
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
);
(async function () {
2022-07-27 20:17:38 +00:00
for (const msg of p.stderr) {
if (!silent) {
// eslint-disable-next-line
console.error(msg);
}
}
})();
2022-07-27 20:17:38 +00:00
for await (const msg of p.stdout) {
if (!silent) {
// eslint-disable-next-line
console.log(msg);
}
2022-07-27 20:17:38 +00:00
if (msg.includes(`Listening on`)) {
break;
}
}
clearTimeout(failed);
resolve();
});
return {
ready,
stop() {
p.kill();
2022-07-27 20:17:38 +00:00
},
};
}