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
55 lines
1.9 KiB
JavaScript
55 lines
1.9 KiB
JavaScript
"use strict";
|
|
|
|
const assert = require("node:assert/strict");
|
|
const test = require("node:test");
|
|
const sftpBridge = require("./sftpBridge.cjs");
|
|
|
|
test("renderer SFTP operations keep their source terminal session active", async () => {
|
|
const handlers = new Map();
|
|
const activity = [];
|
|
const requests = [];
|
|
const ipcMain = {
|
|
handle(channel, handler) {
|
|
handlers.set(channel, handler);
|
|
},
|
|
};
|
|
const terminalWorkerManager = {
|
|
async request(channel, payload) {
|
|
requests.push({ channel, payload });
|
|
if (channel === "netcatty:sftp:openForSession") {
|
|
return { sftpId: "sftp-1", sourceSessionId: "terminal-2" };
|
|
}
|
|
if (channel === "netcatty:sftp:list") return [];
|
|
if (channel === "netcatty:sftp:close") return { ok: true };
|
|
throw new Error(`Unexpected channel: ${channel}`);
|
|
},
|
|
};
|
|
sftpBridge.init({
|
|
sessions: new Map(),
|
|
sftpClients: new Map(),
|
|
electronModule: {},
|
|
reportOpenedSessionActivity: (event) => activity.push(event),
|
|
});
|
|
sftpBridge.registerHandlers(ipcMain, { terminalWorkerManager });
|
|
const event = { sender: { id: 7 } };
|
|
|
|
await handlers.get("netcatty:sftp:openForSession")(event, { sessionId: "terminal-1" });
|
|
await handlers.get("netcatty:sftp:list")(event, { sftpId: "sftp-1", path: "/tmp" });
|
|
await handlers.get("netcatty:sftp:close")(event, { sftpId: "sftp-1" });
|
|
|
|
assert.deepEqual(requests.map((entry) => entry.channel), [
|
|
"netcatty:sftp:openForSession",
|
|
"netcatty:sftp:list",
|
|
"netcatty:sftp:close",
|
|
]);
|
|
assert.deepEqual(activity, [
|
|
{ sessionId: "terminal-1", phase: "begin" },
|
|
{ sessionId: "terminal-2", phase: "touch" },
|
|
{ sessionId: "terminal-1", phase: "end" },
|
|
{ sessionId: "terminal-2", phase: "begin" },
|
|
{ sessionId: "terminal-2", phase: "end" },
|
|
{ sessionId: "terminal-2", phase: "begin" },
|
|
{ sessionId: "terminal-2", phase: "end" },
|
|
]);
|
|
});
|