import { describe, expect, it } from "vitest"; import { listThinkingLevelLabels, listThinkingLevels, normalizeReasoningLevel, normalizeThinkLevel, resolveThinkingDefaultForModel, } from "./thinking.js"; describe("normalizeThinkLevel", () => { it("accepts mid as medium", () => { expect(normalizeThinkLevel("mid")).toBe("medium"); }); it("accepts xhigh aliases", () => { expect(normalizeThinkLevel("xhigh")).toBe("xhigh"); expect(normalizeThinkLevel("x-high")).toBe("xhigh"); expect(normalizeThinkLevel("x_high")).toBe("xhigh"); expect(normalizeThinkLevel("x high")).toBe("xhigh"); }); it("accepts extra-high aliases as xhigh", () => { expect(normalizeThinkLevel("extra-high")).toBe("xhigh"); expect(normalizeThinkLevel("extra high")).toBe("xhigh"); expect(normalizeThinkLevel("extra_high")).toBe("xhigh"); expect(normalizeThinkLevel(" extra high ")).toBe("xhigh"); }); it("does not over-match nearby xhigh words", () => { expect(normalizeThinkLevel("extra-highest")).toBeUndefined(); expect(normalizeThinkLevel("xhigher")).toBeUndefined(); }); it("accepts on as low", () => { expect(normalizeThinkLevel("on")).toBe("low"); }); it("accepts adaptive and auto aliases", () => { expect(normalizeThinkLevel("adaptive")).toBe("adaptive"); expect(normalizeThinkLevel("auto")).toBe("adaptive"); expect(normalizeThinkLevel("Adaptive")).toBe("adaptive"); }); }); describe("listThinkingLevels", () => { it("includes xhigh for codex models", () => { expect(listThinkingLevels(undefined, "gpt-5.2-codex")).toContain("xhigh"); expect(listThinkingLevels(undefined, "gpt-5.3-codex")).toContain("xhigh"); expect(listThinkingLevels(undefined, "gpt-5.3-codex-spark")).toContain("xhigh"); }); it("includes xhigh for openai gpt-5.2 and gpt-5.4 variants", () => { expect(listThinkingLevels("openai", "gpt-5.2")).toContain("xhigh"); expect(listThinkingLevels("openai", "gpt-5.4")).toContain("xhigh"); expect(listThinkingLevels("openai", "gpt-5.4-pro")).toContain("xhigh"); }); it("includes xhigh for openai-codex gpt-5.4", () => { expect(listThinkingLevels("openai-codex", "gpt-5.4")).toContain("xhigh"); }); it("includes xhigh for github-copilot gpt-5.2 refs", () => { expect(listThinkingLevels("github-copilot", "gpt-5.2")).toContain("xhigh"); expect(listThinkingLevels("github-copilot", "gpt-5.2-codex")).toContain("xhigh"); }); it("excludes xhigh for non-codex models", () => { expect(listThinkingLevels(undefined, "gpt-4.1-mini")).not.toContain("xhigh"); }); it("always includes adaptive", () => { expect(listThinkingLevels(undefined, "gpt-4.1-mini")).toContain("adaptive"); expect(listThinkingLevels("anthropic", "claude-opus-4-6")).toContain("adaptive"); }); }); describe("listThinkingLevelLabels", () => { it("returns on/off for ZAI", () => { expect(listThinkingLevelLabels("zai", "glm-4.7")).toEqual(["off", "on"]); }); it("returns full levels for non-ZAI", () => { expect(listThinkingLevelLabels("openai", "gpt-4.1-mini")).toContain("low"); expect(listThinkingLevelLabels("openai", "gpt-4.1-mini")).not.toContain("on"); }); }); describe("resolveThinkingDefaultForModel", () => { it("defaults Claude 4.6 models to adaptive", () => { expect( resolveThinkingDefaultForModel({ provider: "anthropic", model: "claude-opus-4-6" }), ).toBe("adaptive"); }); it("treats Bedrock Anthropic aliases as adaptive", () => { expect( resolveThinkingDefaultForModel({ provider: "aws-bedrock", model: "claude-sonnet-4-6" }), ).toBe("adaptive"); }); it("defaults reasoning-capable catalog models to low", () => { expect( resolveThinkingDefaultForModel({ provider: "openai", model: "gpt-5.4", catalog: [{ provider: "openai", id: "gpt-5.4", reasoning: true }], }), ).toBe("low"); }); it("defaults to off when no adaptive or reasoning hint is present", () => { expect( resolveThinkingDefaultForModel({ provider: "openai", model: "gpt-4.1-mini", catalog: [{ provider: "openai", id: "gpt-4.1-mini", reasoning: false }], }), ).toBe("off"); }); }); describe("normalizeReasoningLevel", () => { it("accepts on/off", () => { expect(normalizeReasoningLevel("on")).toBe("on"); expect(normalizeReasoningLevel("off")).toBe("off"); }); it("accepts show/hide", () => { expect(normalizeReasoningLevel("show")).toBe("on"); expect(normalizeReasoningLevel("hide")).toBe("off"); }); it("accepts stream", () => { expect(normalizeReasoningLevel("stream")).toBe("stream"); expect(normalizeReasoningLevel("streaming")).toBe("stream"); }); });