| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221 |
- import { describe, expect } from "bun:test"
- import { $ } from "bun"
- import fs from "fs/promises"
- import path from "path"
- import { Effect, Schema } from "effect"
- import { AppNodeBuilder } from "@opencode-ai/core/effect/app-node-builder"
- import { ProjectV2 } from "@opencode-ai/core/project"
- import { AbsolutePath } from "@opencode-ai/core/schema"
- import { Hash } from "@opencode-ai/core/util/hash"
- import { tmpdir } from "./fixture/tmpdir"
- import { testEffect } from "./lib/effect"
- const it = testEffect(AppNodeBuilder.build(ProjectV2.node))
- function remoteID(remote: string) {
- return ProjectV2.ID.make(Hash.fast(`git-remote:${remote}`))
- }
- function abs(value: string) {
- return AbsolutePath.make(value)
- }
- function real(value: string) {
- return Effect.promise(() => fs.realpath(value)).pipe(Effect.map((value) => AbsolutePath.make(value)))
- }
- async function initRepo(dir: string, opts?: { commit?: boolean; remote?: string }) {
- await $`git init`.cwd(dir).quiet()
- await $`git config core.fsmonitor false`.cwd(dir).quiet()
- await $`git config commit.gpgsign false`.cwd(dir).quiet()
- await $`git config user.email test@opencode.test`.cwd(dir).quiet()
- await $`git config user.name Test`.cwd(dir).quiet()
- if (opts?.commit) await $`git commit --allow-empty -m root`.cwd(dir).quiet()
- if (opts?.remote) await $`git remote add origin ${opts.remote}`.cwd(dir).quiet()
- }
- async function rootCommit(dir: string) {
- return (await $`git rev-list --max-parents=0 HEAD`.cwd(dir).text()).trim()
- }
- describe("ProjectV2.resolve", () => {
- it.live("returns global for non-git directory", () =>
- Effect.gen(function* () {
- const tmp = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- const project = yield* ProjectV2.Service
- const result = yield* project.resolve(abs(tmp.path))
- expect(result.id).toBe(ProjectV2.ID.make("global"))
- expect(path.resolve(result.directory)).toBe(path.parse(tmp.path).root)
- expect(result.previous).toBeUndefined()
- expect(result.vcs).toBeUndefined()
- }),
- )
- it.live("returns git global for repo with no commits and no remote", () =>
- Effect.gen(function* () {
- const tmp = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- yield* Effect.promise(() => initRepo(tmp.path))
- const project = yield* ProjectV2.Service
- const result = yield* project.resolve(abs(tmp.path))
- expect(result.id).toBe(ProjectV2.ID.make("global"))
- expect(result.directory).toBe(yield* real(tmp.path))
- expect(result.previous).toBeUndefined()
- expect(result.vcs?.type).toBe("git")
- }),
- )
- it.live("falls back to root commit when origin is missing", () =>
- Effect.gen(function* () {
- const tmp = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- yield* Effect.promise(() => initRepo(tmp.path, { commit: true }))
- const project = yield* ProjectV2.Service
- const result = yield* project.resolve(abs(tmp.path))
- expect(result.id).toBe(ProjectV2.ID.make(yield* Effect.promise(() => rootCommit(tmp.path))))
- expect(result.directory).toBe(yield* real(tmp.path))
- expect(result.previous).toBeUndefined()
- expect(result.vcs?.type).toBe("git")
- }),
- )
- it.live("prefers normalized origin over root commit", () =>
- Effect.gen(function* () {
- const tmp = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- yield* Effect.promise(() => initRepo(tmp.path, { commit: true, remote: "git@github.com:Acme/App.git" }))
- const project = yield* ProjectV2.Service
- const result = yield* project.resolve(abs(tmp.path))
- expect(result.id).toBe(remoteID("github.com/Acme/App"))
- expect(result.id).not.toBe(ProjectV2.ID.make(yield* Effect.promise(() => rootCommit(tmp.path))))
- expect(result.directory).toBe(yield* real(tmp.path))
- expect(result.vcs?.type).toBe("git")
- }),
- )
- it.live("normalizes ssh and https remotes to the same id", () =>
- Effect.gen(function* () {
- const ssh = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- const https = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- yield* Effect.promise(() => initRepo(ssh.path, { commit: true, remote: "git@github.com:owner/repo.git" }))
- yield* Effect.promise(() => initRepo(https.path, { commit: true, remote: "https://github.com/owner/repo.git" }))
- const project = yield* ProjectV2.Service
- const a = yield* project.resolve(abs(ssh.path))
- const b = yield* project.resolve(abs(https.path))
- expect(a.id).toBe(remoteID("github.com/owner/repo"))
- expect(b.id).toBe(a.id)
- }),
- )
- it.live("ignores file remotes and falls back to root commit", () =>
- Effect.gen(function* () {
- const tmp = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- yield* Effect.promise(() => initRepo(tmp.path, { commit: true, remote: `file://${tmp.path}` }))
- const project = yield* ProjectV2.Service
- const result = yield* project.resolve(abs(tmp.path))
- expect(result.id).toBe(ProjectV2.ID.make(yield* Effect.promise(() => rootCommit(tmp.path))))
- }),
- )
- it.live("returns previous cached id from common dir", () =>
- Effect.gen(function* () {
- const tmp = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- yield* Effect.promise(() => initRepo(tmp.path, { commit: true, remote: "git@github.com:owner/repo.git" }))
- yield* Effect.promise(() => Bun.write(path.join(tmp.path, ".git", "opencode"), "old-id"))
- const project = yield* ProjectV2.Service
- const result = yield* project.resolve(abs(tmp.path))
- expect(result.previous).toBe(ProjectV2.ID.make("old-id"))
- expect(result.id).toBe(remoteID("github.com/owner/repo"))
- }),
- )
- it.live("does not write the cache while resolving", () =>
- Effect.gen(function* () {
- const tmp = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- yield* Effect.promise(() => initRepo(tmp.path, { commit: true, remote: "git@github.com:owner/repo.git" }))
- const project = yield* ProjectV2.Service
- yield* project.resolve(abs(tmp.path))
- expect(yield* Effect.promise(() => Bun.file(path.join(tmp.path, ".git", "opencode")).exists())).toBe(false)
- }),
- )
- it.live("resolves from nested directories to repo root", () =>
- Effect.gen(function* () {
- const tmp = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- yield* Effect.promise(() => initRepo(tmp.path, { commit: true }))
- yield* Effect.promise(() => fs.mkdir(path.join(tmp.path, "a", "b"), { recursive: true }))
- const project = yield* ProjectV2.Service
- const result = yield* project.resolve(abs(path.join(tmp.path, "a", "b")))
- expect(result.directory).toBe(yield* real(tmp.path))
- }),
- )
- it.live("linked worktree returns opened worktree directory and previous from common dir", () =>
- Effect.gen(function* () {
- const tmp = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- const worktree = `${tmp.path}-worktree`
- yield* Effect.addFinalizer(() =>
- Effect.promise(() => $`rm -rf ${worktree}`.quiet().nothrow()).pipe(Effect.ignore),
- )
- yield* Effect.promise(() => initRepo(tmp.path, { commit: true, remote: "git@github.com:owner/repo.git" }))
- yield* Effect.promise(() => Bun.write(path.join(tmp.path, ".git", "opencode"), "old-id"))
- yield* Effect.promise(() => $`git worktree add ${worktree} -b test-${Date.now()}`.cwd(tmp.path).quiet())
- const project = yield* ProjectV2.Service
- const result = yield* project.resolve(abs(worktree))
- expect(result.directory).toBe(yield* real(worktree))
- expect(result.previous).toBe(ProjectV2.ID.make("old-id"))
- expect(result.id).toBe(remoteID("github.com/owner/repo"))
- expect(result.vcs?.type).toBe("git")
- }),
- )
- })
|