mirror of
https://github.com/getpaseo/paseo.git
synced 2026-07-29 12:01:31 +00:00
* Move local speech work out of daemon Run local speech models in a lazily spawned worker so native model memory and blocking synthesis/transcription work stay out of the daemon process. The worker exits after idle time so local speech RSS can be reclaimed. * Update supervisor stop test for process title
240 lines
7.8 KiB
TypeScript
240 lines
7.8 KiB
TypeScript
#!/usr/bin/env npx tsx
|
|
|
|
/**
|
|
* Regression: `paseo daemon stop` must stop supervised dev daemons
|
|
* without allowing the supervisor entrypoint to respawn a new worker process.
|
|
*/
|
|
|
|
import assert from "node:assert";
|
|
import { spawn, type ChildProcess } from "node:child_process";
|
|
import { mkdtemp, readFile, rm } from "node:fs/promises";
|
|
import { tmpdir } from "node:os";
|
|
import { join } from "node:path";
|
|
import { $ } from "zx";
|
|
import { getAvailablePort } from "./helpers/network.ts";
|
|
|
|
$.verbose = false;
|
|
|
|
const pollIntervalMs = 100;
|
|
const testEnv = {
|
|
PASEO_LOCAL_SPEECH_AUTO_DOWNLOAD: process.env.PASEO_LOCAL_SPEECH_AUTO_DOWNLOAD ?? "0",
|
|
PASEO_DICTATION_ENABLED: process.env.PASEO_DICTATION_ENABLED ?? "0",
|
|
PASEO_VOICE_MODE_ENABLED: process.env.PASEO_VOICE_MODE_ENABLED ?? "0",
|
|
};
|
|
|
|
function sleep(ms: number): Promise<void> {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|
|
|
|
function isProcessRunning(pid: number): boolean {
|
|
if (!Number.isInteger(pid) || pid <= 0) {
|
|
return false;
|
|
}
|
|
|
|
try {
|
|
process.kill(pid, 0);
|
|
return true;
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
interface PidLockState {
|
|
pid: number | null;
|
|
}
|
|
|
|
async function readPidLockState(paseoHome: string): Promise<PidLockState> {
|
|
const pidPath = join(paseoHome, "paseo.pid");
|
|
|
|
try {
|
|
const content = await readFile(pidPath, "utf-8");
|
|
const parsed = JSON.parse(content) as { pid?: unknown };
|
|
const pid =
|
|
typeof parsed.pid === "number" && Number.isInteger(parsed.pid) && parsed.pid > 0
|
|
? parsed.pid
|
|
: null;
|
|
return { pid };
|
|
} catch {
|
|
return { pid: null };
|
|
}
|
|
}
|
|
|
|
interface DaemonStatus {
|
|
localDaemon: string | null;
|
|
pid: number | null;
|
|
}
|
|
|
|
async function readDaemonStatus(paseoHome: string): Promise<DaemonStatus> {
|
|
const result =
|
|
await $`PASEO_HOME=${paseoHome} PASEO_LOCAL_SPEECH_AUTO_DOWNLOAD=${testEnv.PASEO_LOCAL_SPEECH_AUTO_DOWNLOAD} PASEO_DICTATION_ENABLED=${testEnv.PASEO_DICTATION_ENABLED} PASEO_VOICE_MODE_ENABLED=${testEnv.PASEO_VOICE_MODE_ENABLED} npx paseo daemon status --home ${paseoHome} --json`.nothrow();
|
|
if (result.exitCode !== 0) {
|
|
return { localDaemon: null, pid: null };
|
|
}
|
|
|
|
try {
|
|
const parsed = JSON.parse(result.stdout) as { localDaemon?: unknown; pid?: unknown };
|
|
const localDaemon = typeof parsed.localDaemon === "string" ? parsed.localDaemon : null;
|
|
const pid =
|
|
typeof parsed.pid === "number" && Number.isInteger(parsed.pid) && parsed.pid > 0
|
|
? parsed.pid
|
|
: null;
|
|
return { localDaemon, pid };
|
|
} catch {
|
|
return { localDaemon: null, pid: null };
|
|
}
|
|
}
|
|
|
|
async function waitFor(
|
|
check: () => Promise<boolean> | boolean,
|
|
timeoutMs: number,
|
|
message: string,
|
|
): Promise<void> {
|
|
const deadline = Date.now() + timeoutMs;
|
|
|
|
async function poll(): Promise<void> {
|
|
if (await check()) return;
|
|
if (Date.now() >= deadline) throw new Error(message);
|
|
await sleep(pollIntervalMs);
|
|
return poll();
|
|
}
|
|
|
|
return poll();
|
|
}
|
|
|
|
console.log("=== Daemon Stop (supervisor regression) ===\n");
|
|
|
|
const port = await getAvailablePort();
|
|
const paseoHome = await mkdtemp(join(tmpdir(), "paseo-stop-supervisor-"));
|
|
const cliRoot = join(import.meta.dirname, "..");
|
|
|
|
let supervisorProcess: ChildProcess | null = null;
|
|
let recentSupervisorLogs = "";
|
|
|
|
try {
|
|
console.log("Test 1: start supervisor-entrypoint in dev mode with isolated PASEO_HOME");
|
|
|
|
supervisorProcess = spawn(
|
|
process.execPath,
|
|
["--import", "tsx", "../server/scripts/supervisor-entrypoint.ts", "--dev"],
|
|
{
|
|
cwd: cliRoot,
|
|
env: {
|
|
...process.env,
|
|
...testEnv,
|
|
PASEO_HOME: paseoHome,
|
|
PASEO_LISTEN: `127.0.0.1:${port}`,
|
|
PASEO_RELAY_ENABLED: "false",
|
|
CI: "true",
|
|
},
|
|
stdio: ["ignore", "pipe", "pipe"],
|
|
},
|
|
);
|
|
|
|
supervisorProcess.stdout?.on("data", (chunk) => {
|
|
recentSupervisorLogs = (recentSupervisorLogs + chunk.toString()).slice(-8000);
|
|
});
|
|
supervisorProcess.stderr?.on("data", (chunk) => {
|
|
recentSupervisorLogs = (recentSupervisorLogs + chunk.toString()).slice(-8000);
|
|
});
|
|
|
|
await waitFor(
|
|
async () => {
|
|
const status = await readDaemonStatus(paseoHome);
|
|
return (
|
|
status.localDaemon === "running" && status.pid !== null && isProcessRunning(status.pid)
|
|
);
|
|
},
|
|
120000,
|
|
"daemon did not become running in time",
|
|
);
|
|
|
|
const statusBeforeStop = await readDaemonStatus(paseoHome);
|
|
const daemonPid = statusBeforeStop.pid;
|
|
assert.strictEqual(
|
|
statusBeforeStop.localDaemon,
|
|
"running",
|
|
"daemon should be running before stop",
|
|
);
|
|
assert(daemonPid !== null, "daemon pid should exist once daemon starts");
|
|
assert(isProcessRunning(daemonPid), "daemon process should be running");
|
|
const pidLockBeforeStop = await readPidLockState(paseoHome);
|
|
assert.strictEqual(pidLockBeforeStop.pid, daemonPid, "pid lock should match status pid");
|
|
assert.strictEqual(
|
|
daemonPid,
|
|
supervisorProcess.pid,
|
|
"pid lock pid should be the supervisor-entrypoint process",
|
|
);
|
|
console.log(`✓ dev daemon started with daemon pid ${daemonPid}\n`);
|
|
|
|
console.log("Test 2: `paseo daemon stop` should stop without respawn");
|
|
const stopResult =
|
|
await $`PASEO_HOME=${paseoHome} PASEO_LOCAL_SPEECH_AUTO_DOWNLOAD=${testEnv.PASEO_LOCAL_SPEECH_AUTO_DOWNLOAD} PASEO_DICTATION_ENABLED=${testEnv.PASEO_DICTATION_ENABLED} PASEO_VOICE_MODE_ENABLED=${testEnv.PASEO_VOICE_MODE_ENABLED} npx paseo daemon stop --home ${paseoHome} --json`.nothrow();
|
|
assert.strictEqual(stopResult.exitCode, 0, `stop should succeed: ${stopResult.stderr}`);
|
|
const stopJson = JSON.parse(stopResult.stdout) as { action?: unknown };
|
|
assert.strictEqual(stopJson.action, "stopped", "stop should report stopped action");
|
|
|
|
await waitFor(
|
|
async () => {
|
|
const status = await readDaemonStatus(paseoHome);
|
|
return status.localDaemon === "stopped";
|
|
},
|
|
15000,
|
|
"daemon status did not transition to stopped after stop",
|
|
);
|
|
|
|
if (supervisorProcess.pid) {
|
|
await waitFor(
|
|
() => !isProcessRunning(supervisorProcess!.pid ?? -1),
|
|
15000,
|
|
"supervisor-entrypoint process remained running after stop",
|
|
);
|
|
}
|
|
|
|
await sleep(1000);
|
|
|
|
const pidAfterStop = await readPidLockState(paseoHome);
|
|
const respawned = pidAfterStop.pid !== null && isProcessRunning(pidAfterStop.pid);
|
|
assert.strictEqual(
|
|
respawned,
|
|
false,
|
|
`daemon respawned after stop (pid: ${pidAfterStop.pid ?? "unknown"})`,
|
|
);
|
|
|
|
const statusAfterStop = await readDaemonStatus(paseoHome);
|
|
assert.strictEqual(
|
|
statusAfterStop.localDaemon,
|
|
"stopped",
|
|
"daemon should remain stopped after stop command",
|
|
);
|
|
assert(
|
|
recentSupervisorLogs.includes("Shutdown requested by worker. Stopping worker..."),
|
|
`stop should request lifecycle shutdown from daemon worker, logs:\n${recentSupervisorLogs}`,
|
|
);
|
|
assert(
|
|
!recentSupervisorLogs.includes("cli_shutdown"),
|
|
`supervisor logs should not route shutdown by reason string:\n${recentSupervisorLogs}`,
|
|
);
|
|
console.log("✓ stop leaves supervised daemon stopped (no respawn)\n");
|
|
} finally {
|
|
if (supervisorProcess?.pid && isProcessRunning(supervisorProcess.pid)) {
|
|
supervisorProcess.kill("SIGTERM");
|
|
await waitFor(
|
|
() => !isProcessRunning(supervisorProcess!.pid ?? -1),
|
|
5000,
|
|
"supervisor cleanup timed out",
|
|
).catch(() => {
|
|
supervisorProcess?.kill("SIGKILL");
|
|
});
|
|
}
|
|
|
|
await $`PASEO_HOME=${paseoHome} PASEO_LOCAL_SPEECH_AUTO_DOWNLOAD=${testEnv.PASEO_LOCAL_SPEECH_AUTO_DOWNLOAD} PASEO_DICTATION_ENABLED=${testEnv.PASEO_DICTATION_ENABLED} PASEO_VOICE_MODE_ENABLED=${testEnv.PASEO_VOICE_MODE_ENABLED} npx paseo daemon stop --home ${paseoHome} --force`.nothrow();
|
|
await rm(paseoHome, { recursive: true, force: true });
|
|
}
|
|
|
|
if (recentSupervisorLogs.trim().length === 0) {
|
|
// Keep output stable while still surfacing that logs were captured when needed.
|
|
console.log("(no supervisor logs captured)");
|
|
}
|
|
|
|
console.log("=== Supervisor stop regression test passed ===");
|