|
|
@@ -3,6 +3,7 @@ import { describe, expect } from "bun:test"
|
|
|
import type { LanguageModelV3 } from "@ai-sdk/provider"
|
|
|
import { Effect } from "effect"
|
|
|
import { Catalog } from "@opencode-ai/core/catalog"
|
|
|
+import { Credential } from "@opencode-ai/core/credential"
|
|
|
import { Integration } from "@opencode-ai/core/integration"
|
|
|
import { ModelV2 } from "@opencode-ai/core/model"
|
|
|
import { PluginV2 } from "@opencode-ai/core/plugin"
|
|
|
@@ -27,6 +28,20 @@ function required<T>(value: T | undefined): T {
|
|
|
return value
|
|
|
}
|
|
|
|
|
|
+function eventually<A>(
|
|
|
+ effect: Effect.Effect<A>,
|
|
|
+ predicate: (value: A) => boolean,
|
|
|
+ remaining = 1000,
|
|
|
+): Effect.Effect<A, Error> {
|
|
|
+ return Effect.gen(function* () {
|
|
|
+ const value = yield* effect
|
|
|
+ if (predicate(value)) return value
|
|
|
+ if (remaining === 0) return yield* Effect.fail(new Error("Timed out waiting for value"))
|
|
|
+ yield* Effect.promise(() => Bun.sleep(1))
|
|
|
+ return yield* eventually(effect, predicate, remaining - 1)
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
function fakeSelectorSdk(calls: string[]) {
|
|
|
const make = (method: string) => (id: string) => {
|
|
|
calls.push(`${method}:${id}`)
|
|
|
@@ -153,6 +168,80 @@ describe("OpenAIPlugin", () => {
|
|
|
}),
|
|
|
)
|
|
|
|
|
|
+ it.effect("filters the OpenAI catalog to codex-eligible models under a ChatGPT connection", () =>
|
|
|
+ Effect.gen(function* () {
|
|
|
+ const catalog = yield* Catalog.Service
|
|
|
+ const credentials = yield* Credential.Service
|
|
|
+ yield* catalog.transform((catalog) => {
|
|
|
+ const item = ProviderV2.Info.make({
|
|
|
+ ...ProviderV2.Info.empty(ProviderV2.ID.openai),
|
|
|
+ api: { type: "aisdk", package: "@ai-sdk/openai" },
|
|
|
+ })
|
|
|
+ catalog.provider.update(item.id, (draft) => {
|
|
|
+ draft.api = item.api
|
|
|
+ })
|
|
|
+ catalog.model.update(item.id, ModelV2.ID.make("gpt-5.5"), (model) => {
|
|
|
+ model.cost = [{ input: 1, output: 2, cache: { read: 0.1, write: 0 } }]
|
|
|
+ })
|
|
|
+ catalog.model.update(item.id, ModelV2.ID.make("gpt-5.5-pro"), () => {})
|
|
|
+ catalog.model.update(item.id, ModelV2.ID.make("gpt-4.1"), () => {})
|
|
|
+ })
|
|
|
+ yield* credentials.create({
|
|
|
+ integrationID: Integration.ID.make("openai"),
|
|
|
+ value: Credential.OAuth.make({
|
|
|
+ type: "oauth",
|
|
|
+ methodID: Integration.MethodID.make("chatgpt-browser"),
|
|
|
+ access: "chatgpt-token",
|
|
|
+ refresh: "refresh",
|
|
|
+ expires: Date.now() + 60_000,
|
|
|
+ metadata: { accountID: "acct_123" },
|
|
|
+ }),
|
|
|
+ })
|
|
|
+ yield* addPlugin()
|
|
|
+
|
|
|
+ const eligible = required(
|
|
|
+ yield* eventually(
|
|
|
+ catalog.model.get(ProviderV2.ID.openai, ModelV2.ID.make("gpt-5.5")),
|
|
|
+ (model) => model?.cost.length === 0,
|
|
|
+ ),
|
|
|
+ )
|
|
|
+ expect(eligible.enabled).toBe(true)
|
|
|
+ expect(required(yield* catalog.model.get(ProviderV2.ID.openai, ModelV2.ID.make("gpt-5.5-pro"))).enabled).toBe(
|
|
|
+ false,
|
|
|
+ )
|
|
|
+ expect(required(yield* catalog.model.get(ProviderV2.ID.openai, ModelV2.ID.make("gpt-4.1"))).enabled).toBe(false)
|
|
|
+ }),
|
|
|
+ )
|
|
|
+
|
|
|
+ it.effect("keeps the full OpenAI catalog under an API key connection", () =>
|
|
|
+ Effect.gen(function* () {
|
|
|
+ const catalog = yield* Catalog.Service
|
|
|
+ const credentials = yield* Credential.Service
|
|
|
+ yield* catalog.transform((catalog) => {
|
|
|
+ const item = ProviderV2.Info.make({
|
|
|
+ ...ProviderV2.Info.empty(ProviderV2.ID.openai),
|
|
|
+ api: { type: "aisdk", package: "@ai-sdk/openai" },
|
|
|
+ })
|
|
|
+ catalog.provider.update(item.id, (draft) => {
|
|
|
+ draft.api = item.api
|
|
|
+ })
|
|
|
+ catalog.model.update(item.id, ModelV2.ID.make("gpt-5.5"), () => {})
|
|
|
+ catalog.model.update(item.id, ModelV2.ID.make("gpt-4.1"), () => {})
|
|
|
+ })
|
|
|
+ yield* credentials.create({
|
|
|
+ integrationID: Integration.ID.make("openai"),
|
|
|
+ value: Credential.Key.make({ type: "key", key: "sk-test" }),
|
|
|
+ })
|
|
|
+ yield* addPlugin()
|
|
|
+ // The connection refresh is asynchronous; give it time to settle before
|
|
|
+ // asserting nothing was filtered.
|
|
|
+ yield* Effect.promise(() => Bun.sleep(25))
|
|
|
+
|
|
|
+ expect(required(yield* catalog.model.get(ProviderV2.ID.openai, ModelV2.ID.make("gpt-5.5"))).enabled).toBe(true)
|
|
|
+ expect(required(yield* catalog.model.get(ProviderV2.ID.openai, ModelV2.ID.make("gpt-4.1"))).enabled).toBe(true)
|
|
|
+ }),
|
|
|
+ )
|
|
|
+
|
|
|
it.effect("does not disable gpt-5-chat-latest for non-OpenAI providers", () =>
|
|
|
Effect.gen(function* () {
|
|
|
const catalog = yield* Catalog.Service
|