Total 1465 LOC + 616 test LOC, 78/78 tests pass. - @keisei/mcp-server (25 tests) — Rust-CLI bridge via execa, stdio+HTTP, HMAC auth, kei() meta-tool - @keisei/telegram-adapter (16 tests) — grammy Bot, 7 tools - @keisei/recall-adapter (8 tests) — Zoom via Recall.ai, 5 tools - @keisei/grok-adapter (6 tests) — xAI OpenAI-compatible, 2 tools - @keisei/gmail-adapter (11 tests) — googleapis OAuth2, 6 tools (new — LBM gap) - @keisei/youtube-adapter (12 tests) — YouTube Data API v3, 5 tools (new — LBM gap) RULE 0.2 exception #4 (TS for MCP/API layer documented in _ts_packages/README.md). RULE 0.8 — env vars only (TELEGRAM_BOT_TOKEN, XAI_API_KEY, GMAIL_*, YOUTUBE_API_KEY). Strict TypeScript: strict + exactOptionalPropertyTypes + noUncheckedIndexedAccess. Genesis-scan clean (0 hits).
39 lines
1.5 KiB
TypeScript
39 lines
1.5 KiB
TypeScript
import { describe, it, expect } from "vitest";
|
|
import { jsonArgsToCli, RustBridge } from "../src/rust-bridge.js";
|
|
import { RustBridgeError } from "../src/errors.js";
|
|
|
|
describe("jsonArgsToCli", () => {
|
|
it("converts snake_case keys to --kebab-case flags", () => {
|
|
expect(jsonArgsToCli({ foo_bar: "value" })).toEqual(["--foo-bar", "value"]);
|
|
});
|
|
|
|
it("emits booleans as presence-only flags", () => {
|
|
expect(jsonArgsToCli({ verbose: true })).toEqual(["--verbose"]);
|
|
expect(jsonArgsToCli({ verbose: false })).toEqual([]);
|
|
});
|
|
|
|
it("skips null and undefined values", () => {
|
|
expect(jsonArgsToCli({ a: null, b: undefined, c: "x" })).toEqual(["--c", "x"]);
|
|
});
|
|
|
|
it("stringifies numeric values", () => {
|
|
expect(jsonArgsToCli({ count: 42 })).toEqual(["--count", "42"]);
|
|
});
|
|
});
|
|
|
|
describe("RustBridge binary resolution", () => {
|
|
it("rejects illegal binary names", async () => {
|
|
const bridge = new RustBridge({ binDir: "/tmp" });
|
|
await expect(bridge.call({ binary: "../etc/passwd", args: [] })).rejects.toBeInstanceOf(
|
|
RustBridgeError,
|
|
);
|
|
});
|
|
|
|
it("accepts valid snake_case and kebab-case names (resolves with non-zero exit on ENOENT)", async () => {
|
|
const bridge = new RustBridge({ binDir: "/tmp" });
|
|
const result = await bridge.call({ binary: "kei-ledger", args: [], timeoutMs: 500 });
|
|
// execa is configured with reject:false → a missing binary resolves with exitCode != 0
|
|
// (validation passed — this was the assertion under test).
|
|
expect(result.exitCode).not.toBe(0);
|
|
});
|
|
});
|