mirror of
https://gitea.toothfairyai.com/ToothFairyAI/tf_code.git
synced 2026-03-30 05:43:55 +00:00
62 lines
1.6 KiB
TypeScript
62 lines
1.6 KiB
TypeScript
import { describe, expect, test } from "bun:test"
|
|
import { App } from "../../src/app/app"
|
|
import { GlobTool } from "../../src/tool/glob"
|
|
import { ListTool } from "../../src/tool/ls"
|
|
import path from "path"
|
|
|
|
const ctx = {
|
|
sessionID: "test",
|
|
messageID: "",
|
|
toolCallID: "",
|
|
agent: "build",
|
|
abort: AbortSignal.any([]),
|
|
metadata: () => {},
|
|
}
|
|
const glob = await GlobTool.init()
|
|
const list = await ListTool.init()
|
|
|
|
const projectRoot = path.join(__dirname, "../..")
|
|
const fixturePath = path.join(__dirname, "../fixtures/example")
|
|
|
|
describe("tool.glob", () => {
|
|
test("truncate", async () => {
|
|
await App.provide({ cwd: projectRoot }, async () => {
|
|
let result = await glob.execute(
|
|
{
|
|
pattern: "**/*",
|
|
path: "../../node_modules",
|
|
},
|
|
ctx,
|
|
)
|
|
expect(result.metadata.truncated).toBe(true)
|
|
})
|
|
})
|
|
test("basic", async () => {
|
|
await App.provide({ cwd: projectRoot }, async () => {
|
|
let result = await glob.execute(
|
|
{
|
|
pattern: "*.json",
|
|
path: undefined,
|
|
},
|
|
ctx,
|
|
)
|
|
expect(result.metadata).toMatchObject({
|
|
truncated: false,
|
|
count: 2,
|
|
})
|
|
})
|
|
})
|
|
})
|
|
|
|
describe("tool.ls", () => {
|
|
test("basic", async () => {
|
|
const result = await App.provide({ cwd: projectRoot }, async () => {
|
|
return await list.execute({ path: fixturePath, ignore: [".git"] }, ctx)
|
|
})
|
|
|
|
// Normalize absolute path to relative for consistent snapshots
|
|
const normalizedOutput = result.output.replace(fixturePath, "packages/opencode/test/fixtures/example")
|
|
expect(normalizedOutput).toMatchSnapshot()
|
|
})
|
|
})
|