mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-15 00:52:35 +00:00
120 lines
3.5 KiB
TypeScript
120 lines
3.5 KiB
TypeScript
import { describe, expect } from "bun:test"
|
|
import { Effect, Layer, Option } from "effect"
|
|
import { CrossSpawnSpawner } from "@opencode-ai/core/cross-spawn-spawner"
|
|
import { AppFileSystem } from "@opencode-ai/core/filesystem"
|
|
import { EffectFlock } from "@opencode-ai/core/util/effect-flock"
|
|
import path from "path"
|
|
import { pathToFileURL } from "url"
|
|
import { Account } from "../../src/account/account"
|
|
import { Auth } from "../../src/auth"
|
|
import { Bus } from "../../src/bus"
|
|
import { Config } from "../../src/config/config"
|
|
import { Env } from "../../src/env"
|
|
import { Plugin } from "../../src/plugin/index"
|
|
import { ModelID, ProviderID } from "../../src/provider/schema"
|
|
import { provideTmpdirInstance } from "../fixture/fixture"
|
|
import { testEffect } from "../lib/effect"
|
|
import { NpmTest } from "../fake/npm"
|
|
|
|
const emptyAccount = Layer.mock(Account.Service)({
|
|
active: () => Effect.succeed(Option.none()),
|
|
activeOrg: () => Effect.succeed(Option.none()),
|
|
})
|
|
const emptyAuth = Layer.mock(Auth.Service)({
|
|
all: () => Effect.succeed({}),
|
|
})
|
|
const configLayer = Config.layer.pipe(
|
|
Layer.provide(EffectFlock.defaultLayer),
|
|
Layer.provide(AppFileSystem.defaultLayer),
|
|
Layer.provide(Env.defaultLayer),
|
|
Layer.provide(emptyAuth),
|
|
Layer.provide(emptyAccount),
|
|
Layer.provide(NpmTest.noop),
|
|
)
|
|
const it = testEffect(
|
|
Layer.mergeAll(
|
|
Plugin.layer.pipe(Layer.provide(Bus.layer), Layer.provide(configLayer)),
|
|
CrossSpawnSpawner.defaultLayer,
|
|
),
|
|
)
|
|
const systemHook = "experimental.chat.system.transform"
|
|
|
|
function withProject<A, E, R>(source: string, self: Effect.Effect<A, E, R>) {
|
|
return provideTmpdirInstance((dir) =>
|
|
Effect.gen(function* () {
|
|
const file = path.join(dir, "plugin.ts")
|
|
yield* Effect.all(
|
|
[
|
|
Effect.promise(() => Bun.write(file, source)),
|
|
Effect.promise(() =>
|
|
Bun.write(
|
|
path.join(dir, "opencode.json"),
|
|
JSON.stringify(
|
|
{
|
|
$schema: "https://opencode.ai/config.json",
|
|
plugin: [pathToFileURL(file).href],
|
|
},
|
|
null,
|
|
2,
|
|
),
|
|
),
|
|
),
|
|
],
|
|
{ discard: true, concurrency: 2 },
|
|
)
|
|
return yield* self
|
|
}),
|
|
)
|
|
}
|
|
|
|
const triggerSystemTransform = Effect.fn("PluginTriggerTest.triggerSystemTransform")(function* () {
|
|
const plugin = yield* Plugin.Service
|
|
const out = { system: [] as string[] }
|
|
yield* plugin.trigger(
|
|
systemHook,
|
|
{
|
|
model: {
|
|
providerID: ProviderID.anthropic,
|
|
modelID: ModelID.make("claude-sonnet-4-6"),
|
|
},
|
|
},
|
|
out,
|
|
)
|
|
return out.system
|
|
})
|
|
|
|
describe("plugin.trigger", () => {
|
|
it.live("runs synchronous hooks without crashing", () =>
|
|
withProject(
|
|
[
|
|
"export default async () => ({",
|
|
` ${JSON.stringify(systemHook)}: (_input, output) => {`,
|
|
' output.system.unshift("sync")',
|
|
" },",
|
|
"})",
|
|
"",
|
|
].join("\n"),
|
|
Effect.gen(function* () {
|
|
expect(yield* triggerSystemTransform()).toEqual(["sync"])
|
|
}),
|
|
),
|
|
)
|
|
|
|
it.live("awaits asynchronous hooks", () =>
|
|
withProject(
|
|
[
|
|
"export default async () => ({",
|
|
` ${JSON.stringify(systemHook)}: async (_input, output) => {`,
|
|
" await Bun.sleep(1)",
|
|
' output.system.unshift("async")',
|
|
" },",
|
|
"})",
|
|
"",
|
|
].join("\n"),
|
|
Effect.gen(function* () {
|
|
expect(yield* triggerSystemTransform()).toEqual(["async"])
|
|
}),
|
|
),
|
|
)
|
|
})
|