mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-24 13:25:01 +00:00
29 lines
952 B
TypeScript
29 lines
952 B
TypeScript
import { describe, expect, test } from "bun:test"
|
|
import fs from "fs/promises"
|
|
import path from "path"
|
|
import { tmpdir } from "../../fixture/fixture"
|
|
import { resolveThreadDirectory } from "../../../src/cli/cmd/tui/thread"
|
|
|
|
describe("tui thread", () => {
|
|
async function check(project?: string) {
|
|
await using tmp = await tmpdir({ git: true })
|
|
const link = path.join(path.dirname(tmp.path), path.basename(tmp.path) + "-link")
|
|
const type = process.platform === "win32" ? "junction" : "dir"
|
|
|
|
try {
|
|
await fs.symlink(tmp.path, link, type)
|
|
expect(resolveThreadDirectory(project, link, tmp.path)).toBe(tmp.path)
|
|
} finally {
|
|
await fs.rm(link, { recursive: true, force: true }).catch(() => undefined)
|
|
}
|
|
}
|
|
|
|
test("uses the real cwd when PWD points at a symlink", async () => {
|
|
await check()
|
|
})
|
|
|
|
test("uses the real cwd after resolving a relative project from PWD", async () => {
|
|
await check(".")
|
|
})
|
|
})
|