| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- import { describe, expect } from "bun:test"
- import { $ } from "bun"
- import fs from "fs/promises"
- import path from "path"
- import { Effect } from "effect"
- import { LayerNode } from "@opencode-ai/util/effect/layer-node"
- import { Git } from "@opencode-ai/core/git"
- import { AbsolutePath, RelativePath } from "@opencode-ai/core/schema"
- import { branch, commit, gitRemote } from "./fixture/git"
- import { tmpdir } from "./fixture/tmpdir"
- import { testEffect } from "./lib/effect"
- const it = testEffect(LayerNode.compile(Git.node))
- describe("Git", () => {
- it.live("discovers repository metadata without a work tree", () =>
- Effect.gen(function* () {
- const root = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (dir) => Effect.promise(() => dir[Symbol.asyncDispose]()),
- )
- yield* Effect.promise(async () => {
- await initRepo(root.path)
- await $`git config core.bare true`.cwd(root.path).quiet()
- })
- const directory = AbsolutePath.make(yield* Effect.promise(() => fs.realpath(root.path)))
- const git = yield* Git.Service
- const repository = yield* git.repo.discover(directory)
- expect(repository?.worktree).toBe(directory)
- expect(repository?.gitDirectory).toBe(AbsolutePath.make(path.join(directory, ".git")))
- expect(repository?.commonDirectory).toBe(repository?.gitDirectory)
- }),
- )
- it.live("clones a remote and reads checkout metadata", () =>
- withRemote((fixture) =>
- Effect.gen(function* () {
- const git = yield* Git.Service
- const target = AbsolutePath.make(path.join(fixture.root, "checkout"))
- const repository = yield* git.repo.clone({ remote: fixture.remote, directory: target })
- expect(yield* git.remote.get(repository)).toBe(fixture.remote)
- expect(yield* git.history.head(repository)).toBeString()
- expect(yield* git.history.branch(repository)).toBe("main")
- expect(yield* git.history.defaultRemoteBranch(repository)).toBe("main")
- expect(repository.worktree).toBe(target)
- expect(repository.gitDirectory).toBe(AbsolutePath.make(path.join(target, ".git")))
- expect(repository.commonDirectory).toBe(repository.gitDirectory)
- expect(yield* read(path.join(target, "README.md"))).toBe("one\n")
- }),
- ),
- )
- it.live("fetches, checks out, and resets remote changes", () =>
- withRemote((fixture) =>
- Effect.gen(function* () {
- const git = yield* Git.Service
- const target = AbsolutePath.make(path.join(fixture.root, "checkout"))
- const repository = yield* git.repo.clone({ remote: fixture.remote, directory: target })
- yield* Effect.promise(() => commit(fixture.source, "two\n", "second"))
- yield* git.sync.fetchRemotes(repository)
- yield* git.sync.resetHard(repository, "origin/main")
- expect(yield* read(path.join(target, "README.md"))).toBe("two\n")
- yield* Effect.promise(() => branch(fixture.source, "feature/docs", "feature\n"))
- yield* git.sync.fetchBranch(repository, { branch: "feature/docs" })
- yield* git.sync.checkoutRemoteBranch(repository, { branch: "feature/docs" })
- yield* git.sync.resetHard(repository, "origin/feature/docs")
- expect(yield* git.history.branch(repository)).toBe("feature/docs")
- expect(yield* read(path.join(target, "README.md"))).toBe("feature\n")
- }),
- ),
- )
- })
- function withRemote<A, E, R>(body: (fixture: Awaited<ReturnType<typeof gitRemote>>) => Effect.Effect<A, E, R>) {
- return Effect.acquireUseRelease(
- Effect.promise(async () => {
- const root = await tmpdir()
- return { root, fixture: await gitRemote(root.path) }
- }),
- (input) => body(input.fixture),
- (input) => Effect.promise(() => input.root[Symbol.asyncDispose]()),
- )
- }
- function read(file: string) {
- return Effect.promise(() => fs.readFile(file, "utf8")).pipe(Effect.map((content) => content.replace(/\r\n/g, "\n")))
- }
- async function initRepo(directory: string) {
- await $`git init`.cwd(directory).quiet()
- await $`git config core.fsmonitor false`.cwd(directory).quiet()
- await $`git config commit.gpgsign false`.cwd(directory).quiet()
- await $`git config user.email test@opencode.test`.cwd(directory).quiet()
- await $`git config user.name Test`.cwd(directory).quiet()
- await $`git commit --allow-empty -m root`.cwd(directory).quiet()
- }
- describe("Git worktrees", () => {
- it.live("creates, lists, and removes linked worktrees", () =>
- Effect.gen(function* () {
- const root = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (dir) => Effect.promise(() => dir[Symbol.asyncDispose]()),
- )
- yield* Effect.promise(() => initRepo(root.path))
- const directory = AbsolutePath.make(yield* Effect.promise(() => fs.realpath(root.path)))
- const worktree = AbsolutePath.make(`${root.path}-git-worktree`)
- yield* Effect.addFinalizer(() =>
- Effect.promise(() => fs.rm(worktree, { recursive: true, force: true })).pipe(Effect.ignore),
- )
- const git = yield* Git.Service
- const repo = yield* git.repo.discover(directory)
- if (!repo) throw new Error("Repository not found")
- yield* git.worktree.create({ repository: repo, directory: worktree })
- expect((yield* git.worktree.list(repo)).some((entry) => entry.directory.endsWith("-git-worktree"))).toBe(true)
- const linked = yield* git.repo.discover(worktree)
- expect(linked?.worktree).toBe(AbsolutePath.make(yield* Effect.promise(() => fs.realpath(worktree))))
- expect(linked?.commonDirectory).toBe(repo.commonDirectory)
- expect(linked?.gitDirectory).not.toBe(repo.gitDirectory)
- if (!linked) throw new Error("Linked worktree not found")
- yield* git.worktree.remove({ repository: linked, directory: worktree, force: false })
- expect((yield* git.worktree.list(repo)).some((entry) => entry.directory.endsWith("-git-worktree"))).toBe(false)
- }),
- )
- })
- describe("Git trees", () => {
- it.live("captures, compares, previews, and restores scoped trees", () =>
- Effect.gen(function* () {
- const root = yield* Effect.acquireRelease(
- Effect.promise(() => tmpdir()),
- (dir) => Effect.promise(() => dir[Symbol.asyncDispose]()),
- )
- yield* Effect.promise(async () => {
- await initRepo(root.path)
- await fs.mkdir(path.join(root.path, "scope"))
- await fs.writeFile(path.join(root.path, "scope", "tracked.txt"), "one\n")
- await fs.writeFile(path.join(root.path, "outside.txt"), "outside\n")
- await $`git add .`.cwd(root.path).quiet()
- await $`git commit -m initial`.cwd(root.path).quiet()
- })
- const git = yield* Git.Service
- const source = yield* git.repo.discover(AbsolutePath.make(root.path))
- if (!source) throw new Error("Repository not found")
- const storage = AbsolutePath.make(path.join(root.path, ".snapshot"))
- const repository = yield* git.repo.create({ worktree: source.worktree, gitDirectory: storage, seed: source })
- yield* git.index.refresh({ repository, scope: RelativePath.make("scope") })
- const before = yield* git.tree.write(repository)
- yield* Effect.promise(async () => {
- await fs.writeFile(path.join(root.path, "scope", "tracked.txt"), "two\n")
- await fs.writeFile(path.join(root.path, "scope", "added.txt"), "added\n")
- await fs.writeFile(path.join(root.path, "outside.txt"), "changed outside\n")
- })
- yield* git.index.refresh({ repository, scope: RelativePath.make("scope") })
- const after = yield* git.tree.write(repository)
- expect(yield* git.tree.files({ repository, from: before, to: after })).toEqual([
- RelativePath.make("scope/added.txt"),
- RelativePath.make("scope/tracked.txt"),
- ])
- const diffs = yield* git.tree.diff({ repository, from: before, to: after, context: 1 })
- expect(diffs.map((item) => [item.file, item.status])).toEqual([
- [RelativePath.make("scope/added.txt"), "added"],
- [RelativePath.make("scope/tracked.txt"), "modified"],
- ])
- const files = new Map([[RelativePath.make("scope/tracked.txt"), before]])
- const preview = yield* git.tree.preview({ repository, current: after, files, context: 1 })
- expect(preview).toHaveLength(1)
- expect(preview[0]?.file).toBe(RelativePath.make("scope/tracked.txt"))
- yield* git.tree.restore({ repository, files })
- expect(yield* read(path.join(root.path, "scope", "tracked.txt"))).toBe("one\n")
- expect(yield* read(path.join(root.path, "scope", "added.txt"))).toBe("added\n")
- expect(yield* read(path.join(root.path, "outside.txt"))).toBe("changed outside\n")
- }),
- )
- })
|