| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- import { describe, expect } from "bun:test"
- import { Effect, Layer, Schema } from "effect"
- import { Database } from "@opencode-ai/core/database/database"
- import { EventV2 } from "@opencode-ai/core/event"
- import { Project } from "@opencode-ai/core/project"
- import { ProjectDirectories } from "@opencode-ai/core/project/directories"
- import { ProjectTable } from "@opencode-ai/core/project/sql"
- import { AbsolutePath } from "@opencode-ai/core/schema"
- import { testEffect } from "./lib/effect"
- const it = testEffect(Layer.mergeAll(Database.defaultLayer, EventV2.defaultLayer, ProjectDirectories.defaultLayer))
- const projectID = Project.ID.make("project-directories")
- const directory = AbsolutePath.make("/tmp/project-directories")
- function setup() {
- return Database.Service.use(({ db }) =>
- db
- .insert(ProjectTable)
- .values({ id: projectID, worktree: directory, sandboxes: [], time_created: 1, time_updated: 1 })
- .onConflictDoNothing()
- .run()
- .pipe(Effect.orDie),
- )
- }
- describe("ProjectDirectories", () => {
- it.effect("decodes directory schemas", () =>
- Effect.sync(() => {
- expect(Schema.decodeUnknownSync(ProjectDirectories.ListInput)({ projectID })).toEqual({ projectID })
- expect(Schema.decodeUnknownSync(ProjectDirectories.ListOutput)([{ directory }])).toEqual([{ directory }])
- }),
- )
- it.effect("creates once and ignores conflicts", () =>
- Effect.gen(function* () {
- yield* setup()
- const service = yield* ProjectDirectories.Service
- expect(yield* service.create({ projectID, directory })).toBe(true)
- expect(yield* service.create({ projectID, directory, strategy: "git_worktree" })).toBe(false)
- expect(yield* service.list(projectID)).toEqual([{ directory, strategy: undefined }])
- }),
- )
- it.effect("replaces the strategy when requested", () =>
- Effect.gen(function* () {
- yield* setup()
- const service = yield* ProjectDirectories.Service
- yield* service.create({ projectID, directory, strategy: "old/strategy" })
- expect(yield* service.create({ projectID, directory, strategy: "new/strategy", behavior: "replace" })).toBe(true)
- expect(yield* service.create({ projectID, directory, strategy: "new/strategy", behavior: "replace" })).toBe(false)
- expect(yield* service.create({ projectID, directory, behavior: "replace" })).toBe(true)
- expect(yield* service.create({ projectID, directory, behavior: "replace" })).toBe(false)
- expect(yield* service.create({ projectID, directory, strategy: "new/strategy", behavior: "replace" })).toBe(true)
- expect(yield* service.list(projectID)).toEqual([{ directory, strategy: "new/strategy" }])
- }),
- )
- })
|