| |
| |
| |
| import { describe, it, expect } from "vitest"; |
| import "./registerAll.js"; |
| import { translateRequest } from "../../open-sse/translator/index.js"; |
| import { FORMATS } from "../../open-sse/translator/formats.js"; |
|
|
| const T = (src, tgt, body, provider = null) => |
| translateRequest(src, tgt, "m", body, true, null, provider); |
|
|
| describe("Claude Code CLI context → OpenAI", () => { |
| |
| it("system array keeps all text parts", () => { |
| const out = T(FORMATS.CLAUDE, FORMATS.OPENAI, { |
| system: [ |
| { type: "text", text: "You are Claude Code.", cache_control: { type: "ephemeral" } }, |
| { type: "text", text: "Follow repo conventions." }, |
| ], |
| messages: [{ role: "user", content: "hi" }], |
| }); |
| const sys = out.messages.find((m) => m.role === "system"); |
| expect(sys?.content).toContain("Claude Code"); |
| expect(sys?.content).toContain("repo conventions"); |
| }); |
|
|
| |
| |
| it("assistant thinking block survives Claude→Claude passthrough", () => { |
| const out = T(FORMATS.CLAUDE, FORMATS.CLAUDE, { |
| messages: [ |
| { role: "assistant", content: [ |
| { type: "thinking", thinking: "step-by-step plan", signature: "abc123" }, |
| { type: "text", text: "done" }, |
| ] }, |
| { role: "user", content: "next" }, |
| ], |
| }); |
| expect(JSON.stringify(out)).toContain("step-by-step plan"); |
| }); |
|
|
| |
| |
| it.fails("redacted_thinking block is not silently dropped", () => { |
| const out = T(FORMATS.CLAUDE, FORMATS.OPENAI, { |
| messages: [ |
| { role: "assistant", content: [ |
| { type: "redacted_thinking", data: "ENCRYPTED_BLOB" }, |
| { type: "text", text: "answer" }, |
| ] }, |
| { role: "user", content: "go" }, |
| ], |
| }); |
| expect(JSON.stringify(out)).toContain("ENCRYPTED_BLOB"); |
| }); |
|
|
| |
| |
| it.fails("tool_result image block is preserved", () => { |
| const out = T(FORMATS.CLAUDE, FORMATS.OPENAI, { |
| messages: [ |
| { role: "assistant", content: [{ type: "tool_use", id: "call_1", name: "screenshot", input: {} }] }, |
| { role: "user", content: [ |
| { type: "tool_result", tool_use_id: "call_1", content: [ |
| { type: "image", source: { type: "base64", media_type: "image/png", data: "IMG" } }, |
| ] }, |
| ] }, |
| ], |
| }); |
| const tool = out.messages.find((m) => m.role === "tool"); |
| expect(tool?.content, "image turned into raw JSON").not.toMatch(/^\[/); |
| }); |
| }); |
|
|