| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- import { describe, expect } from "bun:test"
- import { Effect, Layer } from "effect"
- import { Auth } from "@opencode-ai/core/auth"
- import { Catalog } from "@opencode-ai/core/catalog"
- import { EventV2 } from "@opencode-ai/core/event"
- import { Location } from "@opencode-ai/core/location"
- import { PluginV2 } from "@opencode-ai/core/plugin"
- import { AccountPlugin } from "@opencode-ai/core/plugin/account"
- import { AzurePlugin } from "@opencode-ai/core/plugin/provider/azure"
- import { ProviderV2 } from "@opencode-ai/core/provider"
- import { AbsolutePath } from "@opencode-ai/core/schema"
- import { location } from "../fixture/location"
- import { testEffect } from "../lib/effect"
- import { fakeSelectorSdk, it, model, npmLayer, provider, withEnv } from "./provider-helper"
- const itWithAccount = testEffect(
- Catalog.locationLayer.pipe(
- Layer.provideMerge(Auth.defaultLayer),
- Layer.provideMerge(EventV2.defaultLayer),
- Layer.provideMerge(
- Layer.succeed(Location.Service, Location.Service.of(location({ directory: AbsolutePath.make("test") }))),
- ),
- Layer.provideMerge(npmLayer),
- ),
- )
- describe("AzurePlugin", () => {
- it.effect("resolves resourceName from env", () =>
- withEnv({ AZURE_RESOURCE_NAME: "from-env" }, () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const catalog = yield* Catalog.Service
- yield* plugin.add(AzurePlugin)
- const transform = yield* catalog.transform()
- yield* transform((catalog) => {
- catalog.provider.update(ProviderV2.ID.azure, (item) => {
- item.api = { type: "aisdk", package: "@ai-sdk/azure" }
- })
- })
- expect((yield* catalog.provider.get(ProviderV2.ID.azure)).request.body.resourceName).toBe("from-env")
- }),
- ),
- )
- it.effect("keeps explicit resourceName over env and ignores other providers", () =>
- withEnv({ AZURE_RESOURCE_NAME: "from-env" }, () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const catalog = yield* Catalog.Service
- yield* plugin.add(AzurePlugin)
- const transform = yield* catalog.transform()
- yield* transform((catalog) => {
- const azure = provider("azure", {
- api: { type: "aisdk", package: "@ai-sdk/azure" },
- request: { headers: {}, body: { resourceName: "from-config" } },
- })
- catalog.provider.update(azure.id, (item) => {
- item.api = azure.api
- item.request = azure.request
- })
- catalog.provider.update(ProviderV2.ID.openai, () => {})
- })
- expect((yield* catalog.provider.get(ProviderV2.ID.azure)).request.body.resourceName).toBe("from-config")
- expect((yield* catalog.provider.get(ProviderV2.ID.openai)).request.body.resourceName).toBeUndefined()
- }),
- ),
- )
- itWithAccount.effect("prefers account resourceName over env", () =>
- withEnv(
- {
- AZURE_RESOURCE_NAME: "from-env",
- },
- () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const accounts = yield* Auth.Service
- const catalog = yield* Catalog.Service
- const events = yield* EventV2.Service
- yield* accounts.create({
- serviceID: Auth.ServiceID.make("azure"),
- credential: new Auth.ApiKeyCredential({
- type: "api",
- key: "key",
- metadata: { resourceName: "from-account" },
- }),
- })
- yield* plugin.add({
- ...AccountPlugin,
- effect: AccountPlugin.effect.pipe(
- Effect.provideService(Auth.Service, accounts),
- Effect.provideService(Catalog.Service, catalog),
- Effect.provideService(EventV2.Service, events),
- Effect.provideService(PluginV2.Service, plugin),
- ),
- })
- yield* plugin.add(AzurePlugin)
- const transform = yield* catalog.transform()
- yield* transform((catalog) => {
- catalog.provider.update(ProviderV2.ID.azure, (item) => {
- item.api = { type: "aisdk", package: "@ai-sdk/azure" }
- })
- })
- expect((yield* catalog.provider.get(ProviderV2.ID.azure)).request.body.resourceName).toBe("from-account")
- }),
- ),
- )
- it.effect("falls back to env when configured resourceName is blank", () =>
- withEnv({ AZURE_RESOURCE_NAME: "from-env" }, () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const catalog = yield* Catalog.Service
- yield* plugin.add(AzurePlugin)
- const transform = yield* catalog.transform()
- yield* transform((catalog) => {
- const azure = provider("azure", {
- api: { type: "aisdk", package: "@ai-sdk/azure" },
- request: { headers: {}, body: { resourceName: "" } },
- })
- catalog.provider.update(azure.id, (item) => {
- item.api = azure.api
- item.request = azure.request
- })
- })
- expect((yield* catalog.provider.get(ProviderV2.ID.azure)).request.body.resourceName).toBe("from-env")
- }),
- ),
- )
- it.effect("falls back to env when configured resourceName is whitespace", () =>
- withEnv({ AZURE_RESOURCE_NAME: "from-env" }, () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const catalog = yield* Catalog.Service
- yield* plugin.add(AzurePlugin)
- const transform = yield* catalog.transform()
- yield* transform((catalog) => {
- const azure = provider("azure", {
- api: { type: "aisdk", package: "@ai-sdk/azure" },
- request: { headers: {}, body: { resourceName: " " } },
- })
- catalog.provider.update(azure.id, (item) => {
- item.api = azure.api
- item.request = azure.request
- })
- })
- expect((yield* catalog.provider.get(ProviderV2.ID.azure)).request.body.resourceName).toBe("from-env")
- }),
- ),
- )
- it.effect("allows configured baseURL without resourceName", () =>
- withEnv({ AZURE_RESOURCE_NAME: undefined }, () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- yield* plugin.add(AzurePlugin)
- const result = yield* plugin.trigger(
- "aisdk.sdk",
- {
- model: model("azure", "deployment"),
- package: "@ai-sdk/azure",
- options: { name: "azure", baseURL: "https://proxy.example.com/openai" },
- },
- {},
- )
- expect(result.sdk).toBeDefined()
- }),
- ),
- )
- it.effect("rejects missing resourceName when baseURL is not configured", () =>
- withEnv({ AZURE_RESOURCE_NAME: undefined }, () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- yield* plugin.add(AzurePlugin)
- const exit = yield* plugin
- .trigger(
- "aisdk.sdk",
- { model: model("azure", "deployment"), package: "@ai-sdk/azure", options: { name: "azure" } },
- {},
- )
- .pipe(Effect.exit)
- expect(exit._tag).toBe("Failure")
- }),
- ),
- )
- it.effect("selects chat only for completion URLs", () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const calls: string[] = []
- yield* plugin.add(AzurePlugin)
- yield* plugin.trigger(
- "aisdk.language",
- { model: model("azure", "deployment"), sdk: fakeSelectorSdk(calls), options: { useCompletionUrls: true } },
- {},
- )
- expect(calls).toEqual(["chat:deployment"])
- }),
- )
- it.effect("selects chat from per-call useCompletionUrls", () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const calls: string[] = []
- yield* plugin.add(AzurePlugin)
- yield* plugin.trigger(
- "aisdk.language",
- { model: model("azure", "deployment"), sdk: fakeSelectorSdk(calls), options: { useCompletionUrls: true } },
- {},
- )
- expect(calls).toEqual(["chat:deployment"])
- }),
- )
- it.effect("ignores model useCompletionUrls when per-call option is unset", () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const calls: string[] = []
- yield* plugin.add(AzurePlugin)
- yield* plugin.trigger(
- "aisdk.language",
- {
- model: model("azure", "deployment", {
- request: { headers: {}, body: { useCompletionUrls: true } },
- }),
- sdk: fakeSelectorSdk(calls),
- options: {},
- },
- {},
- )
- expect(calls).toEqual(["responses:deployment"])
- }),
- )
- it.effect("uses the legacy Azure selector order and provider guard", () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const calls: string[] = []
- yield* plugin.add(AzurePlugin)
- yield* plugin.trigger(
- "aisdk.language",
- { model: model("azure", "deployment"), sdk: fakeSelectorSdk(calls), options: {} },
- {},
- )
- const ignored = yield* plugin.trigger(
- "aisdk.language",
- { model: model("openai", "deployment"), sdk: fakeSelectorSdk(calls), options: {} },
- {},
- )
- expect(calls).toEqual(["responses:deployment"])
- expect(ignored.language).toBeUndefined()
- }),
- )
- it.effect("falls back through the legacy Azure selector order", () =>
- Effect.gen(function* () {
- const plugin = yield* PluginV2.Service
- const calls: string[] = []
- const make = (method: string) => (id: string) => {
- calls.push(`${method}:${id}`)
- return { modelId: id, provider: method, specificationVersion: "v3" }
- }
- yield* plugin.add(AzurePlugin)
- yield* plugin.trigger(
- "aisdk.language",
- {
- model: model("azure", "messages-deployment"),
- sdk: { messages: make("messages"), chat: make("chat"), languageModel: make("languageModel") },
- options: {},
- },
- {},
- )
- yield* plugin.trigger(
- "aisdk.language",
- { model: model("azure", "language-deployment"), sdk: { languageModel: make("languageModel") }, options: {} },
- {},
- )
- expect(calls).toEqual(["messages:messages-deployment", "languageModel:language-deployment"])
- }),
- )
- })
|