Files
NetMesh/electron/terminalWorker/aiExec.test.cjs
zhaolei 3c72efcb7f
Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
[Init] Initial commit - NetMesh terminal manager
2026-09-13 18:24:01 +08:00

494 lines
15 KiB
JavaScript

"use strict";
const assert = require("node:assert/strict");
const { EventEmitter } = require("node:events");
const test = require("node:test");
const {
createWorkerAiJobStartHandler,
registerWorkerAiExecHandlers,
} = require("./aiExec.cjs");
const { PROBE_OUTPUT_MARKER } = require("../bridges/ai/sessionShellKind.cjs");
class FakePty extends EventEmitter {
constructor() {
super();
this.writes = [];
}
write(data) {
this.writes.push(String(data));
if (String(data).includes("command sh -c")) {
const marker = String(data).match(/(__NCMCP_[A-Za-z0-9_]+__)/)[1];
queueMicrotask(() => this.emit("data", `${marker}_P:\n${marker}_Q`));
}
}
}
function createFakeIpcMain() {
const handlers = new Map();
const listeners = new Map();
return {
handlers,
listeners,
handle(channel, handler) {
handlers.set(channel, handler);
},
on(channel, listener) {
listeners.set(channel, listener);
},
};
}
function createFakeEvent() {
const rendererMessages = [];
return {
rendererMessages,
sender: {
send(channel, payload) {
rendererMessages.push({ channel, payload });
},
},
};
}
function extractMarker(writes) {
const wrapper = writes.find((entry) => entry.includes("__NCMCP_") && !entry.includes("command sh -c"));
assert.ok(wrapper, "expected wrapped command to be written to the PTY");
const match = wrapper.match(/(__NCMCP_[A-Za-z0-9_]+__)/);
assert.ok(match, "expected command wrapper to contain an MCP marker");
return match[1];
}
function nextTick() {
return new Promise((resolve) => setImmediate(resolve));
}
function createShellProbeConn(stdout = `${PROBE_OUTPUT_MARKER}/usr/bin/fish\n`) {
const conn = {
exec(_command, callback) {
const stream = new EventEmitter();
stream.stderr = new EventEmitter();
stream.close = () => stream.emit("close");
queueMicrotask(() => {
callback(null, stream);
queueMicrotask(() => {
stream.emit("data", Buffer.from(stdout));
stream.emit("close");
});
});
},
};
return conn;
}
function createDeferredShellProbeConn(stdout = `${PROBE_OUTPUT_MARKER}/usr/bin/fish\n`) {
let execCallback;
const conn = {
exec(_command, callback) {
execCallback = callback;
},
};
return {
conn,
release() {
const stream = new EventEmitter();
stream.stderr = new EventEmitter();
stream.close = () => stream.emit("close");
execCallback(null, stream);
queueMicrotask(() => {
stream.emit("data", Buffer.from(stdout));
stream.emit("close");
});
},
};
}
test("worker AI background jobs start, poll, stop, and block overlapping exec", async () => {
const pty = new FakePty();
const sessions = new Map([
["ssh-1", {
protocol: "ssh",
stream: pty,
shellKind: "posix",
}],
]);
const ipcMain = createFakeIpcMain();
registerWorkerAiExecHandlers(ipcMain, { sessions });
assert.equal(typeof ipcMain.handlers.get("netcatty:ai:jobStart"), "function");
assert.equal(typeof ipcMain.handlers.get("netcatty:ai:jobPoll"), "function");
assert.equal(typeof ipcMain.handlers.get("netcatty:ai:jobStop"), "function");
const event = createFakeEvent();
const started = await ipcMain.handlers.get("netcatty:ai:jobStart")(event, {
sessionId: "ssh-1",
command: "npm test",
chatSessionId: "chat-1",
commandTimeoutMs: 5000,
});
assert.equal(started.ok, true);
assert.equal(started.sessionId, "ssh-1");
assert.equal(started.command, "npm test");
assert.equal(started.status, "running");
assert.equal(started.outputMode, "foreground-mirrored");
assert.deepEqual(event.rendererMessages, [
{
channel: "netcatty:data",
payload: {
sessionId: "ssh-1",
data: "npm test\r\n",
syntheticEcho: true,
},
},
]);
const marker = extractMarker(pty.writes);
pty.emit("data", `${marker}_S\r\nready\r\n`);
await nextTick();
const polled = await ipcMain.handlers.get("netcatty:ai:jobPoll")(event, {
jobId: started.jobId,
offset: 0,
chatSessionId: "chat-1",
});
assert.equal(polled.ok, true);
assert.equal(polled.completed, false);
assert.equal(polled.output, "ready\n");
assert.equal(polled.nextOffset, "ready\n".length);
const busy = await ipcMain.handlers.get("netcatty:ai:exec")(event, {
sessionId: "ssh-1",
command: "pwd",
chatSessionId: "chat-1",
});
assert.equal(busy.ok, false);
assert.match(busy.error, /already has a long-running command in progress/);
const stopped = await ipcMain.handlers.get("netcatty:ai:jobStop")(event, {
jobId: started.jobId,
chatSessionId: "chat-1",
});
assert.equal(stopped.ok, true);
assert.equal(stopped.status, "stopping");
assert.ok(pty.writes.includes("\x03"), "expected stop to send Ctrl+C to the PTY");
pty.emit("data", `${marker}_E:130\r\n`);
await nextTick();
const cancelled = await ipcMain.handlers.get("netcatty:ai:jobPoll")(event, {
jobId: started.jobId,
offset: 0,
chatSessionId: "chat-1",
});
assert.equal(cancelled.status, "cancelled");
assert.equal(cancelled.completed, true);
assert.equal(cancelled.error, "Cancelled");
});
test("worker chat cancellation stops matching background jobs", async () => {
const pty = new FakePty();
const sessions = new Map([
["ssh-1", {
protocol: "ssh",
stream: pty,
shellKind: "posix",
}],
]);
const ipcMain = createFakeIpcMain();
registerWorkerAiExecHandlers(ipcMain, { sessions });
const event = createFakeEvent();
const started = await ipcMain.handlers.get("netcatty:ai:jobStart")(event, {
sessionId: "ssh-1",
command: "sleep 30",
chatSessionId: "chat-1",
commandTimeoutMs: 5000,
});
const marker = extractMarker(pty.writes);
pty.emit("data", `${marker}_S\r\nrunning\r\n`);
await nextTick();
ipcMain.listeners.get("netcatty:ai:catty:cancel")(event, {
chatSessionId: "chat-1",
});
assert.ok(pty.writes.includes("\x03"), "expected chat cancellation to send Ctrl+C to the background job");
const stopping = await ipcMain.handlers.get("netcatty:ai:jobPoll")(event, {
jobId: started.jobId,
offset: 0,
chatSessionId: "chat-1",
});
assert.equal(stopping.status, "stopping");
assert.equal(stopping.error, "Cancellation requested");
pty.emit("data", `${marker}_E:130\r\n`);
await nextTick();
const cancelled = await ipcMain.handlers.get("netcatty:ai:jobPoll")(event, {
jobId: started.jobId,
offset: 0,
chatSessionId: "chat-1",
});
assert.equal(cancelled.status, "cancelled");
assert.equal(cancelled.completed, true);
});
test("worker background job probes unset remote shellKind before wrapping", async () => {
const pty = new FakePty();
const sessions = new Map([
["ssh-fish", {
protocol: "ssh",
stream: pty,
conn: createShellProbeConn(),
}],
]);
const ipcMain = createFakeIpcMain();
registerWorkerAiExecHandlers(ipcMain, { sessions });
const event = createFakeEvent();
const started = await ipcMain.handlers.get("netcatty:ai:jobStart")(event, {
sessionId: "ssh-fish",
command: "echo fish",
chatSessionId: "chat-1",
commandTimeoutMs: 5000,
});
assert.equal(started.ok, true);
// Login fish is a soft hint (not pinned); wrapper should be fish-native.
assert.equal(sessions.get("ssh-fish").shellKind, undefined);
assert.equal(sessions.get("ssh-fish")._loginShellKind, "fish");
const wrapper = pty.writes.find((entry) => entry.includes("__NCMCP_") && !entry.includes("command sh -c"));
assert.match(wrapper, /set -l __NCMCP_.*_cmd/);
assert.doesNotMatch(wrapper, / sh -c '/);
const marker = extractMarker(pty.writes);
pty.emit("data", `${marker}_S\r\n${marker}_E:0\r\n`);
await nextTick();
});
test("worker background job reserves the session while shellKind probe is pending", async () => {
const pty = new FakePty();
const deferred = createDeferredShellProbeConn();
const sessions = new Map([
["ssh-fish", {
protocol: "ssh",
stream: pty,
conn: deferred.conn,
}],
]);
const ipcMain = createFakeIpcMain();
registerWorkerAiExecHandlers(ipcMain, { sessions });
const event = createFakeEvent();
const firstStart = ipcMain.handlers.get("netcatty:ai:jobStart")(event, {
sessionId: "ssh-fish",
command: "sleep 1",
chatSessionId: "chat-1",
commandTimeoutMs: 5000,
});
await nextTick();
const second = await ipcMain.handlers.get("netcatty:ai:jobStart")(event, {
sessionId: "ssh-fish",
command: "pwd",
chatSessionId: "chat-1",
commandTimeoutMs: 5000,
});
assert.equal(second.ok, false);
assert.match(second.error, /already has a long-running command in progress/);
deferred.release();
const first = await firstStart;
assert.equal(first.ok, true);
const marker = extractMarker(pty.writes);
pty.emit("data", `${marker}_S\r\n${marker}_E:0\r\n`);
await nextTick();
});
test("worker chat cancel during shellKind probe aborts job start before PTY write", async () => {
// Codex P2 on #2061: first jobStart on an unprobed remote session awaits
// ensureSessionShellKind with no backgroundJobs entry historically, so
// catty:cancel missed it and the command was still typed after the probe.
const pty = new FakePty();
const deferred = createDeferredShellProbeConn();
const sessions = new Map([
["ssh-fish", {
protocol: "ssh",
stream: pty,
conn: deferred.conn,
}],
]);
const ipcMain = createFakeIpcMain();
registerWorkerAiExecHandlers(ipcMain, { sessions });
const event = createFakeEvent();
const pendingStart = ipcMain.handlers.get("netcatty:ai:jobStart")(event, {
sessionId: "ssh-fish",
command: "sleep 999",
chatSessionId: "chat-cancel-probe",
commandTimeoutMs: 5000,
});
await nextTick();
// Cancel while the shell probe is still in-flight.
ipcMain.listeners.get("netcatty:ai:catty:cancel")(event, {
chatSessionId: "chat-cancel-probe",
});
deferred.release();
const started = await pendingStart;
assert.equal(started.ok, false);
assert.equal(started.error, "Cancelled");
assert.equal(
pty.writes.filter((entry) => entry.includes("__NCMCP_") && !entry.includes("command sh -c")).length,
0,
"cancelled pending start must not type a wrapper into the PTY",
);
});
test("worker exec keeps shell-selected defaults: powershell frees $(), dangerous PS commands blocked", async () => {
const pty = new FakePty();
const sessions = new Map([
["ps-1", {
protocol: "ssh",
stream: pty,
shellKind: "",
remoteSshVersion: "OpenSSH_for_Windows_9.5",
lastIdlePrompt: "custom% ",
_promptTrackTail: "custom prompt\r\ncustom% ",
_shellKindExecProbe: async () => (
"DefaultShell REG_SZ C:\\Program Files\\PowerShell\\7\\pwsh.exe\r\n"
),
}],
]);
const ipcMain = createFakeIpcMain();
registerWorkerAiExecHandlers(ipcMain, { sessions });
const event = createFakeEvent();
const exec = ipcMain.handlers.get("netcatty:ai:exec");
// PowerShell subexpression syntax on a PowerShell session is legal: the
// command must pass the worker blocklist and reach the PTY wrapper.
const allowedPromise = exec(event, {
sessionId: "ps-1",
command: 'Write-Host "now: $(Get-Date)"',
chatSessionId: "chat-ps",
commandTimeoutMs: 300,
});
await nextTick();
assert.ok(
pty.writes.some((entry) => entry.includes("__NCMCP_") && !entry.includes("command sh -c")),
"expected the unblocked command to reach the PTY",
);
await allowedPromise.catch(() => {});
// PowerShell-native destructive commands are blocked by the new group.
const blocked = await exec(event, {
sessionId: "ps-1",
command: "Remove-Item -Recurse -Force C:\\important",
chatSessionId: "chat-ps",
commandTimeoutMs: 5000,
});
assert.equal(blocked.ok, false);
assert.match(blocked.error, /Command blocked by safety policy/);
assert.equal(blocked.error.includes("Remove-Item"), true);
});
test("worker exec honors an explicitly empty configured blocklist", async () => {
const pty = new FakePty();
const sessions = new Map([
["posix-no-blocklist", {
protocol: "ssh",
stream: pty,
shellKind: "posix",
}],
]);
const ipcMain = createFakeIpcMain();
registerWorkerAiExecHandlers(ipcMain, { sessions });
const execution = ipcMain.handlers.get("netcatty:ai:exec")(createFakeEvent(), {
sessionId: "posix-no-blocklist",
command: "rm -rf /tmp/test-only",
chatSessionId: "chat-no-blocklist",
commandTimeoutMs: 300,
commandBlocklist: [],
});
await nextTick();
assert.ok(
pty.writes.some((entry) => entry.includes("__NCMCP_") && !entry.includes("command sh -c")),
"disabled defaults must allow the command to reach the PTY wrapper",
);
await execution.catch(() => {});
});
test("worker background job probes before blocking a first PowerShell command", async () => {
const pty = new FakePty();
const sessions = new Map([
["ps-danger-first", {
protocol: "ssh",
stream: pty,
shellKind: "",
remoteSshVersion: "OpenSSH_for_Windows_9.5",
lastIdlePrompt: "custom% ",
_promptTrackTail: "custom prompt\r\ncustom% ",
_shellKindExecProbe: async () => (
"DefaultShell REG_SZ C:\\Program Files\\PowerShell\\7\\pwsh.exe\r\n"
),
}],
]);
const backgroundJobs = new Map();
const activeSessionJobs = new Map();
const start = createWorkerAiJobStartHandler({
sessions,
backgroundJobs,
activeSessionJobs,
});
const result = await start(createFakeEvent(), {
sessionId: "ps-danger-first",
command: "Remove-Item -Recurse -Force C:\\important",
chatSessionId: "chat-ps-danger",
});
assert.equal(result.ok, false);
assert.match(result.error, /Command blocked by safety policy/);
assert.equal(pty.writes.length, 0);
assert.equal(backgroundJobs.size, 0);
assert.equal(activeSessionJobs.size, 0);
});
test("worker exec on an unclassified posix session still blocks command substitution", async () => {
const pty = new FakePty();
const sessions = new Map([
["ssh-posix", {
protocol: "ssh",
stream: pty,
shellKind: "posix",
}],
]);
const ipcMain = createFakeIpcMain();
registerWorkerAiExecHandlers(ipcMain, { sessions });
const event = createFakeEvent();
const blocked = await ipcMain.handlers.get("netcatty:ai:exec")(event, {
sessionId: "ssh-posix",
command: "echo $(whoami)",
chatSessionId: "chat-posix",
commandTimeoutMs: 5000,
});
assert.equal(blocked.ok, false);
assert.match(blocked.error, /Command blocked by safety policy/);
assert.equal(
pty.writes.filter((entry) => entry.includes("__NCMCP_") && !entry.includes("command sh -c")).length,
0,
"blocked commands must not reach the PTY",
);
});