111 lines
4.0 KiB
TypeScript
111 lines
4.0 KiB
TypeScript
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 { ZenmuxPlugin } from "@opencode-ai/core/plugin/provider/zenmux"
|
|
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* ZenmuxPlugin.effect(host)
|
|
})
|
|
|
|
function required<T>(value: T | undefined): T {
|
|
if (value === undefined) throw new Error("Expected value")
|
|
return value
|
|
}
|
|
|
|
describe("ZenmuxPlugin", () => {
|
|
it.effect("is registered so legacy referer headers can be applied", () =>
|
|
Effect.sync(() => expect(ProviderPlugins.map((item) => item.id)).toContain(PluginV2.ID.make("zenmux"))),
|
|
)
|
|
|
|
it.effect("applies the exact legacy Zenmux headers", () =>
|
|
Effect.gen(function* () {
|
|
const catalog = yield* Catalog.Service
|
|
yield* catalog.transform((catalog) => {
|
|
catalog.provider.update(ProviderV2.ID.make("zenmux"), (provider) => {
|
|
provider.api = {
|
|
type: "aisdk",
|
|
package: "@ai-sdk/openai-compatible",
|
|
url: "https://zenmux.ai/api/v1",
|
|
}
|
|
})
|
|
})
|
|
yield* addPlugin()
|
|
const result = required(yield* catalog.provider.get(ProviderV2.ID.make("zenmux")))
|
|
expect(result.request.headers).toEqual({ "HTTP-Referer": "https://opencode.ai/", "X-Title": "opencode" })
|
|
expect(Object.keys(result.request.headers).sort()).toEqual(["HTTP-Referer", "X-Title"])
|
|
}),
|
|
)
|
|
|
|
it.effect("merges legacy Zenmux headers with existing headers", () =>
|
|
Effect.gen(function* () {
|
|
const catalog = yield* Catalog.Service
|
|
yield* catalog.transform((catalog) => {
|
|
catalog.provider.update(ProviderV2.ID.make("zenmux"), (provider) => {
|
|
provider.api = {
|
|
type: "aisdk",
|
|
package: "@ai-sdk/openai-compatible",
|
|
url: "https://zenmux.ai/api/v1",
|
|
}
|
|
provider.request.headers.Existing = "value"
|
|
})
|
|
})
|
|
yield* addPlugin()
|
|
|
|
expect(required(yield* catalog.provider.get(ProviderV2.ID.make("zenmux"))).request.headers).toEqual({
|
|
Existing: "value",
|
|
"HTTP-Referer": "https://opencode.ai/",
|
|
"X-Title": "opencode",
|
|
})
|
|
}),
|
|
)
|
|
|
|
it.effect("lets configured Zenmux legacy headers override defaults", () =>
|
|
Effect.gen(function* () {
|
|
const catalog = yield* Catalog.Service
|
|
yield* catalog.transform((catalog) => {
|
|
catalog.provider.update(ProviderV2.ID.make("zenmux"), (provider) => {
|
|
provider.api = {
|
|
type: "aisdk",
|
|
package: "@ai-sdk/openai-compatible",
|
|
url: "https://zenmux.ai/api/v1",
|
|
}
|
|
provider.request.headers = { "HTTP-Referer": "https://example.com/", "X-Title": "custom-title" }
|
|
})
|
|
})
|
|
yield* addPlugin()
|
|
|
|
expect(required(yield* catalog.provider.get(ProviderV2.ID.make("zenmux"))).request.headers).toEqual({
|
|
"HTTP-Referer": "https://example.com/",
|
|
"X-Title": "custom-title",
|
|
})
|
|
}),
|
|
)
|
|
|
|
it.effect("guards legacy Zenmux headers to the exact zenmux provider id", () =>
|
|
Effect.gen(function* () {
|
|
const catalog = yield* Catalog.Service
|
|
yield* catalog.transform((catalog) => {
|
|
catalog.provider.update(ProviderV2.ID.openrouter, (provider) => {
|
|
provider.request.headers = { "HTTP-Referer": "https://example.com/", "X-Title": "custom-title" }
|
|
})
|
|
})
|
|
yield* addPlugin()
|
|
|
|
expect(required(yield* catalog.provider.get(ProviderV2.ID.openrouter)).request.headers).toEqual({
|
|
"HTTP-Referer": "https://example.com/",
|
|
"X-Title": "custom-title",
|
|
})
|
|
}),
|
|
)
|
|
})
|