Files
9router/tests/unit/openai-responses-empty-toolcalls.test.js
luulam 7e45ead2ac Merge remote-tracking branch 'origin/master' into gitea/feature/end
Resolved conflicts taking origin/master (v0.5.55) as canonical, with local
features re-applied:
- runtime log level (LOG_LEVEL env + dashboard Settings → Logging, applied
  immediately and persisted across restarts)
- free/noAuth provider enable/disable toggle via providerStrategies.enabled
- parallel model testing (Test All Models / Test Selected Keys)
2026-08-17 00:38:31 +07:00

53 lines
3.2 KiB
JavaScript

/**
* Some providers (e.g. codebuddy / cbcn) attach `tool_calls: []` to every
* streaming chunk. An empty array is truthy in JS, so the guard
* `if (delta.tool_calls)` closed the message on the first content token,
* emitting `output_text.done` early and truncating the answer. This mirrors
* the real repro: `codex exec -m cbcn/kimi-k3` answered only "cod" instead
* of "codex-ok".
*/
import { describe, it, expect } from "vitest";
import { openaiToOpenAIResponsesResponse } from "../../open-sse/translator/response/openai-responses.js";
import { initState } from "../../open-sse/translator/index.js";
import { FORMATS } from "../../open-sse/translator/formats.js";
describe("OpenAI Chat stream → Responses: empty tool_calls arrays", () => {
it("does not emit output_text.done early when every chunk carries tool_calls: []", () => {
const state = initState(FORMATS.OPENAI_RESPONSES);
const chunks = [
{ id: "cmb-test", choices: [{ index: 0, delta: { role: "assistant", content: "", reasoning_content: "", tool_calls: [] }, finish_reason: null }] },
{ id: "cmb-test", choices: [{ index: 0, delta: { content: "", reasoning_content: "thinking", tool_calls: [] }, finish_reason: null }] },
{ id: "cmb-test", choices: [{ index: 0, delta: { content: "cod", reasoning_content: "", tool_calls: [] }, finish_reason: null }] },
{ id: "cmb-test", choices: [{ index: 0, delta: { content: "ex", reasoning_content: "", tool_calls: [] }, finish_reason: null }] },
{ id: "cmb-test", choices: [{ index: 0, delta: { content: "-ok", reasoning_content: "", tool_calls: [] }, finish_reason: null }] },
{ id: "cmb-test", choices: [{ index: 0, delta: { content: "", reasoning_content: "", tool_calls: [] }, finish_reason: "stop" }] },
];
const events = chunks.flatMap((chunk) => openaiToOpenAIResponsesResponse(chunk, state));
const textDone = events.filter((e) => e.event === "response.output_text.done");
const textDeltas = events.filter((e) => e.event === "response.output_text.delta");
expect(textDone).toHaveLength(1);
expect(textDone[0].data.text).toBe("codex-ok");
expect(textDeltas.map((e) => e.data.delta).join("")).toBe("codex-ok");
// done must come after every delta
expect(events.indexOf(textDone[0])).toBe(events.indexOf(textDeltas[textDeltas.length - 1]) + 1);
});
it("still closes the message before a real tool call", () => {
const state = initState(FORMATS.OPENAI_RESPONSES);
const chunks = [
{ id: "cmb-test", choices: [{ index: 0, delta: { content: "Let me run that.", tool_calls: [] }, finish_reason: null }] },
{ id: "cmb-test", choices: [{ index: 0, delta: { tool_calls: [{ index: 0, id: "call_1", type: "function", function: { name: "exec", arguments: "" } }] }, finish_reason: null }] },
{ id: "cmb-test", choices: [{ index: 0, delta: {}, finish_reason: "tool_calls" }] },
];
const events = chunks.flatMap((chunk) => openaiToOpenAIResponsesResponse(chunk, state));
const added = events.find((e) => e.event === "response.output_item.added" && e.data.item?.type === "function_call");
const textDone = events.find((e) => e.event === "response.output_text.done");
expect(added).toBeTruthy();
expect(textDone.data.text).toBe("Let me run that.");
});
});