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
97 lines
2.5 KiB
JavaScript
97 lines
2.5 KiB
JavaScript
const assert = require("node:assert/strict");
|
|
const test = require("node:test");
|
|
|
|
const { registerCattyExecHandlers } = require("./cattyExecHandlers.cjs");
|
|
|
|
function createFakeIpcMain() {
|
|
return {
|
|
handlers: new Map(),
|
|
handle(channel, handler) {
|
|
this.handlers.set(channel, handler);
|
|
},
|
|
};
|
|
}
|
|
|
|
test("catty AI exec proxies to the terminal worker when the real session lives in the worker", async () => {
|
|
const ipcMain = createFakeIpcMain();
|
|
const requests = [];
|
|
const terminalWorkerManager = {
|
|
request(channel, payload, options) {
|
|
requests.push({ channel, payload, options });
|
|
return Promise.resolve({ ok: true, stdout: "ok\n" });
|
|
},
|
|
};
|
|
const locks = [];
|
|
const mcpServerBridge = {
|
|
getPermissionMode: () => "auto",
|
|
getSessionBusyError: () => null,
|
|
reserveSessionExecution(sessionId, kind) {
|
|
locks.push(["reserve", sessionId, kind]);
|
|
return { ok: true, token: "token-1" };
|
|
},
|
|
releaseSessionExecution(sessionId, token) {
|
|
locks.push(["release", sessionId, token]);
|
|
},
|
|
getSessionMeta() {
|
|
return { protocol: "ssh", deviceType: "", hostname: "host.example" };
|
|
},
|
|
checkCommandSafetyForShell() {
|
|
return { blocked: false };
|
|
},
|
|
checkCommandSafetyCommonOnly() {
|
|
return { blocked: false };
|
|
},
|
|
resolveSessionBlocklistShellKind() {
|
|
return "";
|
|
},
|
|
getCommandTimeoutMs() {
|
|
return 12345;
|
|
},
|
|
getCommandBlocklist() {
|
|
return [];
|
|
},
|
|
activePtyExecs: new Map(),
|
|
};
|
|
|
|
registerCattyExecHandlers({
|
|
ipcMain,
|
|
validateSender: () => true,
|
|
sessions: new Map(),
|
|
terminalWorkerManager,
|
|
mcpServerBridge,
|
|
electronModule: {},
|
|
safeSend() {},
|
|
execViaPty() {
|
|
throw new Error("main process should not execute without a real session");
|
|
},
|
|
getFreshIdlePrompt() {
|
|
return "";
|
|
},
|
|
});
|
|
|
|
const result = await ipcMain.handlers.get("netcatty:ai:exec")(
|
|
{ sender: { id: 7 } },
|
|
{ sessionId: "ssh-1", command: "pwd", chatSessionId: "chat-1" },
|
|
);
|
|
|
|
assert.deepEqual(result, { ok: true, stdout: "ok\n" });
|
|
assert.deepEqual(requests, [
|
|
{
|
|
channel: "netcatty:ai:exec",
|
|
payload: {
|
|
sessionId: "ssh-1",
|
|
command: "pwd",
|
|
chatSessionId: "chat-1",
|
|
commandTimeoutMs: 12345,
|
|
sessionMeta: { protocol: "ssh", deviceType: "", hostname: "host.example" },
|
|
commandBlocklist: [],
|
|
},
|
|
options: { webContentsId: 7 },
|
|
},
|
|
]);
|
|
assert.deepEqual(locks, [
|
|
["reserve", "ssh-1", "exec"],
|
|
["release", "ssh-1", "token-1"],
|
|
]);
|
|
});
|