| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import { describe, expect, test } from "bun:test"
- import { Effect } from "effect"
- import os from "os"
- import path from "path"
- import { ShellParse } from "@opencode-ai/core/shell/parse"
- describe("ShellParse", () => {
- test("splits bash commands and derives reusable prefixes", async () => {
- const result = await Effect.runPromise(
- ShellParse.scan("git status && npm run test -- --watch", "/bin/bash", "/workspace"),
- )
- expect(result).toEqual({
- commands: [
- { resource: "git status", save: "git status *" },
- { resource: "npm run test -- --watch", save: "npm run test *" },
- ],
- directories: [],
- })
- })
- test("splits PowerShell commands case-insensitively", async () => {
- const result = await Effect.runPromise(
- ShellParse.scan("Get-ChildItem; Write-Output 'done'", "C:\\Program Files\\PowerShell\\7\\pwsh.exe", "C:\\workspace"),
- )
- expect(result.commands).toEqual([
- { resource: "Get-ChildItem", save: "Get-ChildItem *" },
- { resource: "Write-Output 'done'", save: "Write-Output *" },
- ])
- })
- test("does not permission directory changes separately", async () => {
- const result = await Effect.runPromise(ShellParse.scan("cd 'src dir' && git status", "/bin/bash", "/workspace"))
- expect(result).toEqual({
- commands: [{ resource: "git status", save: "git status *" }],
- directories: ["src dir"],
- })
- })
- test("extracts PowerShell directory parameters", async () => {
- const result = await Effect.runPromise(
- ShellParse.scan("Set-Location -LiteralPath '..\\outside'; Get-ChildItem", "pwsh", "C:\\workspace"),
- )
- expect(result.directories).toEqual(["..\\outside"])
- })
- test("expands deterministic directory variables", async () => {
- const bash = await Effect.runPromise(ShellParse.scan("cd ~/src", "/bin/bash", "/workspace"))
- expect(bash.directories).toEqual([path.join(os.homedir(), "src")])
- const powershell = await Effect.runPromise(
- ShellParse.scan('Set-Location "$PWD/src"; Set-Location $PSHOME', "/usr/local/bin/pwsh", "/workspace"),
- )
- expect(powershell.directories).toEqual(["/workspace/src", "/usr/local/bin"])
- })
- })
|