mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-08 10:10:58 +00:00
55 lines
1.8 KiB
TypeScript
55 lines
1.8 KiB
TypeScript
import { afterEach, describe, expect, test } from "bun:test"
|
|
import path from "path"
|
|
import { Flag } from "@opencode-ai/core/flag/flag"
|
|
import { Server } from "../../src/server/server"
|
|
import * as Log from "@opencode-ai/core/util/log"
|
|
import { resetDatabase } from "../fixture/db"
|
|
import { disposeAllInstances, tmpdir } from "../fixture/fixture"
|
|
import { waitGlobalBusEventPromise } from "./global-bus"
|
|
|
|
void Log.init({ print: false })
|
|
|
|
const original = Flag.OPENCODE_EXPERIMENTAL_HTTPAPI
|
|
|
|
function app() {
|
|
Flag.OPENCODE_EXPERIMENTAL_HTTPAPI = true
|
|
return Server.Default().app
|
|
}
|
|
|
|
async function waitDisposed(directory: string) {
|
|
await waitGlobalBusEventPromise({
|
|
message: "timed out waiting for instance disposal",
|
|
predicate: (event) => event.payload.type === "server.instance.disposed" && event.directory === directory,
|
|
})
|
|
}
|
|
|
|
afterEach(async () => {
|
|
Flag.OPENCODE_EXPERIMENTAL_HTTPAPI = original
|
|
await disposeAllInstances()
|
|
await resetDatabase()
|
|
})
|
|
|
|
describe("config HttpApi", () => {
|
|
test("serves config update through Hono bridge", async () => {
|
|
await using tmp = await tmpdir({ config: { formatter: false, lsp: false } })
|
|
const disposed = waitDisposed(tmp.path)
|
|
|
|
const response = await app().request("/config", {
|
|
method: "PATCH",
|
|
headers: {
|
|
"content-type": "application/json",
|
|
"x-opencode-directory": tmp.path,
|
|
},
|
|
body: JSON.stringify({ username: "patched-user", formatter: false, lsp: false }),
|
|
})
|
|
|
|
expect(response.status).toBe(200)
|
|
expect(await response.json()).toMatchObject({ username: "patched-user", formatter: false, lsp: false })
|
|
await disposed
|
|
expect(await Bun.file(path.join(tmp.path, "config.json")).json()).toMatchObject({
|
|
username: "patched-user",
|
|
formatter: false,
|
|
lsp: false,
|
|
})
|
|
})
|
|
})
|