| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401 |
- import { describe, expect } from "bun:test"
- import { LayerNode } from "@kirincode-ai/core/effect/layer-node"
- import { FSUtil } from "@kirincode-ai/core/fs-util"
- import { Effect, Layer } from "effect"
- import path from "path"
- import { resetDatabase } from "../fixture/db"
- import { TestInstance } from "../fixture/fixture"
- import { markPluginDependenciesReady } from "../fixture/plugin"
- import { testEffect } from "../lib/effect"
- import { httpApiLayer, request } from "./httpapi-layer"
- const testStateLayer = Layer.effectDiscard(
- Effect.acquireRelease(
- Effect.promise(() => resetDatabase()),
- () => Effect.promise(() => resetDatabase()),
- ),
- )
- const it = testEffect(Layer.mergeAll(testStateLayer, LayerNode.compile(FSUtil.node), httpApiLayer))
- const projectOptions = { config: { formatter: false, lsp: false } }
- const providerID = "test-oauth-parity"
- const oauthURL = "https://example.com/oauth"
- const oauthInstructions = "Finish OAuth"
- function providerListHasFetch(list: unknown) {
- if (!Array.isArray(list)) return false
- return list.some((item: unknown) => {
- if (typeof item !== "object" || item === null || !("id" in item) || !("options" in item)) return false
- if (item.id !== "google") return false
- if (typeof item.options !== "object" || item.options === null) return false
- return "fetch" in item.options
- })
- }
- function hasProviderWithFetch(input: unknown, key: "all" | "providers") {
- if (typeof input !== "object" || input === null) return false
- if (key === "all") return "all" in input && providerListHasFetch(input.all)
- return "providers" in input && providerListHasFetch(input.providers)
- }
- function isRecord(value: unknown): value is Record<string, unknown> {
- return typeof value === "object" && value !== null && !Array.isArray(value)
- }
- function providerList(input: unknown, key: "all" | "providers") {
- if (!isRecord(input)) return []
- if (!Array.isArray(input[key])) return []
- return input[key]
- }
- function providerByID(input: unknown, key: "all" | "providers", id: string) {
- return providerList(input, key).find((provider) => isRecord(provider) && provider.id === id)
- }
- function hasNonZeroModelCost(input: unknown, key: "all" | "providers", id: string) {
- const provider = providerByID(input, key, id)
- if (!isRecord(provider) || !isRecord(provider.models)) return false
- return Object.values(provider.models).some((model) => {
- if (!isRecord(model) || !isRecord(model.cost) || !isRecord(model.cost.cache)) return false
- return [model.cost.input, model.cost.output, model.cost.cache.read, model.cost.cache.write].some(
- (cost) => typeof cost === "number" && cost > 0,
- )
- })
- }
- function hasProviderMutationMarker(input: unknown, key: "all" | "providers", id: string) {
- const provider = providerByID(input, key, id)
- if (!isRecord(provider)) return false
- if (provider.name === "mutated-provider") return true
- return isRecord(provider.options) && provider.options.mutatedByPlugin === true
- }
- function requestAuthorize(input: {
- providerID: string
- method: number
- headers: HeadersInit
- inputs?: Record<string, string>
- }) {
- return Effect.gen(function* () {
- const response = yield* request(`/provider/${input.providerID}/oauth/authorize`, {
- method: "POST",
- headers: input.headers,
- body: JSON.stringify({ method: input.method, ...(input.inputs ? { inputs: input.inputs } : {}) }),
- })
- return {
- status: response.status,
- body: yield* response.text,
- }
- })
- }
- function requestCallback(input: { providerID: string; method: number; headers: HeadersInit; code?: string }) {
- return Effect.gen(function* () {
- const response = yield* request(`/provider/${input.providerID}/oauth/callback`, {
- method: "POST",
- headers: input.headers,
- body: JSON.stringify({ method: input.method, ...(input.code ? { code: input.code } : {}) }),
- })
- return {
- status: response.status,
- body: yield* response.text,
- }
- })
- }
- function writeProviderAuthPlugin(dir: string) {
- return Effect.gen(function* () {
- const fs = yield* FSUtil.Service
- yield* Effect.promise(() => markPluginDependenciesReady(path.join(dir, ".kirincode")))
- yield* fs.writeWithDirs(
- path.join(dir, ".kirincode", "plugin", "provider-oauth-parity.ts"),
- [
- "export default {",
- ' id: "test.provider-oauth-parity",',
- " server: async () => ({",
- " auth: {",
- ` provider: "${providerID}",`,
- " methods: [",
- ' { type: "api", label: "API key" },',
- " {",
- ' type: "oauth",',
- ' label: "OAuth",',
- " authorize: async () => ({",
- ` url: "${oauthURL}",`,
- ' method: "code",',
- ` instructions: "${oauthInstructions}",`,
- " callback: async () => ({ type: 'success', key: 'token' }),",
- " }),",
- " },",
- " ],",
- " },",
- " }),",
- "}",
- "",
- ].join("\n"),
- )
- })
- }
- function writeProviderAuthValidationPlugin(dir: string) {
- return Effect.gen(function* () {
- const fs = yield* FSUtil.Service
- yield* Effect.promise(() => markPluginDependenciesReady(path.join(dir, ".kirincode")))
- yield* fs.writeWithDirs(
- path.join(dir, ".kirincode", "plugin", "provider-oauth-validation.ts"),
- [
- "export default {",
- ' id: "test.provider-oauth-validation",',
- " server: async () => ({",
- " auth: {",
- ' provider: "test-oauth-validation",',
- " methods: [",
- " {",
- ' type: "oauth",',
- ' label: "OAuth",',
- " prompts: [",
- " {",
- ' type: "text",',
- ' key: "token",',
- ' message: "Token",',
- " validate: (value) => value === 'ok' ? undefined : 'Token must be ok',",
- " },",
- " ],",
- " authorize: async () => ({",
- ` url: "${oauthURL}",`,
- ' method: "code",',
- ` instructions: "${oauthInstructions}",`,
- " callback: async () => ({ type: 'success', key: 'token' }),",
- " }),",
- " },",
- " ],",
- " },",
- " }),",
- "}",
- "",
- ].join("\n"),
- )
- })
- }
- function writeFunctionOptionsPlugin(dir: string) {
- return Effect.gen(function* () {
- const fs = yield* FSUtil.Service
- yield* Effect.promise(() => markPluginDependenciesReady(path.join(dir, ".kirincode")))
- yield* fs.writeWithDirs(
- path.join(dir, ".kirincode", "plugin", "provider-function-options.ts"),
- [
- "export default {",
- ' id: "test.provider-function-options",',
- " server: async () => ({",
- " auth: {",
- ' provider: "google",',
- " loader: async (_getAuth, provider) => {",
- " for (const model of Object.values(provider.models ?? {})) {",
- " model.cost = { input: 0, output: 0 }",
- " }",
- " return {",
- ' apiKey: "",',
- " fetch: async (input, init) => fetch(input, init),",
- " }",
- " },",
- " methods: [{ type: 'api', label: 'API key' }],",
- " },",
- " }),",
- "}",
- "",
- ].join("\n"),
- )
- })
- }
- function writeProviderModelsMutationPlugin(dir: string) {
- return Effect.gen(function* () {
- const fs = yield* FSUtil.Service
- yield* Effect.promise(() => markPluginDependenciesReady(path.join(dir, ".kirincode")))
- yield* fs.writeWithDirs(
- path.join(dir, ".kirincode", "plugin", "provider-models-mutation.ts"),
- [
- "export default {",
- ' id: "test.provider-models-mutation",',
- " server: async () => ({",
- " provider: {",
- ' id: "google",',
- " models: async (provider) => {",
- " const models = Object.fromEntries(",
- " Object.entries(provider.models ?? {}).map(([id, model]) => [id, { ...model }]),",
- " )",
- ' provider.name = "mutated-provider"',
- " provider.options = { ...provider.options, mutatedByPlugin: true }",
- " for (const model of Object.values(provider.models ?? {})) {",
- " model.cost = { input: 0, output: 0 }",
- " }",
- " return models",
- " },",
- " },",
- " }),",
- "}",
- "",
- ].join("\n"),
- )
- })
- }
- function setEnvScoped(key: string, value: string) {
- return Effect.acquireRelease(
- Effect.sync(() => {
- const previous = process.env[key]
- process.env[key] = value
- return previous
- }),
- (previous) =>
- Effect.sync(() => {
- if (previous === undefined) delete process.env[key]
- else process.env[key] = previous
- }),
- )
- }
- describe("provider HttpApi", () => {
- it.instance.skip(
- "returns public v2 provider not found errors",
- Effect.gen(function* () {
- const directory = (yield* TestInstance).directory
- const response = yield* request("/api/provider/missing", {
- headers: { "x-opencode-directory": directory },
- })
- expect(response.status).toBe(404)
- expect(yield* response.json).toEqual({
- _tag: "ProviderNotFoundError",
- providerID: "missing",
- message: "Provider not found: missing",
- })
- }),
- projectOptions,
- )
- it.instance(
- "serves OAuth authorize response shapes",
- Effect.gen(function* () {
- const directory = (yield* TestInstance).directory
- const headers = { "x-opencode-directory": directory, "content-type": "application/json" }
- const api = yield* requestAuthorize({
- providerID,
- method: 0,
- headers,
- })
- // method 0 (api-key style) — authorize() resolves with no further
- // redirect; #26474 changed the wire format to JSON `null` so clients
- // can `.json()` parse uniformly instead of getting an empty body
- // that throws.
- expect(api).toEqual({ status: 200, body: "null" })
- const oauth = yield* requestAuthorize({
- providerID,
- method: 1,
- headers,
- })
- expect(JSON.parse(oauth.body)).toEqual({
- url: oauthURL,
- method: "code",
- instructions: oauthInstructions,
- })
- }),
- { ...projectOptions, init: writeProviderAuthPlugin },
- 30000,
- )
- it.instance(
- "returns declared provider auth validation errors",
- Effect.gen(function* () {
- const directory = (yield* TestInstance).directory
- const response = yield* requestAuthorize({
- providerID: "test-oauth-validation",
- method: 0,
- inputs: { token: "nope" },
- headers: { "x-opencode-directory": directory, "content-type": "application/json" },
- })
- expect(response.status).toBe(400)
- expect(JSON.parse(response.body)).toEqual({
- name: "ProviderAuthValidationFailed",
- data: { field: "token", message: "Token must be ok" },
- })
- }),
- { ...projectOptions, init: writeProviderAuthValidationPlugin },
- 30000,
- )
- it.instance(
- "returns declared provider auth callback errors",
- Effect.gen(function* () {
- const directory = (yield* TestInstance).directory
- const response = yield* requestCallback({
- providerID,
- method: 0,
- headers: { "x-opencode-directory": directory, "content-type": "application/json" },
- })
- expect(response.status).toBe(400)
- expect(JSON.parse(response.body)).toEqual({
- name: "ProviderAuthOauthMissing",
- data: { providerID },
- })
- }),
- projectOptions,
- 30000,
- )
- it.instance(
- "serves provider lists when auth loaders add runtime fetch options",
- Effect.gen(function* () {
- const directory = (yield* TestInstance).directory
- yield* setEnvScoped(
- "KIRINCODE_AUTH_CONTENT",
- JSON.stringify({
- google: { type: "oauth", refresh: "dummy", access: "dummy", expires: 9999999999999 },
- }),
- )
- const headers = { "x-opencode-directory": directory }
- const providerResponse = yield* request("/provider", { headers })
- const configResponse = yield* request("/config/providers", { headers })
- expect(providerResponse.status).toBe(200)
- expect(configResponse.status).toBe(200)
- const providerBody = yield* providerResponse.json
- const configBody = yield* configResponse.json
- expect(hasProviderWithFetch(providerBody, "all")).toBe(false)
- expect(hasProviderWithFetch(configBody, "providers")).toBe(false)
- expect(hasNonZeroModelCost(providerBody, "all", "google")).toBe(true)
- expect(hasNonZeroModelCost(configBody, "providers", "google")).toBe(true)
- }),
- { ...projectOptions, init: writeFunctionOptionsPlugin },
- )
- it.instance(
- "keeps provider.models hook input mutations out of provider state",
- Effect.gen(function* () {
- const directory = (yield* TestInstance).directory
- const headers = { "x-opencode-directory": directory }
- const providerResponse = yield* request("/provider", { headers })
- const configResponse = yield* request("/config/providers", { headers })
- expect(providerResponse.status).toBe(200)
- expect(configResponse.status).toBe(200)
- const providerBody = yield* providerResponse.json
- const configBody = yield* configResponse.json
- expect(hasProviderMutationMarker(providerBody, "all", "google")).toBe(false)
- expect(hasProviderMutationMarker(configBody, "providers", "google")).toBe(false)
- expect(hasNonZeroModelCost(providerBody, "all", "google")).toBe(true)
- }),
- { ...projectOptions, init: writeProviderModelsMutationPlugin },
- )
- })
|