| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078 |
- import fs from "fs/promises"
- import path from "path"
- import { describe, expect } from "bun:test"
- import { Effect, Exit, Layer, Schema } from "effect"
- import { systemError } from "effect/PlatformError"
- import { AppNodeBuilder } from "@opencode-ai/core/effect/app-node-builder"
- import { LayerNode } from "@opencode-ai/util/effect/layer-node"
- import { FSUtil } from "@opencode-ai/util/fs-util"
- import { Formatter } from "@opencode-ai/core/formatter"
- import { Location } from "@opencode-ai/core/location"
- import { Permission } from "@opencode-ai/core/permission"
- import { AbsolutePath } from "@opencode-ai/core/schema"
- import { Session } from "@opencode-ai/core/session"
- import { Tool } from "@opencode-ai/core/tool"
- import { PatchTool } from "@opencode-ai/core/tool/plugin/patch"
- import { location } from "./fixture/location"
- import { tmpdir } from "./fixture/tmpdir"
- import { makeLocationNode } from "@opencode-ai/util/effect/app-node"
- import { testEffect } from "./lib/effect"
- import { toolIdentity, executeTool, registerToolPlugin, toolDefinitions } from "./lib/tool"
- const patchToolNode = makeLocationNode({
- name: "test/patch-tool-plugin",
- layer: Layer.effectDiscard(registerToolPlugin(PatchTool.Plugin)),
- deps: [Tool.node, Formatter.node, FSUtil.node, Location.node, Permission.node],
- })
- const sessionID = Session.ID.make("ses_patch_tool_test")
- const assertions: Permission.AssertInput[] = []
- let denyAction: string | undefined
- let failRemoveTarget: string | undefined
- let failRemoveErrorTarget: string | undefined
- let failWriteTarget: string | undefined
- let readsBeforeEditApproval = 0
- let editApproved = false
- let afterEditApproval = (): Effect.Effect<void> => Effect.void
- let formatFile = (_target: string): Effect.Effect<boolean> => Effect.succeed(false)
- const permission = Layer.succeed(
- Permission.Service,
- Permission.Service.of({
- assert: (input) =>
- Effect.sync(() => {
- assertions.push(input)
- if (input.action === "edit") editApproved = true
- }).pipe(
- Effect.andThen(input.action === "edit" ? Effect.suspend(afterEditApproval) : Effect.void),
- Effect.andThen(
- input.action === denyAction
- ? Effect.fail(
- new Permission.BlockedError({
- rules: [],
- permission: input.action,
- resources: input.resources,
- }),
- )
- : Effect.void,
- ),
- ),
- ask: () => Effect.die("unused"),
- reply: () => Effect.die("unused"),
- get: () => Effect.die("unused"),
- forSession: () => Effect.die("unused"),
- list: () => Effect.die("unused"),
- }),
- )
- const formatter = Layer.mock(Formatter.Service, {
- file: (target) => formatFile(target),
- })
- const reset = () => {
- assertions.length = 0
- denyAction = undefined
- failRemoveTarget = undefined
- failRemoveErrorTarget = undefined
- failWriteTarget = undefined
- readsBeforeEditApproval = 0
- editApproved = false
- afterEditApproval = () => Effect.void
- formatFile = () => Effect.succeed(false)
- }
- const filesystem = Layer.effect(
- FSUtil.Service,
- Effect.gen(function* () {
- const fs = yield* FSUtil.Service
- return FSUtil.Service.of({
- ...fs,
- readFile: (target) =>
- Effect.sync(() => {
- if (!editApproved) readsBeforeEditApproval++
- }).pipe(Effect.andThen(fs.readFile(target))),
- remove: (target, options) => {
- if (failRemoveTarget && path.basename(target) === failRemoveTarget) return Effect.die("forced remove failure")
- if (failRemoveErrorTarget && path.basename(target) === failRemoveErrorTarget) {
- return Effect.fail(
- systemError({
- _tag: "Unknown",
- module: "FileSystem",
- method: "remove",
- description: "forced remove failure",
- pathOrDescriptor: target,
- }),
- )
- }
- return fs.remove(target, options)
- },
- writeWithDirs: (target, content, mode) => {
- if (failWriteTarget && path.basename(target) === failWriteTarget) {
- return Effect.fail(
- systemError({
- _tag: "Unknown",
- module: "FileSystem",
- method: "writeWithDirs",
- description: "forced write failure",
- pathOrDescriptor: target,
- }),
- )
- }
- return fs.writeWithDirs(target, content, mode)
- },
- })
- }),
- ).pipe(Layer.provide(LayerNode.compile(FSUtil.node)))
- const withTool = <A, E, R>(
- directory: string,
- body: (registry: Tool.Interface) => Effect.Effect<A, E, R>,
- projectDirectory = directory,
- ) => {
- const activeLocation = Layer.succeed(
- Location.Service,
- Location.Service.of(
- location({ directory: AbsolutePath.make(directory) }, { projectDirectory: AbsolutePath.make(projectDirectory) }),
- ),
- )
- return Effect.gen(function* () {
- return yield* body(yield* Tool.Service)
- }).pipe(
- Effect.provide(
- AppNodeBuilder.build(LayerNode.group([Tool.node, patchToolNode]), [
- [FSUtil.node, filesystem],
- [Location.node, activeLocation],
- [Formatter.node, formatter],
- [Permission.node, permission],
- ]),
- ),
- )
- }
- const call = (patchText: string, id = "call-patch") => ({
- sessionID,
- ...toolIdentity,
- call: { type: "tool-call" as const, id, name: "patch", input: { patchText } },
- })
- const exists = (target: string) =>
- Effect.promise(() =>
- fs.stat(target).then(
- () => true,
- () => false,
- ),
- )
- const it = testEffect(Layer.empty)
- const withTempTool = <A, E, R>(body: (directory: string, registry: Tool.Interface) => Effect.Effect<A, E, R>) =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- return withTool(tmp.path, (registry) => body(tmp.path, registry))
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- )
- describe("PatchTool", () => {
- it.live("registers and sequentially applies add, update, and delete hunks", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- const update = path.join(tmp.path, "update.txt")
- const remove = path.join(tmp.path, "remove.txt")
- return Effect.promise(() =>
- Promise.all([fs.writeFile(update, "before\n"), fs.writeFile(remove, "remove\n")]),
- ).pipe(
- Effect.andThen(
- withTool(tmp.path, (registry) =>
- Effect.gen(function* () {
- expect((yield* toolDefinitions(registry)).map((tool) => tool.name)).toEqual(["patch", "execute"])
- const settled = yield* executeTool(
- registry,
- call(
- "*** Begin Patch\n*** Add File: nested/new.txt\n+created\n*** Update File: update.txt\n@@\n-before\n+after\n*** Delete File: remove.txt\n*** End Patch",
- ),
- )
- expect(settled.status).toBe("completed")
- if (settled.status !== "completed") return
- expect(settled.content).toEqual([
- {
- type: "text",
- text: "Success. Updated the following files:\nA nested/new.txt\nM update.txt\nD remove.txt",
- },
- ])
- const modelText = settled.content?.[0]?.type === "text" ? settled.content[0].text : ""
- if (process.platform === "win32") expect(modelText).not.toContain("\\")
- expect(settled.output).toMatchObject({
- applied: [
- { type: "add", resource: "nested/new.txt" },
- { type: "update", resource: "update.txt" },
- { type: "delete", resource: "remove.txt" },
- ],
- files: [
- {
- file: "nested/new.txt",
- status: "added",
- additions: 1,
- deletions: 0,
- patch: expect.stringContaining("+created"),
- },
- {
- file: "update.txt",
- status: "modified",
- additions: 1,
- deletions: 1,
- patch: expect.stringContaining("-before\n+after"),
- },
- {
- file: "remove.txt",
- status: "deleted",
- additions: 0,
- deletions: 2,
- patch: expect.stringContaining("-remove"),
- },
- ],
- })
- expect(assertions).toMatchObject([
- {
- sessionID,
- action: "edit",
- resources: ["nested/new.txt", "update.txt", "remove.txt"],
- save: ["*"],
- metadata: {
- filepath: "nested/new.txt, update.txt, remove.txt",
- diff: expect.stringContaining("Index:"),
- files: expect.any(Array),
- },
- },
- ])
- expect(readsBeforeEditApproval).toBe(2)
- expect(yield* Effect.promise(() => fs.readFile(path.join(tmp.path, "nested/new.txt"), "utf8"))).toBe(
- "created\n",
- )
- expect(yield* Effect.promise(() => fs.readFile(update, "utf8"))).toBe("after\n")
- expect(yield* exists(remove)).toBe(false)
- }),
- ),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- it.live("returns file diffs for final formatted content", () =>
- withTempTool((directory, registry) => {
- const target = path.join(directory, "formatted.txt")
- formatFile = (file) =>
- Effect.promise(async () => {
- await fs.writeFile(file, (await fs.readFile(file, "utf8")).replace("created", "FORMATTED"))
- return true
- })
- return Effect.gen(function* () {
- const settled = yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Add File: formatted.txt\n+created\n*** End Patch"),
- )
- expect(settled.status).toBe("completed")
- if (settled.status !== "completed") return
- expect(settled.output.files[0]?.patch).toContain("+FORMATTED")
- expect(settled.metadata?.files?.[0]?.patch).toContain("+FORMATTED")
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("FORMATTED\n")
- })
- }),
- )
- it.live("moves and updates a file", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- const source = path.join(tmp.path, "old.txt")
- return Effect.promise(() => fs.writeFile(source, "before\n")).pipe(
- Effect.andThen(
- withTool(tmp.path, (registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call(
- "*** Begin Patch\n*** Add File: created.txt\n+created\n*** Update File: old.txt\n*** Move to: moved.txt\n@@\n-before\n+after\n*** End Patch",
- ),
- ),
- ).toMatchObject({
- status: "completed",
- content: [
- { type: "text", text: "Success. Updated the following files:\nA created.txt\nM moved.txt" },
- ],
- })
- expect(yield* exists(source)).toBe(false)
- expect(yield* Effect.promise(() => fs.readFile(path.join(tmp.path, "moved.txt"), "utf8"))).toBe(
- "after\n",
- )
- expect(yield* Effect.promise(() => fs.readFile(path.join(tmp.path, "created.txt"), "utf8"))).toBe(
- "created\n",
- )
- }),
- ),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- it.live("moves a file over an existing destination", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- const source = path.join(tmp.path, "old.txt")
- const destination = path.join(tmp.path, "nested", "moved.txt")
- return Effect.promise(() =>
- Promise.all([
- fs.writeFile(source, "before\n"),
- fs
- .mkdir(path.dirname(destination), { recursive: true })
- .then(() => fs.writeFile(destination, "existing\n")),
- ]),
- ).pipe(
- Effect.andThen(
- withTool(tmp.path, (registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call(
- "*** Begin Patch\n*** Update File: old.txt\n*** Move to: nested/moved.txt\n@@\n-before\n+after\n*** End Patch",
- ),
- ),
- ).toMatchObject({ status: "completed" })
- expect(yield* exists(source)).toBe(false)
- expect(yield* Effect.promise(() => fs.readFile(destination, "utf8"))).toBe("after\n")
- }),
- ),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- it.live("moves a file without changing its contents", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- const source = path.join(directory, "old.txt")
- const destination = path.join(directory, "moved.txt")
- yield* Effect.promise(() => fs.writeFile(source, "same\n"))
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Update File: old.txt\n*** Move to: moved.txt\n@@\n same\n*** End Patch"),
- ),
- ).toMatchObject({
- status: "completed",
- content: [{ type: "text", text: "Success. Updated the following files:\nM moved.txt" }],
- })
- expect(yield* exists(source)).toBe(false)
- expect(yield* Effect.promise(() => fs.readFile(destination, "utf8"))).toBe("same\n")
- }),
- ),
- )
- it.live("moves a symlink without deleting its target", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- if (process.platform === "win32") return
- const target = path.join(directory, "target.txt")
- const source = path.join(directory, "link.txt")
- const moved = path.join(directory, "moved.txt")
- yield* Effect.promise(() => fs.writeFile(target, "before\n"))
- yield* Effect.promise(() => fs.symlink(target, source))
- yield* executeTool(
- registry,
- call(
- "*** Begin Patch\n*** Update File: link.txt\n*** Move to: moved.txt\n@@\n-before\n+after\n*** End Patch",
- ),
- )
- expect(yield* exists(source)).toBe(false)
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("before\n")
- expect(yield* Effect.promise(() => fs.readFile(moved, "utf8"))).toBe("after\n")
- }),
- ),
- )
- it.live("includes move file info in output and metadata", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- const source = path.join(directory, "old", "name.txt")
- yield* Effect.promise(() => fs.mkdir(path.dirname(source), { recursive: true }))
- yield* Effect.promise(() => fs.writeFile(source, "old content\n"))
- const settled = yield* executeTool(
- registry,
- call(
- "*** Begin Patch\n*** Update File: old/name.txt\n*** Move to: renamed/dir/name.txt\n@@\n-old content\n+new content\n*** End Patch",
- ),
- )
- expect(settled.status).toBe("completed")
- if (settled.status !== "completed") return
- expect(settled.output).toMatchObject({
- applied: [{ type: "update", resource: "renamed/dir/name.txt" }],
- files: [
- {
- file: "renamed/dir/name.txt",
- status: "modified",
- patch: expect.stringContaining("-old content\n+new content"),
- },
- ],
- })
- }),
- ),
- )
- it.live("includes the move destination in edit permission resources", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- const source = path.join(directory, "old", "name.txt")
- yield* Effect.promise(() => fs.mkdir(path.dirname(source), { recursive: true }))
- yield* Effect.promise(() => fs.writeFile(source, "old content\n"))
- yield* executeTool(
- registry,
- call(
- "*** Begin Patch\n*** Update File: old/name.txt\n*** Move to: renamed/dir/name.txt\n@@\n-old content\n+new content\n*** End Patch",
- ),
- )
- expect(assertions).toMatchObject([
- {
- action: "edit",
- resources: ["old/name.txt", "renamed/dir/name.txt"],
- },
- ])
- }),
- ),
- )
- it.live("inserts lines with an insert-only hunk", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- const target = path.join(directory, "insert-only.txt")
- yield* Effect.promise(() => fs.writeFile(target, "alpha\nomega\n"))
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Update File: insert-only.txt\n@@\n alpha\n+beta\n omega\n*** End Patch"),
- )
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("alpha\nbeta\nomega\n")
- }),
- ),
- )
- it.live("rejects deleting a directory", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- yield* Effect.promise(() => fs.mkdir(path.join(directory, "dir")))
- expect(
- yield* executeTool(registry, call("*** Begin Patch\n*** Delete File: dir\n*** End Patch")),
- ).toMatchObject({ status: "error" })
- expect(yield* exists(path.join(directory, "dir"))).toBe(true)
- }),
- ),
- )
- it.live("rejects a missing second chunk context", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- const target = path.join(directory, "two-chunks.txt")
- yield* Effect.promise(() => fs.writeFile(target, "a\nb\nc\nd\n"))
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Update File: two-chunks.txt\n@@\n-b\n+B\n\n-d\n+D\n*** End Patch"),
- ),
- ).toMatchObject({ status: "error" })
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("a\nb\nc\nd\n")
- }),
- ),
- )
- it.live("requires patchText", () =>
- withTempTool((_directory, registry) =>
- Effect.gen(function* () {
- expect(yield* executeTool(registry, call(""))).toEqual({
- status: "error",
- error: { type: "tool.execution", message: "patchText is required" },
- })
- }),
- ),
- )
- it.live("rejects invalid patch format", () =>
- withTempTool((_directory, registry) =>
- Effect.gen(function* () {
- expect(yield* executeTool(registry, call("invalid patch"))).toEqual({
- status: "error",
- error: {
- type: "tool.execution",
- message: "patch verification failed: The first line of the patch must be '*** Begin Patch'",
- },
- })
- expect(yield* executeTool(registry, call("*** Begin Patch\n*** Add File: foo\n+hello"))).toEqual({
- status: "error",
- error: {
- type: "tool.execution",
- message: "patch verification failed: The last line of the patch must be '*** End Patch'",
- },
- })
- }),
- ),
- )
- it.live("rejects an empty patch", () =>
- withTempTool((_directory, registry) =>
- Effect.gen(function* () {
- for (const patchText of [
- "*** Begin Patch\n*** End Patch",
- " *** Begin Patch \n *** End Patch ",
- "<<EOF\n*** Begin Patch\n*** End Patch\nEOF",
- "*** Begin Patch\n*** Environment ID: remote\n*** End Patch",
- ]) {
- expect(yield* executeTool(registry, call(patchText))).toEqual({
- status: "error",
- error: { type: "tool.execution", message: "patch rejected: empty patch" },
- })
- }
- }),
- ),
- )
- it.live("rejects an invalid hunk header", () =>
- withTempTool((_directory, registry) =>
- Effect.gen(function* () {
- expect(yield* executeTool(registry, call("*** Begin Patch\n*** Frobnicate File: foo\n*** End Patch"))).toEqual({
- status: "error",
- error: {
- type: "tool.execution",
- message:
- "patch verification failed: Invalid hunk at line 2: '*** Frobnicate File: foo' is not a valid hunk header. Valid hunk headers: '*** Add File: {path}', '*** Delete File: {path}', '*** Update File: {path}'",
- },
- })
- }),
- ),
- )
- it.live("applies successive update operations to one file", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- const target = path.join(directory, "successive.txt")
- yield* Effect.promise(() => fs.writeFile(target, "a\nb\n"))
- yield* executeTool(
- registry,
- call(
- "*** Begin Patch\n*** Update File: successive.txt\n@@\n-a\n+A\n*** Update File: successive.txt\n@@\n-b\n+B\n*** End Patch",
- ),
- )
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("A\nB\n")
- }),
- ),
- )
- it.live("does not invent a first-line diff for BOM files", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- const bom = "\uFEFF"
- const target = path.join(directory, "example.cs")
- yield* Effect.promise(() => fs.writeFile(target, `${bom}using System;\n\nclass Test {}\n`))
- formatFile = (file) =>
- Effect.promise(async () => {
- await fs.writeFile(file, (await fs.readFile(file, "utf8")).replace(/^\uFEFF/, ""))
- return true
- })
- const settled = yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Update File: example.cs\n@@\n class Test {}\n+class Next {}\n*** End Patch"),
- )
- expect(settled.status).toBe("completed")
- if (settled.status !== "completed") return
- const output = Schema.decodeUnknownSync(PatchTool.Output)(settled.output)
- expect(output.files[0]?.patch).not.toContain(bom)
- expect(output.files[0]?.patch).not.toContain("-using System;")
- expect(output.files[0]?.patch).not.toContain("+using System;")
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe(
- `${bom}using System;\n\nclass Test {}\nclass Next {}\n`,
- )
- }),
- ),
- )
- it.live("rejects an update with missing context", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- const target = path.join(directory, "unchanged.txt")
- yield* Effect.promise(() => fs.writeFile(target, "line1\nline2\n"))
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Update File: unchanged.txt\n@@\n-missing\n+changed\n*** End Patch"),
- ),
- ).toMatchObject({
- status: "error",
- error: {
- type: "tool.execution",
- message: "patch verification failed: Failed to find expected lines in unchanged.txt:\nmissing",
- },
- })
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("line1\nline2\n")
- }),
- ),
- )
- it.live("rejects an update when the target file is missing", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Update File: missing.txt\n@@\n-old\n+new\n*** End Patch"),
- ),
- ).toMatchObject({
- status: "error",
- error: {
- message: expect.stringContaining(
- `patch verification failed: Failed to read file to update ${path.join(directory, "missing.txt")}: `,
- ),
- },
- })
- }),
- ),
- )
- it.live("identifies a directory used as an update target", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- yield* Effect.promise(() => fs.mkdir(path.join(directory, "nested")))
- expect(
- yield* executeTool(registry, call("*** Begin Patch\n*** Update File: nested\n@@\n-old\n+new\n*** End Patch")),
- ).toEqual({
- status: "error",
- error: {
- type: "tool.execution",
- message: `patch verification failed: Failed to read file to update ${path.join(directory, "nested")}: path is a directory`,
- },
- })
- }),
- ),
- )
- it.live("identifies a missing delete target", () =>
- withTempTool((_directory, registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(registry, call("*** Begin Patch\n*** Delete File: missing.txt\n*** End Patch")),
- ).toEqual({
- status: "error",
- error: {
- type: "tool.execution",
- message: "patch verification failed: Failed to delete missing.txt: file does not exist",
- },
- })
- }),
- ),
- )
- it.live("reports the failing destination and filesystem error", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- yield* Effect.promise(() => fs.writeFile(path.join(directory, "old.txt"), "before\n"))
- failWriteTarget = "new.txt"
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Update File: old.txt\n*** Move to: new.txt\n@@\n-before\n+after\n*** End Patch"),
- ),
- ).toEqual({
- status: "error",
- error: { type: "tool.execution", message: "Failed to write new.txt: forced write failure" },
- })
- expect(yield* Effect.promise(() => fs.readFile(path.join(directory, "old.txt"), "utf8"))).toBe("before\n")
- expect(yield* exists(path.join(directory, "new.txt"))).toBe(false)
- }),
- ),
- )
- it.live("reports the successful prefix and filesystem error", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- failWriteTarget = "second.txt"
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Add File: first.txt\n+first\n*** Add File: second.txt\n+second\n*** End Patch"),
- ),
- ).toEqual({
- status: "error",
- error: {
- type: "tool.execution",
- message: "Failed to write second.txt: forced write failure. Completed before failure: first.txt",
- },
- })
- expect(yield* Effect.promise(() => fs.readFile(path.join(directory, "first.txt"), "utf8"))).toBe("first\n")
- expect(yield* exists(path.join(directory, "second.txt"))).toBe(false)
- }),
- ),
- )
- it.live("reports a destination written before move removal fails", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- yield* Effect.promise(() => fs.writeFile(path.join(directory, "old.txt"), "before\n"))
- failRemoveErrorTarget = "old.txt"
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Update File: old.txt\n*** Move to: new.txt\n@@\n-before\n+after\n*** End Patch"),
- ),
- ).toEqual({
- status: "error",
- error: {
- type: "tool.execution",
- message: "Wrote new.txt but failed to remove old.txt: forced remove failure",
- },
- })
- expect(yield* Effect.promise(() => fs.readFile(path.join(directory, "old.txt"), "utf8"))).toBe("before\n")
- expect(yield* Effect.promise(() => fs.readFile(path.join(directory, "new.txt"), "utf8"))).toBe("after\n")
- }),
- ),
- )
- it.live("approves an external directory before reading and requests edit permission afterward", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => Promise.all([tmpdir(), tmpdir()])),
- ([active, outside]) => {
- reset()
- const target = path.join(outside.path, "external.txt")
- return Effect.promise(() => fs.writeFile(target, "before\n")).pipe(
- Effect.andThen(
- withTool(active.path, (registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call(`*** Begin Patch\n*** Update File: ${target}\n@@\n-before\n+after\n*** End Patch`),
- ),
- ).toMatchObject({ status: "completed" })
- expect(assertions.map((input) => input.action)).toEqual(["external_directory", "edit"])
- expect(readsBeforeEditApproval).toBe(1)
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("after\n")
- }),
- ),
- ),
- )
- },
- ([active, outside]) =>
- Effect.promise(() =>
- Promise.all([active[Symbol.asyncDispose](), outside[Symbol.asyncDispose]()]).then(() => undefined),
- ),
- ),
- )
- it.live("does not inspect an external file when external permission is denied", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => Promise.all([tmpdir(), tmpdir()])),
- ([active, outside]) => {
- reset()
- denyAction = "external_directory"
- const target = path.join(outside.path, "external.txt")
- return Effect.promise(() => fs.writeFile(target, "before\n")).pipe(
- Effect.andThen(
- withTool(
- active.path,
- (registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call(`*** Begin Patch\n*** Update File: ${target}\n@@\n-before\n+after\n*** End Patch`),
- ),
- ).toMatchObject({ status: "error", error: { type: "permission.rejected" } })
- expect(assertions.map((input) => input.action)).toEqual(["external_directory"])
- expect(readsBeforeEditApproval).toBe(0)
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("before\n")
- }),
- path.parse(active.path).root,
- ),
- ),
- )
- },
- ([active, outside]) =>
- Effect.promise(() =>
- Promise.all([active[Symbol.asyncDispose](), outside[Symbol.asyncDispose]()]).then(() => undefined),
- ),
- ),
- )
- it.live("preserves edit permission rejection", () =>
- withTempTool((directory, registry) =>
- Effect.gen(function* () {
- const target = path.join(directory, "target.txt")
- yield* Effect.promise(() => fs.writeFile(target, "before\n"))
- denyAction = "edit"
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Update File: target.txt\n@@\n-before\n+after\n*** End Patch"),
- ),
- ).toMatchObject({ status: "error", error: { type: "permission.rejected" } })
- expect(assertions.map((input) => input.action)).toEqual(["edit"])
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("before\n")
- }),
- ),
- )
- it.live("treats a sibling path inside the project worktree as internal", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- const active = path.join(tmp.path, "active")
- const target = path.join(tmp.path, "sibling.txt")
- return Effect.promise(() => Promise.all([fs.mkdir(active), fs.writeFile(target, "before\n")])).pipe(
- Effect.andThen(
- withTool(
- active,
- (registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Update File: ../sibling.txt\n@@\n-before\n+after\n*** End Patch"),
- ),
- ).toMatchObject({ status: "completed" })
- expect(assertions.map((input) => input.action)).toEqual(["edit"])
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("after\n")
- }),
- tmp.path,
- ),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- it.live("follows an internal symlink to an external file without external permission", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => Promise.all([tmpdir(), tmpdir()])),
- ([active, outside]) => {
- reset()
- if (process.platform === "win32") return Effect.void
- const target = path.join(outside.path, "external.txt")
- const link = path.join(active.path, "link.txt")
- return Effect.promise(() => fs.writeFile(target, "before\n")).pipe(
- Effect.andThen(Effect.promise(() => fs.symlink(target, link))),
- Effect.andThen(
- withTool(active.path, (registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Update File: link.txt\n@@\n-before\n+after\n*** End Patch"),
- ),
- ).toMatchObject({ status: "completed" })
- expect(assertions.map((input) => input.action)).toEqual(["edit"])
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("after\n")
- }),
- ),
- ),
- )
- },
- ([active, outside]) =>
- Effect.promise(() =>
- Promise.all([active[Symbol.asyncDispose](), outside[Symbol.asyncDispose]()]).then(() => undefined),
- ),
- ),
- )
- it.live("approves a relative external target before reading and requests edit permission afterward", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => Promise.all([tmpdir(), tmpdir()])),
- ([active, outside]) => {
- reset()
- const target = path.join(outside.path, "external.txt")
- const relative = path.relative(active.path, target)
- return Effect.promise(() => fs.writeFile(target, "before\n")).pipe(
- Effect.andThen(
- withTool(active.path, (registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call(`*** Begin Patch\n*** Update File: ${relative}\n@@\n-before\n+after\n*** End Patch`),
- ),
- ).toMatchObject({ status: "completed" })
- expect(assertions.map((input) => input.action)).toEqual(["external_directory", "edit"])
- expect(readsBeforeEditApproval).toBe(1)
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("after\n")
- }),
- ),
- ),
- )
- },
- ([active, outside]) =>
- Effect.promise(() =>
- Promise.all([active[Symbol.asyncDispose](), outside[Symbol.asyncDispose]()]).then(() => undefined),
- ),
- ),
- )
- it.live("approves each external file under the same parent", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => Promise.all([tmpdir(), tmpdir()])),
- ([active, outside]) => {
- reset()
- const first = path.join(outside.path, "first.txt")
- const second = path.join(outside.path, "second.txt")
- return Effect.promise(() =>
- Promise.all([fs.writeFile(first, "before\n"), fs.writeFile(second, "before\n")]),
- ).pipe(
- Effect.andThen(
- withTool(active.path, (registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call(
- `*** Begin Patch\n*** Update File: ${first}\n@@\n-before\n+after\n*** Update File: ${second}\n@@\n-before\n+after\n*** End Patch`,
- ),
- ),
- ).toMatchObject({ status: "completed" })
- expect(assertions.map((input) => input.action)).toEqual([
- "external_directory",
- "external_directory",
- "edit",
- ])
- expect(assertions[0]?.resources).toEqual([
- process.platform === "win32"
- ? FSUtil.normalizePathPattern(path.join(outside.path, "*"))
- : path.join(yield* Effect.promise(() => fs.realpath(outside.path)), "*").replaceAll("\\", "/"),
- ])
- expect(assertions[1]?.resources).toEqual(assertions[0]?.resources)
- }),
- ),
- ),
- )
- },
- ([active, outside]) =>
- Effect.promise(() =>
- Promise.all([active[Symbol.asyncDispose](), outside[Symbol.asyncDispose]()]).then(() => undefined),
- ),
- ),
- )
- it.live("rejects invalid later update before applying an earlier add", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- return withTool(tmp.path, (registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call(
- "*** Begin Patch\n*** Add File: created.txt\n+created\n*** Update File: missing.txt\n@@\n-before\n+after\n*** End Patch",
- ),
- ),
- ).toMatchObject({
- status: "error",
- error: {
- message: expect.stringContaining("patch verification failed: Failed to read file to update"),
- },
- })
- expect(yield* exists(path.join(tmp.path, "created.txt"))).toBe(false)
- }),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- it.live("adds files by overwriting existing targets", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- const target = path.join(tmp.path, "existing.txt")
- return Effect.promise(() => fs.writeFile(target, "sentinel\n")).pipe(
- Effect.andThen(
- withTool(tmp.path, (registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Add File: existing.txt\n+replacement\n*** End Patch"),
- ),
- ).toMatchObject({ status: "completed" })
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("replacement\n")
- }),
- ),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- it.live("overwrites an add target that appears during permission approval", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- const target = path.join(tmp.path, "appeared.txt")
- afterEditApproval = () => Effect.promise(() => fs.writeFile(target, "winner\n")).pipe(Effect.orDie)
- return withTool(tmp.path, (registry) =>
- Effect.gen(function* () {
- expect(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Add File: appeared.txt\n+replacement\n*** End Patch"),
- ),
- ).toMatchObject({ status: "completed" })
- expect(yield* Effect.promise(() => fs.readFile(target, "utf8"))).toBe("replacement\n")
- }),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- it.live("preserves a later commit defect after earlier sequential applications", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- const first = path.join(tmp.path, "first.txt")
- const second = path.join(tmp.path, "second.txt")
- failRemoveTarget = path.basename(second)
- return Effect.promise(() => Promise.all([fs.writeFile(first, "first"), fs.writeFile(second, "second")])).pipe(
- Effect.andThen(
- withTool(tmp.path, (registry) =>
- Effect.gen(function* () {
- expect(
- Exit.isFailure(
- yield* executeTool(
- registry,
- call("*** Begin Patch\n*** Delete File: first.txt\n*** Delete File: second.txt\n*** End Patch"),
- ).pipe(Effect.exit),
- ),
- ).toBe(true)
- expect(yield* exists(first)).toBe(false)
- expect(yield* exists(second)).toBe(true)
- }),
- ),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- })
|