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
80 lines
2.3 KiB
JavaScript
80 lines
2.3 KiB
JavaScript
"use strict";
|
|
|
|
const test = require("node:test");
|
|
const assert = require("node:assert/strict");
|
|
|
|
function loadFreshBridge() {
|
|
const bridgePath = require.resolve("../../bridges/mcpServerBridge.cjs");
|
|
delete require.cache[bridgePath];
|
|
return require("../../bridges/mcpServerBridge.cjs");
|
|
}
|
|
|
|
function envPairsToObject(envPairs) {
|
|
const env = { ...process.env };
|
|
for (const pair of envPairs || []) {
|
|
if (!pair?.name) continue;
|
|
env[pair.name] = String(pair.value ?? "");
|
|
}
|
|
return env;
|
|
}
|
|
|
|
test("MCP environment resource serializes terminal tool hints from Netcatty context", async (t) => {
|
|
const { Client } = await import("@modelcontextprotocol/sdk/client/index.js");
|
|
const { StdioClientTransport } = await import("@modelcontextprotocol/sdk/client/stdio.js");
|
|
|
|
const bridge = loadFreshBridge();
|
|
const chatSessionId = `chat-resource-${Date.now()}`;
|
|
let client = null;
|
|
|
|
t.after(async () => {
|
|
try {
|
|
await client?.close();
|
|
} catch {
|
|
// Ignore teardown failures after a failed connect.
|
|
}
|
|
bridge.cleanup();
|
|
});
|
|
|
|
bridge.init({
|
|
sessions: new Map(),
|
|
electronModule: null,
|
|
terminalWorkerManager: {
|
|
request() {
|
|
throw new Error("resource context should not need a worker round trip");
|
|
},
|
|
},
|
|
});
|
|
bridge.setPermissionMode("auto");
|
|
bridge.updateSessionMetadata([
|
|
{
|
|
sessionId: "ssh-1",
|
|
hostname: "host.example",
|
|
label: "Prod",
|
|
username: "root",
|
|
protocol: "ssh",
|
|
shellType: "bash",
|
|
connected: true,
|
|
},
|
|
], chatSessionId);
|
|
|
|
const port = await bridge.getOrCreateHost();
|
|
const config = bridge.buildMcpServerConfig(port, [], chatSessionId);
|
|
const transport = new StdioClientTransport({
|
|
command: config.command,
|
|
args: config.args,
|
|
env: envPairsToObject(config.env),
|
|
});
|
|
client = new Client({ name: "netcatty-resource-test", version: "1.0.0" });
|
|
await client.connect(transport);
|
|
|
|
const resource = await client.readResource({ uri: "netcatty://context" });
|
|
const text = resource.contents?.[0]?.text || "";
|
|
const context = JSON.parse(text);
|
|
|
|
assert.equal(context.hostCount, 1);
|
|
assert.equal(context.hosts[0].sessionId, "ssh-1");
|
|
assert.equal(context.tools.terminal.execute, "terminal_execute");
|
|
assert.equal(context.tools.terminal.start, "terminal_start");
|
|
assert.match(context.description, /terminal_execute/);
|
|
});
|