forked from anomalyco/opencode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatch.test.ts
More file actions
383 lines (320 loc) · 10.9 KB
/
patch.test.ts
File metadata and controls
383 lines (320 loc) · 10.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
import { describe, test, expect, beforeEach, afterEach } from "bun:test"
import { Effect } from "effect"
import * as fs from "fs/promises"
import * as path from "path"
import { tmpdir } from "os"
import { Patch } from "../../src/patch"
import { AppFileSystem } from "@opencode-ai/core/filesystem"
import { testEffect } from "../lib/effect"
const it = testEffect(AppFileSystem.defaultLayer)
describe("Patch namespace", () => {
let tempDir: string
beforeEach(async () => {
tempDir = await fs.mkdtemp(path.join(tmpdir(), "patch-test-"))
})
afterEach(async () => {
// Clean up temp directory
await fs.rm(tempDir, { recursive: true, force: true })
})
describe("parsePatch", () => {
test("should parse simple add file patch", () => {
const patchText = `*** Begin Patch
*** Add File: test.txt
+Hello World
*** End Patch`
const result = Patch.parsePatch(patchText)
expect(result.hunks).toHaveLength(1)
expect(result.hunks[0]).toEqual({
type: "add",
path: "test.txt",
contents: "Hello World",
})
})
test("should parse delete file patch", () => {
const patchText = `*** Begin Patch
*** Delete File: old.txt
*** End Patch`
const result = Patch.parsePatch(patchText)
expect(result.hunks).toHaveLength(1)
const hunk = result.hunks[0]
expect(hunk.type).toBe("delete")
expect(hunk.path).toBe("old.txt")
})
test("should parse patch with multiple hunks", () => {
const patchText = `*** Begin Patch
*** Add File: new.txt
+This is a new file
*** Update File: existing.txt
@@
old line
-new line
+updated line
*** End Patch`
const result = Patch.parsePatch(patchText)
expect(result.hunks).toHaveLength(2)
expect(result.hunks[0].type).toBe("add")
expect(result.hunks[1].type).toBe("update")
})
test("should parse file move operation", () => {
const patchText = `*** Begin Patch
*** Update File: old-name.txt
*** Move to: new-name.txt
@@
-Old content
+New content
*** End Patch`
const result = Patch.parsePatch(patchText)
expect(result.hunks).toHaveLength(1)
const hunk = result.hunks[0]
expect(hunk.type).toBe("update")
expect(hunk.path).toBe("old-name.txt")
if (hunk.type === "update") {
expect(hunk.move_path).toBe("new-name.txt")
}
})
test("should throw error for invalid patch format", () => {
const invalidPatch = `This is not a valid patch`
expect(() => Patch.parsePatch(invalidPatch)).toThrow("Invalid patch format")
})
})
describe("maybeParseApplyPatch", () => {
test("should parse direct apply_patch command", () => {
const patchText = `*** Begin Patch
*** Add File: test.txt
+Content
*** End Patch`
const result = Patch.maybeParseApplyPatch(["apply_patch", patchText])
expect(result.type).toBe(Patch.MaybeApplyPatch.Body)
if (result.type === Patch.MaybeApplyPatch.Body) {
expect(result.args.patch).toBe(patchText)
expect(result.args.hunks).toHaveLength(1)
}
})
test("should parse applypatch command", () => {
const patchText = `*** Begin Patch
*** Add File: test.txt
+Content
*** End Patch`
const result = Patch.maybeParseApplyPatch(["applypatch", patchText])
expect(result.type).toBe(Patch.MaybeApplyPatch.Body)
})
test("should handle bash heredoc format", () => {
const script = `apply_patch <<'PATCH'
*** Begin Patch
*** Add File: test.txt
+Content
*** End Patch
PATCH`
const result = Patch.maybeParseApplyPatch(["bash", "-lc", script])
expect(result.type).toBe(Patch.MaybeApplyPatch.Body)
if (result.type === Patch.MaybeApplyPatch.Body) {
expect(result.args.hunks).toHaveLength(1)
}
})
test("should return NotApplyPatch for non-patch commands", () => {
const result = Patch.maybeParseApplyPatch(["echo", "hello"])
expect(result.type).toBe(Patch.MaybeApplyPatch.NotApplyPatch)
})
})
describe("applyPatch", () => {
it.live("should add a new file", () =>
Effect.gen(function* () {
const patchText = `*** Begin Patch
*** Add File: ${tempDir}/new-file.txt
+Hello World
+This is a new file
*** End Patch`
const result = yield* Patch.applyPatch(patchText)
expect(result.added).toHaveLength(1)
expect(result.modified).toHaveLength(0)
expect(result.deleted).toHaveLength(0)
const content = yield* Effect.promise(() => fs.readFile(result.added[0], "utf-8"))
expect(content).toBe("Hello World\nThis is a new file")
}),
)
it.live("should delete an existing file", () =>
Effect.gen(function* () {
const filePath = path.join(tempDir, "to-delete.txt")
yield* Effect.promise(() => fs.writeFile(filePath, "This file will be deleted"))
const patchText = `*** Begin Patch
*** Delete File: ${filePath}
*** End Patch`
const result = yield* Patch.applyPatch(patchText)
expect(result.deleted).toHaveLength(1)
expect(result.deleted[0]).toBe(filePath)
const exists = yield* Effect.promise(() =>
fs
.access(filePath)
.then(() => true)
.catch(() => false),
)
expect(exists).toBe(false)
}),
)
it.live("should update an existing file", () =>
Effect.gen(function* () {
const filePath = path.join(tempDir, "to-update.txt")
yield* Effect.promise(() => fs.writeFile(filePath, "line 1\nline 2\nline 3\n"))
const patchText = `*** Begin Patch
*** Update File: ${filePath}
@@
line 1
-line 2
+line 2 updated
line 3
*** End Patch`
const result = yield* Patch.applyPatch(patchText)
expect(result.modified).toHaveLength(1)
expect(result.modified[0]).toBe(filePath)
const content = yield* Effect.promise(() => fs.readFile(filePath, "utf-8"))
expect(content).toBe("line 1\nline 2 updated\nline 3\n")
}),
)
it.live("should move and update a file", () =>
Effect.gen(function* () {
const oldPath = path.join(tempDir, "old-name.txt")
const newPath = path.join(tempDir, "new-name.txt")
yield* Effect.promise(() => fs.writeFile(oldPath, "old content\n"))
const patchText = `*** Begin Patch
*** Update File: ${oldPath}
*** Move to: ${newPath}
@@
-old content
+new content
*** End Patch`
const result = yield* Patch.applyPatch(patchText)
expect(result.modified).toHaveLength(1)
expect(result.modified[0]).toBe(newPath)
const oldExists = yield* Effect.promise(() =>
fs
.access(oldPath)
.then(() => true)
.catch(() => false),
)
expect(oldExists).toBe(false)
const newContent = yield* Effect.promise(() => fs.readFile(newPath, "utf-8"))
expect(newContent).toBe("new content\n")
}),
)
it.live("should handle multiple operations in one patch", () =>
Effect.gen(function* () {
const file1 = path.join(tempDir, "file1.txt")
const file2 = path.join(tempDir, "file2.txt")
const file3 = path.join(tempDir, "file3.txt")
yield* Effect.promise(() => fs.writeFile(file1, "content 1"))
yield* Effect.promise(() => fs.writeFile(file2, "content 2"))
const patchText = `*** Begin Patch
*** Add File: ${file3}
+new file content
*** Update File: ${file1}
@@
-content 1
+updated content 1
*** Delete File: ${file2}
*** End Patch`
const result = yield* Patch.applyPatch(patchText)
expect(result.added).toHaveLength(1)
expect(result.modified).toHaveLength(1)
expect(result.deleted).toHaveLength(1)
}),
)
it.live("should create parent directories when adding files", () =>
Effect.gen(function* () {
const nestedPath = path.join(tempDir, "deep", "nested", "file.txt")
const patchText = `*** Begin Patch
*** Add File: ${nestedPath}
+Deep nested content
*** End Patch`
const result = yield* Patch.applyPatch(patchText)
expect(result.added).toHaveLength(1)
expect(result.added[0]).toBe(nestedPath)
const exists = yield* Effect.promise(() =>
fs
.access(nestedPath)
.then(() => true)
.catch(() => false),
)
expect(exists).toBe(true)
}),
)
})
describe("error handling", () => {
it.live("should fail when updating non-existent file", () =>
Effect.gen(function* () {
const nonExistent = path.join(tempDir, "does-not-exist.txt")
const patchText = `*** Begin Patch
*** Update File: ${nonExistent}
@@
-old line
+new line
*** End Patch`
const exit = yield* Effect.exit(Patch.applyPatch(patchText))
expect(exit._tag).toBe("Failure")
}),
)
it.live("should fail when deleting non-existent file", () =>
Effect.gen(function* () {
const nonExistent = path.join(tempDir, "does-not-exist.txt")
const patchText = `*** Begin Patch
*** Delete File: ${nonExistent}
*** End Patch`
const exit = yield* Effect.exit(Patch.applyPatch(patchText))
expect(exit._tag).toBe("Failure")
}),
)
})
describe("edge cases", () => {
it.live("should handle empty files", () =>
Effect.gen(function* () {
const emptyFile = path.join(tempDir, "empty.txt")
yield* Effect.promise(() => fs.writeFile(emptyFile, ""))
const patchText = `*** Begin Patch
*** Update File: ${emptyFile}
@@
+First line
*** End Patch`
const result = yield* Patch.applyPatch(patchText)
expect(result.modified).toHaveLength(1)
const content = yield* Effect.promise(() => fs.readFile(emptyFile, "utf-8"))
expect(content).toBe("First line\n")
}),
)
it.live("should handle files with no trailing newline", () =>
Effect.gen(function* () {
const filePath = path.join(tempDir, "no-newline.txt")
yield* Effect.promise(() => fs.writeFile(filePath, "no newline"))
const patchText = `*** Begin Patch
*** Update File: ${filePath}
@@
-no newline
+has newline now
*** End Patch`
const result = yield* Patch.applyPatch(patchText)
expect(result.modified).toHaveLength(1)
const content = yield* Effect.promise(() => fs.readFile(filePath, "utf-8"))
expect(content).toBe("has newline now\n")
}),
)
it.live("should handle multiple update chunks in single file", () =>
Effect.gen(function* () {
const filePath = path.join(tempDir, "multi-chunk.txt")
yield* Effect.promise(() => fs.writeFile(filePath, "line 1\nline 2\nline 3\nline 4\n"))
const patchText = `*** Begin Patch
*** Update File: ${filePath}
@@
line 1
-line 2
+LINE 2
@@
line 3
-line 4
+LINE 4
*** End Patch`
const result = yield* Patch.applyPatch(patchText)
expect(result.modified).toHaveLength(1)
const content = yield* Effect.promise(() => fs.readFile(filePath, "utf-8"))
expect(content).toBe("line 1\nLINE 2\nline 3\nLINE 4\n")
}),
)
})
})