Files
letta-code/src/tests/tools/edit.test.ts
2026-02-14 11:56:35 -08:00

205 lines
5.9 KiB
TypeScript

import { afterEach, describe, expect, test } from "bun:test";
import { readFileSync, writeFileSync } from "node:fs";
import { edit } from "../../tools/impl/Edit";
import { TestDirectory } from "../helpers/testFs";
describe("Edit tool", () => {
let testDir: TestDirectory;
afterEach(() => {
testDir?.cleanup();
});
test("replaces a simple string", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("test.txt", "Hello, World!");
const result = await edit({
file_path: file,
old_string: "World",
new_string: "Bun",
});
expect(readFileSync(file, "utf-8")).toBe("Hello, Bun!");
expect(result.replacements).toBe(1);
});
test("throws error if old_string not found", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("test.txt", "Hello, World!");
await expect(
edit({
file_path: file,
old_string: "NotFound",
new_string: "Something",
}),
).rejects.toThrow(/not found/);
});
test("replaces only first occurrence without replace_all", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("duplicate.txt", "foo bar foo baz");
const result = await edit({
file_path: file,
old_string: "foo",
new_string: "qux",
});
expect(readFileSync(file, "utf-8")).toBe("qux bar foo baz");
expect(result.replacements).toBe(1);
});
test("replaces all occurrences with replace_all=true", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("duplicate.txt", "foo bar foo baz foo");
const result = await edit({
file_path: file,
old_string: "foo",
new_string: "qux",
replace_all: true,
});
expect(readFileSync(file, "utf-8")).toBe("qux bar qux baz qux");
expect(result.replacements).toBe(3);
});
test("uses expected_replacements as a safety check", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("duplicate.txt", "foo bar foo baz");
await expect(
edit({
file_path: file,
old_string: "foo",
new_string: "qux",
expected_replacements: 1,
}),
).rejects.toThrow("Expected 1 occurrence but found 2");
});
test("replaces all when expected_replacements > 1", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("duplicate.txt", "foo bar foo baz");
const result = await edit({
file_path: file,
old_string: "foo",
new_string: "qux",
expected_replacements: 2,
});
expect(readFileSync(file, "utf-8")).toBe("qux bar qux baz");
expect(result.replacements).toBe(2);
});
test("throws error for invalid expected_replacements", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("test.txt", "foo");
await expect(
edit({
file_path: file,
old_string: "foo",
new_string: "bar",
expected_replacements: 0,
}),
).rejects.toThrow("expected_replacements must be a positive integer");
});
test("throws error when old_string is empty", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("test.txt", "Hello, World!");
await expect(
edit({
file_path: file,
old_string: "",
new_string: "Bun",
}),
).rejects.toThrow("old_string cannot be empty");
});
test("throws error when file_path is missing", async () => {
await expect(
edit({
old_string: "foo",
new_string: "bar",
} as Parameters<typeof edit>[0]),
).rejects.toThrow(/missing required parameter.*file_path/);
});
test("throws error when old_string is missing", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("test.txt", "Hello, World!");
await expect(
edit({
file_path: file,
new_string: "bar",
} as Parameters<typeof edit>[0]),
).rejects.toThrow(/missing required parameter.*old_string/);
});
test("throws error when new_string is missing", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("test.txt", "Hello, World!");
await expect(
edit({
file_path: file,
old_string: "foo",
} as Parameters<typeof edit>[0]),
).rejects.toThrow(/missing required parameter.*new_string/);
});
test("throws error when using typo'd parameter name (new_str instead of new_string)", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("test.txt", "Hello, World!");
await expect(
edit({
file_path: file,
old_string: "World",
new_str: "Bun",
} as unknown as Parameters<typeof edit>[0]),
).rejects.toThrow(/missing required parameter.*new_string/);
});
test("handles CRLF line endings (Windows compatibility)", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("crlf.txt", "");
writeFileSync(file, "line1\r\nline2\r\nline3\r\n", "utf-8");
const result = await edit({
file_path: file,
old_string: "line1\nline2",
new_string: "changed1\nchanged2",
});
expect(result.replacements).toBe(1);
const content = readFileSync(file, "utf-8");
expect(content).toContain("changed1");
expect(content).toContain("changed2");
});
test("handles mixed line endings", async () => {
testDir = new TestDirectory();
const file = testDir.createFile("mixed.txt", "");
writeFileSync(file, "function foo() {\r\n return 1;\r\n}\r\n", "utf-8");
const result = await edit({
file_path: file,
old_string: "function foo() {\n return 1;\n}",
new_string: "function bar() {\n return 2;\n}",
});
expect(result.replacements).toBe(1);
const content = readFileSync(file, "utf-8");
expect(content).toContain("function bar()");
expect(content).toContain("return 2");
});
});