Skip to content

Commit 6b113e4

Browse files
committed
attempt to run examples programmatically
1 parent 242b823 commit 6b113e4

File tree

2 files changed

+85
-0
lines changed

2 files changed

+85
-0
lines changed

scripts/examples/launcher.mjs

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
import { spawn } from 'child_process';
2+
3+
function startProcess(command, args = [], successMessage = '', cwd = process.cwd()) {
4+
return new Promise((resolve, reject) => {
5+
console.log(`Starting process: ${command} ${args.join(' ')} in ${cwd}`);
6+
const processInstance = spawn(command, args, {
7+
stdio: ['pipe', 'pipe', 'inherit'],
8+
shell: true,
9+
cwd,
10+
});
11+
12+
processInstance.stdout.on('data', (data) => {
13+
const output = data.toString();
14+
console.log(output);
15+
if (successMessage && output.includes(successMessage)) {
16+
console.log('Process launched successfully.');
17+
resolve(processInstance);
18+
}
19+
});
20+
21+
processInstance.on('error', (error) => {
22+
console.error('Error starting process:', error);
23+
reject(error);
24+
});
25+
26+
processInstance.on('close', (code) => {
27+
console.log(`Process exited with code ${code}`);
28+
reject(new Error(`Process exited unexpectedly with code ${code}`));
29+
});
30+
});
31+
}
32+
33+
function stopProcess(processInstance) {
34+
return new Promise((resolve, reject) => {
35+
if (!processInstance) {
36+
console.log('No process is running.');
37+
return reject(new Error('No process is running.'));
38+
}
39+
40+
console.log('Stopping process...');
41+
// processInstance.kill('SIGINT');
42+
processInstance.kill('SIGKILL');
43+
resolve();
44+
});
45+
}
46+
47+
process.on('SIGINT', async () => {
48+
console.log('\nCaught interrupt signal.');
49+
process.exit();
50+
});
51+
52+
process.on('SIGTERM', async () => {
53+
console.log('\nReceived termination signal.');
54+
process.exit();
55+
});
56+
57+
export { startProcess, stopProcess };

scripts/examples/run.mjs

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
/**
2+
* Script to programmatically run all examples.
3+
* Not used now as it's tricky to start/stop app servers programmatically.
4+
*/
5+
import { execSync } from 'child_process';
6+
import { startProcess, stopProcess } from './launcher.mjs';
7+
8+
runNextjsPlaywright();
9+
10+
async function runNextjsPlaywright() {
11+
const cwd = 'examples/nextjs-playwright';
12+
const app = await startProcess('npm', ['run', 'dev'], 'Ready in', cwd);
13+
try {
14+
execSync('npm test', { stdio: 'inherit', cwd });
15+
} finally {
16+
await stopProcess(app);
17+
}
18+
}
19+
20+
// cd examples/nextjs-playwright
21+
// npm t
22+
23+
// cd ../astro-cypress
24+
25+
// rm -rf examples/node_modules/request-mocking-protocol
26+
// mkdir -p examples/node_modules/request-mocking-protocol
27+
// cp -R ./dist examples/node_modules/request-mocking-protocol/
28+
// cp ./package.json examples/node_modules/request-mocking-protocol/package.json

0 commit comments

Comments
 (0)