| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437 |
- import fs from "fs/promises"
- import { realpathSync } from "node:fs"
- import path from "path"
- import { describe, expect, test } from "bun:test"
- import { Effect, Layer } from "effect"
- import { ChildProcess } from "effect/unstable/process"
- import { FSUtil } from "@opencode-ai/core/fs-util"
- import { Config } from "@opencode-ai/core/config"
- import { AppNodeBuilder } from "@opencode-ai/core/effect/app-node-builder"
- import { LayerNode } from "@opencode-ai/core/effect/layer-node"
- import { Location } from "@opencode-ai/core/location"
- import { LocationMutation } from "@opencode-ai/core/location-mutation"
- import { PermissionV2 } from "@opencode-ai/core/permission"
- import { AppProcess } from "@opencode-ai/core/process"
- import { AbsolutePath } from "@opencode-ai/core/schema"
- import { SessionV2 } from "@opencode-ai/core/session"
- import { BashTool } from "@opencode-ai/core/tool/bash"
- import { ToolRegistry } from "@opencode-ai/core/tool/registry"
- import { ToolOutputStore } from "@opencode-ai/core/tool-output-store"
- import { location } from "./fixture/location"
- import { tmpdir } from "./fixture/tmpdir"
- import { testEffect } from "./lib/effect"
- import { toolIdentity, executeTool, settleTool, toolDefinitions } from "./lib/tool"
- const sessionID = SessionV2.ID.make("ses_bash_tool_test")
- const assertions: PermissionV2.AssertInput[] = []
- const runs: Array<{
- readonly command: string
- readonly cwd?: string
- readonly shell?: string | boolean
- readonly options?: AppProcess.RunOptions
- }> = []
- let denyAction: string | undefined
- let result: AppProcess.RunResult = {
- command: "mock",
- exitCode: 0,
- output: Buffer.from("hello\n"),
- stdout: Buffer.from("hello\n"),
- stderr: Buffer.alloc(0),
- outputTruncated: false,
- stdoutTruncated: false,
- stderrTruncated: false,
- }
- let runFailure: AppProcess.AppProcessError | undefined
- let afterPermission = (_input: PermissionV2.AssertInput): Effect.Effect<void> => Effect.void
- const permission = Layer.succeed(
- PermissionV2.Service,
- PermissionV2.Service.of({
- assert: (input) =>
- Effect.sync(() => assertions.push(input)).pipe(
- Effect.andThen(Effect.suspend(() => afterPermission(input))),
- Effect.andThen(
- input.action === denyAction ? Effect.fail(new PermissionV2.BlockedError({ rules: [] })) : Effect.void,
- ),
- ),
- ask: () => Effect.die("unused"),
- reply: () => Effect.die("unused"),
- get: () => Effect.die("unused"),
- forSession: () => Effect.die("unused"),
- list: () => Effect.die("unused"),
- }),
- )
- const appProcess = Layer.succeed(
- AppProcess.Service,
- AppProcess.Service.of({
- run: (command: ChildProcess.Command, options?: AppProcess.RunOptions) =>
- Effect.suspend(() => {
- if (command._tag !== "StandardCommand") throw new Error("expected standard command")
- runs.push({ command: command.command, cwd: command.options.cwd, shell: command.options.shell, options })
- return runFailure ? Effect.fail(runFailure) : Effect.succeed(result)
- }),
- } as unknown as AppProcess.Interface),
- )
- const config = Layer.succeed(
- Config.Service,
- Config.Service.of({
- entries: () => Effect.succeed([]),
- }),
- )
- const reset = () => {
- assertions.length = 0
- runs.length = 0
- denyAction = undefined
- runFailure = undefined
- afterPermission = () => Effect.void
- result = {
- command: "mock",
- exitCode: 0,
- output: Buffer.from("hello\n"),
- stdout: Buffer.from("hello\n"),
- stderr: Buffer.alloc(0),
- outputTruncated: false,
- stdoutTruncated: false,
- stderrTruncated: false,
- }
- }
- const withTool = <A, E, R>(
- directory: string,
- body: (registry: ToolRegistry.Interface) => Effect.Effect<A, E, R>,
- processLayer: Layer.Layer<AppProcess.Service> = appProcess,
- ) => {
- const activeLocation = Layer.succeed(
- Location.Service,
- Location.Service.of(location({ directory: AbsolutePath.make(directory) })),
- )
- return Effect.gen(function* () {
- return yield* body(yield* ToolRegistry.Service)
- }).pipe(
- Effect.provide(
- AppNodeBuilder.build(
- LayerNode.group([ToolRegistry.node, ToolRegistry.toolsNode, LocationMutation.node, BashTool.node]),
- [
- [Location.node, activeLocation],
- [PermissionV2.node, permission],
- [AppProcess.node, processLayer],
- [Config.node, config],
- [ToolOutputStore.node, ToolOutputStore.nodeWithoutConfig],
- ],
- ),
- ),
- )
- }
- const call = (input: typeof BashTool.Input.Type, id = "call-bash") => ({
- sessionID,
- ...toolIdentity,
- call: { type: "tool-call" as const, id, name: "bash", input },
- })
- const it = testEffect(Layer.empty)
- describe("BashTool", () => {
- it.live("registers and returns structured successful output from the active Location", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- return withTool(tmp.path, (registry) =>
- Effect.gen(function* () {
- const definitions = yield* toolDefinitions(registry)
- expect(definitions.map((tool) => tool.name)).toEqual(["bash"])
- expect(definitions[0]?.inputSchema).not.toHaveProperty("properties.background")
- expect(definitions[0]?.inputSchema).not.toHaveProperty("properties.description")
- expect(definitions[0]?.outputSchema).not.toHaveProperty("properties.output")
- expect(definitions[0]?.outputSchema).not.toHaveProperty("properties.command")
- expect(definitions[0]?.outputSchema).not.toHaveProperty("properties.cwd")
- expect(yield* toolDefinitions(registry, [{ action: "bash", resource: "*", effect: "deny" }])).toEqual([])
- expect(yield* settleTool(registry, call({ command: "pwd" }))).toEqual({
- result: {
- type: "content",
- value: [
- { type: "text", text: "hello\n" },
- { type: "text", text: "Command exited with code 0." },
- ],
- },
- output: {
- structured: {
- exit: 0,
- truncated: false,
- },
- content: [
- { type: "text", text: "hello\n" },
- { type: "text", text: "Command exited with code 0." },
- ],
- },
- })
- expect(runs).toMatchObject([{ command: "pwd", cwd: realpathSync(tmp.path) }])
- expect(runs[0]?.options).toMatchObject({
- combineOutput: true,
- maxOutputBytes: BashTool.MAX_CAPTURE_BYTES,
- })
- expect(assertions).toMatchObject([{ sessionID, action: "bash", resources: ["pwd"], save: ["pwd"] }])
- }),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- it.live("resolves a relative workdir from the active Location", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- return Effect.promise(() => fs.mkdir(path.join(tmp.path, "src"))).pipe(
- Effect.andThen(
- withTool(tmp.path, (registry) => executeTool(registry, call({ command: "pwd", workdir: "src" }))),
- ),
- Effect.andThen(
- Effect.sync(() => expect(runs).toMatchObject([{ cwd: realpathSync(path.join(tmp.path, "src")) }])),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- it.live("rejects a workdir that stops being a directory during approval", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- const workdir = path.join(tmp.path, "src")
- afterPermission = (input) =>
- input.action === "bash"
- ? Effect.promise(async () => {
- await fs.rm(workdir, { recursive: true })
- await fs.writeFile(workdir, "not a directory")
- }).pipe(Effect.orDie)
- : Effect.void
- return Effect.promise(() => fs.mkdir(workdir)).pipe(
- Effect.andThen(
- withTool(tmp.path, (registry) => executeTool(registry, call({ command: "pwd", workdir: "src" }))),
- ),
- Effect.andThen(
- Effect.sync(() => {
- expect(runs).toEqual([])
- expect(assertions.map((input) => input.action)).toEqual(["bash"])
- }),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- if (process.platform !== "win32") {
- it.live("executes a real shell command through AppProcess", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- return withTool(
- tmp.path,
- (registry) => settleTool(registry, call({ command: "printf core-bash" })),
- LayerNode.compile(AppProcess.node),
- ).pipe(
- Effect.andThen((settled) =>
- Effect.sync(() => {
- expect(settled.result).toEqual({
- type: "content",
- value: [
- { type: "text", text: "core-bash" },
- { type: "text", text: "Command exited with code 0." },
- ],
- })
- expect(settled.output?.structured).toMatchObject({
- exit: 0,
- })
- expect(settled.output?.structured).not.toHaveProperty("output")
- }),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- }
- it.live("approves an explicit external workdir before bash execution", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => Promise.all([tmpdir(), tmpdir()])),
- ([active, outside]) => {
- reset()
- return withTool(active.path, (registry) =>
- executeTool(registry, call({ command: "pwd", workdir: outside.path })),
- ).pipe(
- Effect.andThen(
- Effect.sync(() => {
- expect(assertions.map((item) => item.action)).toEqual(["external_directory", "bash"])
- expect(assertions[0]).toMatchObject({
- resources: [path.join(realpathSync(outside.path), "*").replaceAll("\\", "/")],
- })
- expect(runs).toHaveLength(1)
- }),
- ),
- )
- },
- ([active, outside]) =>
- Effect.promise(() =>
- Promise.all([active[Symbol.asyncDispose](), outside[Symbol.asyncDispose]()]).then(() => undefined),
- ),
- ),
- )
- it.live("does not execute after external-directory or bash denial", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => Promise.all([tmpdir(), tmpdir()])),
- ([active, outside]) =>
- Effect.gen(function* () {
- reset()
- denyAction = "external_directory"
- yield* withTool(active.path, (registry) =>
- executeTool(registry, call({ command: "pwd", workdir: outside.path })),
- )
- expect(assertions.map((item) => item.action)).toEqual(["external_directory"])
- expect(runs).toEqual([])
- reset()
- denyAction = "bash"
- yield* withTool(active.path, (registry) => executeTool(registry, call({ command: "pwd" })))
- expect(assertions.map((item) => item.action)).toEqual(["bash"])
- expect(runs).toEqual([])
- }),
- ([active, outside]) =>
- Effect.promise(() =>
- Promise.all([active[Symbol.asyncDispose](), outside[Symbol.asyncDispose]()]).then(() => undefined),
- ),
- ),
- )
- it.live("reports external command arguments as advisory warnings without enforcing approval", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => Promise.all([tmpdir(), tmpdir()])),
- ([active, outside]) => {
- reset()
- denyAction = "external_directory"
- const target = path.join(outside.path, "secret.txt")
- return withTool(active.path, (registry) => settleTool(registry, call({ command: `cat ${target}` }))).pipe(
- Effect.andThen((settled) =>
- Effect.sync(() => {
- expect(assertions.map((item) => item.action)).toEqual(["bash"])
- expect(runs).toHaveLength(1)
- expect(settled.output?.structured).toMatchObject({
- truncated: false,
- })
- expect(settled.output?.structured).not.toHaveProperty("warnings")
- expect(settled.output?.content[1]).toMatchObject({
- type: "text",
- text: expect.stringContaining("Warnings:"),
- })
- }),
- ),
- )
- },
- ([active, outside]) =>
- Effect.promise(() =>
- Promise.all([active[Symbol.asyncDispose](), outside[Symbol.asyncDispose]()]).then(() => undefined),
- ),
- ),
- )
- it.live("keeps non-zero exits useful", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- result = { ...result, exitCode: 7, output: Buffer.from("HEAD full output TAIL") }
- return withTool(tmp.path, (registry) => settleTool(registry, call({ command: "false" }, "call-overflow"))).pipe(
- Effect.andThen((settled) =>
- Effect.sync(() => {
- expect(settled.output?.content[1]).toMatchObject({
- type: "text",
- text: expect.stringContaining("Command exited with code 7"),
- })
- expect(settled.output?.structured).toMatchObject({
- exit: 7,
- truncated: false,
- })
- expect(settled.output?.content[0]).toEqual({ type: "text", text: "HEAD full output TAIL" })
- }),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- it.live("surfaces bounded process-capture truncation", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- result = { ...result, outputTruncated: true }
- return withTool(tmp.path, (registry) => settleTool(registry, call({ command: "verbose" }))).pipe(
- Effect.andThen((settled) =>
- Effect.sync(() => {
- expect(settled.output?.structured).toMatchObject({ truncated: true })
- expect(settled.output?.content[0]).toMatchObject({
- type: "text",
- text: expect.stringContaining("output capture truncated"),
- })
- expect(settled.output?.structured).not.toHaveProperty("resource")
- }),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- it.live("returns a useful timeout settlement", () =>
- Effect.acquireUseRelease(
- Effect.promise(() => tmpdir()),
- (tmp) => {
- reset()
- runFailure = new AppProcess.AppProcessError({ command: "sleep", cause: new Error("Timed out") })
- return withTool(tmp.path, (registry) => settleTool(registry, call({ command: "sleep 60", timeout: 10 }))).pipe(
- Effect.andThen((settled) =>
- Effect.sync(() => {
- expect(settled.output?.content[1]).toMatchObject({
- type: "text",
- text: expect.stringContaining("Command timed out"),
- })
- expect(settled.output?.structured).toMatchObject({
- timeout: true,
- truncated: false,
- })
- }),
- ),
- )
- },
- (tmp) => Effect.promise(() => tmp[Symbol.asyncDispose]()),
- ),
- )
- })
- test("keeps locked deferred parity TODOs visible", async () => {
- const source = await fs.readFile(new URL("../src/tool/bash.ts", import.meta.url), "utf8")
- for (const todo of [
- "Port tree-sitter bash / PowerShell parser-based approval reduction.",
- "Port BashArity reusable command-prefix approvals.",
- "Replace token-based command-argument external-directory advisories with parser-based detection.",
- "Restore PowerShell and cmd-specific invocation/path handling on Windows.",
- "Add plugin shell.env environment augmentation once V2 plugin hooks exist.",
- "Add durable/live progress metadata streaming for long-running commands once V2 tool invocation progress context is wired.",
- "Persist background job status and define restart recovery before exposing remote observation.",
- "Revisit process-group cleanup and platform coverage with shell-specific tests if current AppProcess semantics do not fully cover it.",
- "Revisit binary output handling if stdout/stderr decoding is text-only.",
- "Stream full shell output into managed storage while retaining only a bounded in-memory preview.",
- ]) {
- expect(source).toContain(`TODO: ${todo}`)
- }
- })
|