| import { describe, expect } from "bun:test" |
| import { Effect } from "effect" |
| import { Catalog } from "@opencode-ai/core/catalog" |
| import { PluginV2 } from "@opencode-ai/core/plugin" |
| import { PluginHost } from "@opencode-ai/core/plugin/host" |
| import { ProviderPlugins } from "@opencode-ai/core/plugin/provider" |
| import { KiloPlugin } from "@opencode-ai/core/plugin/provider/kilo" |
| import { ProviderV2 } from "@opencode-ai/core/provider" |
| import { testEffect } from "../lib/effect" |
| import { PluginTestLayer } from "./fixture" |
|
|
| const it = testEffect(PluginTestLayer) |
|
|
| const addPlugin = Effect.fn(function* () { |
| const plugin = yield* PluginV2.Service |
| const host = yield* PluginHost.make(plugin) |
| yield* KiloPlugin.effect(host) |
| }) |
|
|
| describe("KiloPlugin", () => { |
| it.effect("is registered so legacy referer headers can be applied", () => |
| Effect.sync(() => expect(ProviderPlugins.map((item) => item.id)).toContain(PluginV2.ID.make("kilo"))), |
| ) |
|
|
| it.effect("applies legacy referer headers only to kilo", () => |
| Effect.gen(function* () { |
| const catalog = yield* Catalog.Service |
| yield* catalog.transform((catalog) => { |
| catalog.provider.update(ProviderV2.ID.make("kilo"), (provider) => { |
| provider.api = { |
| type: "aisdk", |
| package: "@ai-sdk/openai-compatible", |
| url: "https://api.kilo.ai/api/gateway", |
| } |
| provider.request = { headers: { Existing: "value" }, body: {} } |
| }) |
| catalog.provider.update(ProviderV2.ID.openrouter, () => {}) |
| }) |
| yield* addPlugin() |
| expect((yield* catalog.provider.get(ProviderV2.ID.make("kilo")))?.request.headers).toEqual({ |
| Existing: "value", |
| "HTTP-Referer": "https://opencode.ai/", |
| "X-Title": "opencode", |
| }) |
| expect((yield* catalog.provider.get(ProviderV2.ID.openrouter))?.request.headers).toEqual({}) |
| }), |
| ) |
|
|
| it.effect("uses the exact legacy Kilo header casing and set", () => |
| Effect.gen(function* () { |
| const catalog = yield* Catalog.Service |
| yield* catalog.transform((catalog) => { |
| catalog.provider.update(ProviderV2.ID.make("kilo"), (provider) => { |
| provider.api = { |
| type: "aisdk", |
| package: "@ai-sdk/openai-compatible", |
| url: "https://api.kilo.ai/api/gateway", |
| } |
| }) |
| }) |
| yield* addPlugin() |
|
|
| expect((yield* catalog.provider.get(ProviderV2.ID.make("kilo")))?.request.headers).toEqual({ |
| "HTTP-Referer": "https://opencode.ai/", |
| "X-Title": "opencode", |
| }) |
| expect((yield* catalog.provider.get(ProviderV2.ID.make("kilo")))?.request.headers).not.toHaveProperty( |
| "http-referer", |
| ) |
| expect((yield* catalog.provider.get(ProviderV2.ID.make("kilo")))?.request.headers).not.toHaveProperty("x-title") |
| expect((yield* catalog.provider.get(ProviderV2.ID.make("kilo")))?.request.headers).not.toHaveProperty("X-Source") |
| }), |
| ) |
|
|
| it.effect("uses the legacy provider-id guard instead of endpoint package matching", () => |
| Effect.gen(function* () { |
| const catalog = yield* Catalog.Service |
| yield* catalog.transform((catalog) => { |
| catalog.provider.update(ProviderV2.ID.make("kilo"), (provider) => { |
| provider.api = { |
| type: "aisdk", |
| package: "@ai-sdk/openai-compatible", |
| url: "https://api.kilo.ai/api/gateway", |
| } |
| }) |
| catalog.provider.update(ProviderV2.ID.make("custom-kilo"), (provider) => { |
| provider.api = { type: "aisdk", package: "kilo" } |
| }) |
| }) |
| yield* addPlugin() |
|
|
| expect((yield* catalog.provider.get(ProviderV2.ID.make("kilo")))?.request.headers).toEqual({ |
| "HTTP-Referer": "https://opencode.ai/", |
| "X-Title": "opencode", |
| }) |
| expect((yield* catalog.provider.get(ProviderV2.ID.make("custom-kilo")))?.request.headers).toEqual({}) |
| }), |
| ) |
| }) |
|
|