| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- // End-to-end regression test for opencode#24432.
- //
- // Routes through the actual ai-gateway-provider + @ai-sdk/openai-compatible
- // chain that provider.ts:811 builds at runtime, with only the network boundary
- // stubbed. Asserts that `reasoning_effort` (and other provider options the
- // transform emits) actually land in the body Cloudflare AI Gateway forwards
- // upstream, which is the only place the bug was observable.
- import { afterEach, beforeEach, describe, expect, test } from "bun:test"
- import type { JSONValue } from "ai"
- import { generateText } from "ai"
- import { createAiGateway } from "ai-gateway-provider"
- import { createUnified } from "ai-gateway-provider/providers/unified"
- import { ProviderTransform } from "@/provider/transform"
- import type * as Provider from "@/provider/provider"
- import { ProviderV2 } from "@kirincode-ai/core/provider"
- import { ModelV2 } from "@kirincode-ai/core/model"
- type Captured = { url: string; outerBody: unknown }
- type ProviderOptions = Record<string, Record<string, JSONValue>>
- const realFetch = globalThis.fetch
- let captured: Captured | null = null
- function isRecord(value: unknown): value is Record<string, unknown> {
- return typeof value === "object" && value !== null && !Array.isArray(value)
- }
- beforeEach(() => {
- captured = null
- const handle = async (input: Parameters<typeof fetch>[0], init?: Parameters<typeof fetch>[1]): Promise<Response> => {
- const url = typeof input === "string" ? input : input instanceof URL ? input.toString() : input.url
- if (url.startsWith("https://gateway.ai.cloudflare.com/")) {
- const bodyText = typeof init?.body === "string" ? init.body : ""
- captured = { url, outerBody: bodyText ? JSON.parse(bodyText) : null }
- return new Response(
- JSON.stringify({
- id: "chatcmpl-test",
- object: "chat.completion",
- created: 0,
- model: "openai/gpt-5.4",
- choices: [{ index: 0, message: { role: "assistant", content: "ok" }, finish_reason: "stop" }],
- usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
- }),
- { status: 200, headers: { "Content-Type": "application/json" } },
- )
- }
- return realFetch(input, init)
- }
- // `typeof fetch` includes Bun's `preconnect` method; preserve it from realFetch.
- const stubFetch: typeof fetch = Object.assign(handle, { preconnect: realFetch.preconnect.bind(realFetch) })
- globalThis.fetch = stubFetch
- })
- afterEach(() => {
- globalThis.fetch = realFetch
- })
- const cfModel = (apiId: string, releaseDate = "2026-03-05"): Provider.Model => ({
- id: ModelV2.ID.make(`cloudflare-ai-gateway/${apiId}`),
- providerID: ProviderV2.ID.make("cloudflare-ai-gateway"),
- name: apiId,
- api: { id: apiId, url: "https://gateway.ai.cloudflare.com/v1/compat", npm: "ai-gateway-provider" },
- capabilities: {
- reasoning: true,
- temperature: false,
- attachment: true,
- toolcall: true,
- input: { text: true, audio: false, image: true, video: false, pdf: true },
- output: { text: true, audio: false, image: false, video: false, pdf: false },
- interleaved: false,
- },
- cost: { input: 1, output: 1, cache: { read: 0, write: 0 } },
- limit: { context: 1_000_000, output: 128_000 },
- status: "active",
- options: {},
- headers: {},
- release_date: releaseDate,
- })
- // ai-gateway-provider sends an array of step descriptors; each entry's `query`
- // is the body forwarded to the upstream provider.
- function extractUpstreamQuery(body: unknown): Record<string, unknown> | undefined {
- if (!Array.isArray(body) || body.length === 0) return undefined
- const first = body[0]
- if (!isRecord(first)) return undefined
- const query = first.query
- return isRecord(query) ? query : undefined
- }
- async function callThroughGateway(apiId: string, providerOptions: ProviderOptions) {
- const aigateway = createAiGateway({ accountId: "test", gateway: "test", apiKey: "test" })
- const unified = createUnified()
- await generateText({ model: aigateway(unified(apiId)), prompt: "hi", providerOptions })
- return extractUpstreamQuery(captured?.outerBody)
- }
- describe("cf-ai-gateway end-to-end (regression: #24432)", () => {
- test("ProviderTransform.providerOptions output puts reasoning_effort on the wire", async () => {
- // The full chain the runtime exercises:
- // transform.providerOptions() -> openaiCompatible key
- // -> @ai-sdk/openai-compatible reads it as compatibleOptions
- // -> emits body.reasoning_effort
- // -> ai-gateway-provider wraps the body and forwards to gateway.ai.cloudflare.com
- const opts = ProviderTransform.providerOptions(cfModel("openai/gpt-5.4"), { reasoningEffort: "xhigh" })
- expect(opts).toEqual({ openaiCompatible: { reasoningEffort: "xhigh" } })
- const upstream = await callThroughGateway("openai/gpt-5.4", opts)
- expect(upstream?.reasoning_effort).toBe("xhigh")
- })
- test("variants() output for openai/gpt-5.4 lands xhigh on the wire", async () => {
- // The other half of the bug: workflow `variant: xhigh` flows through variants()
- // and must reach the wire. variants() returns the providerOptions payload
- // unwrapped; providerOptions() wraps it under the SDK key.
- const variants = ProviderTransform.variants(cfModel("openai/gpt-5.4"))
- expect(variants.xhigh).toEqual({ reasoningEffort: "xhigh" })
- const opts = ProviderTransform.providerOptions(cfModel("openai/gpt-5.4"), variants.xhigh)
- const upstream = await callThroughGateway("openai/gpt-5.4", opts)
- expect(upstream?.reasoning_effort).toBe("xhigh")
- })
- test("legacy buggy key 'cloudflare-ai-gateway' does NOT reach the wire (proves the bug)", async () => {
- // Sanity: confirms the bug class. If a future change accidentally restores
- // providerID-keyed providerOptions, this test fails before users notice.
- const upstream = await callThroughGateway("openai/gpt-5.4", {
- "cloudflare-ai-gateway": { reasoningEffort: "high" },
- })
- expect(upstream?.reasoning_effort).toBeUndefined()
- })
- })
|