81 lines
3.2 KiB
TypeScript
81 lines
3.2 KiB
TypeScript
import { describe, expect } from "bun:test"
|
|
import { Effect } from "effect"
|
|
import { Catalog } from "@opencode-ai/core/catalog"
|
|
import { Integration } from "@opencode-ai/core/integration"
|
|
import { PluginV2 } from "@opencode-ai/core/plugin"
|
|
import { PluginHost } from "@opencode-ai/core/plugin/host"
|
|
import { ProviderPlugins } from "@opencode-ai/core/plugin/provider"
|
|
import { LLMGatewayPlugin } from "@opencode-ai/core/plugin/provider/llmgateway"
|
|
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)
|
|
const integration = yield* Integration.Service
|
|
yield* LLMGatewayPlugin.effect(host).pipe(Effect.provideService(Integration.Service, integration))
|
|
})
|
|
|
|
describe("LLMGatewayPlugin", () => {
|
|
it.effect("is registered so legacy referer headers can be applied", () =>
|
|
Effect.sync(() => expect(ProviderPlugins.map((item) => item.id)).toContain(PluginV2.ID.make("llmgateway"))),
|
|
)
|
|
|
|
it.effect("applies legacy referer headers only to enabled llmgateway", () =>
|
|
Effect.gen(function* () {
|
|
const catalog = yield* Catalog.Service
|
|
const integrations = yield* Integration.Service
|
|
yield* integrations.transform((editor) => {
|
|
editor.update(Integration.ID.make("llmgateway"), () => {})
|
|
editor.update(Integration.ID.make("openrouter"), () => {})
|
|
})
|
|
yield* catalog.transform((catalog) => {
|
|
catalog.provider.update(ProviderV2.ID.make("llmgateway"), (provider) => {
|
|
provider.api = {
|
|
type: "aisdk",
|
|
package: "@ai-sdk/openai-compatible",
|
|
url: "https://api.llmgateway.io/v1",
|
|
}
|
|
provider.request = { headers: { Existing: "value" }, body: {} }
|
|
})
|
|
catalog.provider.update(ProviderV2.ID.openrouter, () => {})
|
|
})
|
|
yield* addPlugin()
|
|
expect((yield* catalog.provider.get(ProviderV2.ID.make("llmgateway")))?.request.headers).toEqual({
|
|
Existing: "value",
|
|
"HTTP-Referer": "https://opencode.ai/",
|
|
"X-Title": "opencode",
|
|
"X-Source": "opencode",
|
|
})
|
|
expect((yield* catalog.provider.get(ProviderV2.ID.openrouter))?.request.headers).toEqual({})
|
|
}),
|
|
)
|
|
|
|
it.effect("does not apply legacy headers to a disabled llmgateway provider", () =>
|
|
Effect.gen(function* () {
|
|
const catalog = yield* Catalog.Service
|
|
const integrations = yield* Integration.Service
|
|
yield* integrations.transform((editor) => {
|
|
editor.update(Integration.ID.make("llmgateway"), () => {})
|
|
})
|
|
yield* catalog.transform((catalog) => {
|
|
catalog.provider.update(ProviderV2.ID.make("llmgateway"), (provider) => {
|
|
provider.disabled = true
|
|
provider.api = {
|
|
type: "aisdk",
|
|
package: "@ai-sdk/openai-compatible",
|
|
url: "https://api.llmgateway.io/v1",
|
|
}
|
|
})
|
|
})
|
|
yield* addPlugin()
|
|
|
|
expect((yield* catalog.provider.get(ProviderV2.ID.make("llmgateway")))?.disabled).toBe(true)
|
|
expect((yield* catalog.provider.get(ProviderV2.ID.make("llmgateway")))?.request.headers).toEqual({})
|
|
}),
|
|
)
|
|
})
|