mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-21 18:26:09 +00:00
118 lines
4.1 KiB
TypeScript
118 lines
4.1 KiB
TypeScript
import { afterEach, describe, expect } from "bun:test"
|
|
import { LayerNode } from "@opencode-ai/core/effect/layer-node"
|
|
import { FSUtil } from "@opencode-ai/core/fs-util"
|
|
import { Effect, Layer } from "effect"
|
|
import { HttpClientResponse } from "effect/unstable/http"
|
|
import path from "path"
|
|
import { InstanceRef } from "../../src/effect/instance-ref"
|
|
import { InstanceBootstrap } from "../../src/project/bootstrap"
|
|
import { InstanceStore } from "../../src/project/instance-store"
|
|
import { GlobalBus, type GlobalEvent } from "../../src/bus/global"
|
|
import { Snapshot } from "../../src/snapshot"
|
|
import { resetDatabase } from "../fixture/db"
|
|
import { disposeAllInstances, TestInstance } from "../fixture/fixture"
|
|
import { testEffect } from "../lib/effect"
|
|
import { httpApiLayer, requestInDirectory } from "./httpapi-layer"
|
|
|
|
afterEach(async () => {
|
|
await disposeAllInstances()
|
|
await resetDatabase()
|
|
})
|
|
|
|
const noopBootstrap = Layer.succeed(InstanceBootstrap.Service, InstanceBootstrap.Service.of({ run: Effect.void }))
|
|
const testInstanceStore = LayerNode.compile(InstanceStore.node, [[InstanceStore.bootstrapNode, noopBootstrap]])
|
|
|
|
const it = testEffect(
|
|
Layer.mergeAll(LayerNode.compile(LayerNode.group([FSUtil.node, Snapshot.node])), testInstanceStore, httpApiLayer),
|
|
)
|
|
|
|
function request(directory: string, url: string, init: RequestInit = {}) {
|
|
return requestInDirectory(url, directory, init)
|
|
}
|
|
|
|
function json<T>(response: HttpClientResponse.HttpClientResponse) {
|
|
return response.json.pipe(Effect.map((value) => value as T))
|
|
}
|
|
|
|
function collectGlobalEvents() {
|
|
return Effect.acquireRelease(
|
|
Effect.sync(() => {
|
|
const seen: GlobalEvent[] = []
|
|
const on = (event: GlobalEvent) => {
|
|
seen.push(event)
|
|
}
|
|
GlobalBus.on("event", on)
|
|
return { seen, on }
|
|
}),
|
|
({ on }) => Effect.sync(() => GlobalBus.off("event", on)),
|
|
)
|
|
}
|
|
|
|
const disposedEvents = (seen: GlobalEvent[], dir: string) =>
|
|
seen.filter((evt) => evt.directory === dir && evt.payload.type === "server.instance.disposed").length
|
|
|
|
describe("project.initGit endpoint", () => {
|
|
it.instance("initializes git and reloads immediately", () =>
|
|
Effect.gen(function* () {
|
|
const tmp = yield* TestInstance
|
|
const fs = yield* FSUtil.Service
|
|
const events = yield* collectGlobalEvents()
|
|
|
|
const init = yield* request(tmp.directory, "/project/git/init", {
|
|
method: "POST",
|
|
})
|
|
const body = yield* json(init)
|
|
expect(init.status).toBe(200)
|
|
expect(body).toMatchObject({
|
|
id: "global",
|
|
vcs: "git",
|
|
worktree: tmp.directory,
|
|
})
|
|
// Reload behavior: bus emits exactly one server.instance.disposed for the directory.
|
|
expect(disposedEvents(events.seen, tmp.directory)).toBe(1)
|
|
expect(yield* fs.exists(path.join(tmp.directory, ".git", "opencode"))).toBe(false)
|
|
|
|
const current = yield* request(tmp.directory, "/project/current")
|
|
expect(current.status).toBe(200)
|
|
expect(yield* json(current)).toMatchObject({
|
|
id: "global",
|
|
vcs: "git",
|
|
worktree: tmp.directory,
|
|
})
|
|
|
|
const ctx = yield* InstanceStore.use.reload({ directory: tmp.directory })
|
|
const tracked = yield* Snapshot.Service.use((snapshot) => snapshot.track()).pipe(
|
|
Effect.provideService(InstanceRef, ctx),
|
|
)
|
|
expect(tracked).toBeTruthy()
|
|
}),
|
|
)
|
|
|
|
it.instance(
|
|
"does not reload when the project is already git",
|
|
() =>
|
|
Effect.gen(function* () {
|
|
const tmp = yield* TestInstance
|
|
const events = yield* collectGlobalEvents()
|
|
|
|
const init = yield* request(tmp.directory, "/project/git/init", {
|
|
method: "POST",
|
|
})
|
|
expect(init.status).toBe(200)
|
|
expect(yield* json(init)).toMatchObject({
|
|
vcs: "git",
|
|
worktree: tmp.directory,
|
|
})
|
|
expect(disposedEvents(events.seen, tmp.directory)).toBe(0)
|
|
|
|
const current = yield* request(tmp.directory, "/project/current")
|
|
expect(current.status).toBe(200)
|
|
expect(yield* json(current)).toMatchObject({
|
|
vcs: "git",
|
|
worktree: tmp.directory,
|
|
})
|
|
}),
|
|
{ git: true },
|
|
)
|
|
})
|