Gemini CLI only registers run_shell_command in --approval-mode yolo. Non-yolo modes don't expose it at all, making Paperclip API calls impossible. Always pass --approval-mode yolo and remove the now-unused policy engine code, approval mode config, and UI toggles. Add a "Paperclip API access note" to the prompt with curl examples via run_shell_command, since the universal SKILL.md is tool-agnostic. Also extract structured question events from Gemini assistant messages to support interactive approval flows. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
190 lines
5.7 KiB
TypeScript
190 lines
5.7 KiB
TypeScript
import { describe, expect, it, vi } from "vitest";
|
|
import { isGeminiUnknownSessionError, parseGeminiJsonl } from "@paperclipai/adapter-gemini-local/server";
|
|
import { parseGeminiStdoutLine } from "@paperclipai/adapter-gemini-local/ui";
|
|
import { printGeminiStreamEvent } from "@paperclipai/adapter-gemini-local/cli";
|
|
|
|
describe("gemini_local parser", () => {
|
|
it("extracts session, summary, usage, cost, and terminal error message", () => {
|
|
const stdout = [
|
|
JSON.stringify({ type: "system", subtype: "init", session_id: "gemini-session-1", model: "gemini-2.5-pro" }),
|
|
JSON.stringify({
|
|
type: "assistant",
|
|
message: {
|
|
content: [{ type: "output_text", text: "hello" }],
|
|
},
|
|
}),
|
|
JSON.stringify({
|
|
type: "result",
|
|
subtype: "success",
|
|
session_id: "gemini-session-1",
|
|
usage: {
|
|
promptTokenCount: 12,
|
|
cachedContentTokenCount: 3,
|
|
candidatesTokenCount: 7,
|
|
},
|
|
total_cost_usd: 0.00123,
|
|
result: "done",
|
|
}),
|
|
JSON.stringify({ type: "error", message: "model access denied" }),
|
|
].join("\n");
|
|
|
|
const parsed = parseGeminiJsonl(stdout);
|
|
expect(parsed.sessionId).toBe("gemini-session-1");
|
|
expect(parsed.summary).toBe("hello");
|
|
expect(parsed.usage).toEqual({
|
|
inputTokens: 12,
|
|
cachedInputTokens: 3,
|
|
outputTokens: 7,
|
|
});
|
|
expect(parsed.costUsd).toBeCloseTo(0.00123, 6);
|
|
expect(parsed.errorMessage).toBe("model access denied");
|
|
});
|
|
|
|
it("extracts structured questions", () => {
|
|
const stdout = [
|
|
JSON.stringify({
|
|
type: "assistant",
|
|
message: {
|
|
content: [
|
|
{ type: "output_text", text: "I have a question." },
|
|
{
|
|
type: "question",
|
|
prompt: "Which model?",
|
|
choices: [
|
|
{ key: "pro", label: "Gemini Pro", description: "Better" },
|
|
{ key: "flash", label: "Gemini Flash" },
|
|
],
|
|
},
|
|
],
|
|
},
|
|
}),
|
|
].join("\n");
|
|
|
|
const parsed = parseGeminiJsonl(stdout);
|
|
expect(parsed.summary).toBe("I have a question.");
|
|
expect(parsed.question).toEqual({
|
|
prompt: "Which model?",
|
|
choices: [
|
|
{ key: "pro", label: "Gemini Pro", description: "Better" },
|
|
{ key: "flash", label: "Gemini Flash", description: undefined },
|
|
],
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("gemini_local stale session detection", () => {
|
|
it("treats missing session messages as an unknown session error", () => {
|
|
expect(isGeminiUnknownSessionError("", "unknown session id abc")).toBe(true);
|
|
expect(isGeminiUnknownSessionError("", "checkpoint latest not found")).toBe(true);
|
|
});
|
|
});
|
|
|
|
describe("gemini_local ui stdout parser", () => {
|
|
it("parses assistant, thinking, and result events", () => {
|
|
const ts = "2026-03-08T00:00:00.000Z";
|
|
|
|
expect(
|
|
parseGeminiStdoutLine(
|
|
JSON.stringify({
|
|
type: "assistant",
|
|
message: {
|
|
content: [
|
|
{ type: "output_text", text: "I checked the repo." },
|
|
{ type: "thinking", text: "Reviewing adapter registry" },
|
|
{ type: "tool_call", name: "shell", input: { command: "ls -1" } },
|
|
{ type: "tool_result", tool_use_id: "tool_1", output: "AGENTS.md\n", status: "ok" },
|
|
],
|
|
},
|
|
}),
|
|
ts,
|
|
),
|
|
).toEqual([
|
|
{ kind: "assistant", ts, text: "I checked the repo." },
|
|
{ kind: "thinking", ts, text: "Reviewing adapter registry" },
|
|
{ kind: "tool_call", ts, name: "shell", input: { command: "ls -1" } },
|
|
{ kind: "tool_result", ts, toolUseId: "tool_1", content: "AGENTS.md\n", isError: false },
|
|
]);
|
|
|
|
expect(
|
|
parseGeminiStdoutLine(
|
|
JSON.stringify({
|
|
type: "result",
|
|
subtype: "success",
|
|
result: "Done",
|
|
usage: {
|
|
promptTokenCount: 10,
|
|
candidatesTokenCount: 5,
|
|
cachedContentTokenCount: 2,
|
|
},
|
|
total_cost_usd: 0.00042,
|
|
is_error: false,
|
|
}),
|
|
ts,
|
|
),
|
|
).toEqual([
|
|
{
|
|
kind: "result",
|
|
ts,
|
|
text: "Done",
|
|
inputTokens: 10,
|
|
outputTokens: 5,
|
|
cachedTokens: 2,
|
|
costUsd: 0.00042,
|
|
subtype: "success",
|
|
isError: false,
|
|
errors: [],
|
|
},
|
|
]);
|
|
});
|
|
});
|
|
|
|
function stripAnsi(value: string): string {
|
|
return value.replace(/\x1b\[[0-9;]*m/g, "");
|
|
}
|
|
|
|
describe("gemini_local cli formatter", () => {
|
|
it("prints init, assistant, result, and error events", () => {
|
|
const spy = vi.spyOn(console, "log").mockImplementation(() => {});
|
|
let joined = "";
|
|
|
|
try {
|
|
printGeminiStreamEvent(
|
|
JSON.stringify({ type: "system", subtype: "init", session_id: "gemini-session-1", model: "gemini-2.5-pro" }),
|
|
false,
|
|
);
|
|
printGeminiStreamEvent(
|
|
JSON.stringify({
|
|
type: "assistant",
|
|
message: { content: [{ type: "output_text", text: "hello" }] },
|
|
}),
|
|
false,
|
|
);
|
|
printGeminiStreamEvent(
|
|
JSON.stringify({
|
|
type: "result",
|
|
subtype: "success",
|
|
usage: {
|
|
promptTokenCount: 10,
|
|
candidatesTokenCount: 5,
|
|
cachedContentTokenCount: 2,
|
|
},
|
|
total_cost_usd: 0.00042,
|
|
}),
|
|
false,
|
|
);
|
|
printGeminiStreamEvent(
|
|
JSON.stringify({ type: "error", message: "boom" }),
|
|
false,
|
|
);
|
|
joined = spy.mock.calls.map((call) => stripAnsi(call.join(" "))).join("\n");
|
|
} finally {
|
|
spy.mockRestore();
|
|
}
|
|
|
|
expect(joined).toContain("Gemini init");
|
|
expect(joined).toContain("assistant: hello");
|
|
expect(joined).toContain("tokens: in=10 out=5 cached=2 cost=$0.000420");
|
|
expect(joined).toContain("error: boom");
|
|
});
|
|
});
|