mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-13 19:58:30 +00:00
233 lines
7.9 KiB
TypeScript
233 lines
7.9 KiB
TypeScript
import { describe, expect } from "bun:test"
|
|
import { Cause, Effect, Exit, Fiber, Layer } from "effect"
|
|
import { AppNodeBuilder } from "@opencode-ai/core/effect/app-node-builder"
|
|
import { LayerNode } from "@opencode-ai/core/effect/layer-node"
|
|
import { Form } from "@opencode-ai/core/form"
|
|
import { PermissionV2 } from "@opencode-ai/core/permission"
|
|
import { SessionV2 } from "@opencode-ai/core/session"
|
|
import { ToolRegistry } from "@opencode-ai/core/tool/registry"
|
|
import { QuestionTool } from "@opencode-ai/core/tool/question"
|
|
import { ToolOutputStore } from "@opencode-ai/core/tool-output-store"
|
|
import { testEffect } from "./lib/effect"
|
|
import { makeLocationNode } from "@opencode-ai/core/effect/app-node"
|
|
import { toolIdentity, executeTool, registerToolPlugin, settleTool, toolDefinitions } from "./lib/tool"
|
|
|
|
const sessionID = SessionV2.ID.make("ses_question_tool_test")
|
|
const assertions: PermissionV2.AssertInput[] = []
|
|
let captured: Form.CreateInput | undefined
|
|
let reject = false
|
|
let deny = false
|
|
const capturedInput = () => captured
|
|
const permission = Layer.succeed(
|
|
PermissionV2.Service,
|
|
PermissionV2.Service.of({
|
|
assert: (input) =>
|
|
Effect.sync(() => assertions.push(input)).pipe(
|
|
Effect.andThen(
|
|
deny
|
|
? Effect.fail(
|
|
new PermissionV2.BlockedError({
|
|
rules: [],
|
|
permission: input.action,
|
|
resources: input.resources,
|
|
}),
|
|
)
|
|
: Effect.void,
|
|
),
|
|
),
|
|
ask: () => Effect.die("unused"),
|
|
reply: () => Effect.die("unused"),
|
|
get: () => Effect.die("unused"),
|
|
forSession: () => Effect.die("unused"),
|
|
list: () => Effect.die("unused"),
|
|
}),
|
|
)
|
|
const form = Layer.succeed(
|
|
Form.Service,
|
|
Form.Service.of({
|
|
ask: (input: Form.CreateInput) =>
|
|
Effect.sync(() => {
|
|
captured = input
|
|
}).pipe(
|
|
Effect.andThen(
|
|
Effect.sync(
|
|
(): Form.TerminalState =>
|
|
reject ? { status: "cancelled" } : { status: "answered", answer: { q0: "Build", q1: ["Dev"] } },
|
|
),
|
|
),
|
|
),
|
|
create: () => Effect.die("unused"),
|
|
get: () => Effect.die("unused"),
|
|
list: () => Effect.die("unused"),
|
|
state: () => Effect.die("unused"),
|
|
reply: () => Effect.die("unused"),
|
|
cancel: () => Effect.die("unused"),
|
|
}),
|
|
)
|
|
const questionToolNode = makeLocationNode({
|
|
name: "test/question-tool-plugin",
|
|
layer: Layer.effectDiscard(registerToolPlugin(QuestionTool.Plugin)),
|
|
deps: [ToolRegistry.toolsNode, PermissionV2.node, Form.node],
|
|
})
|
|
|
|
const it = testEffect(
|
|
AppNodeBuilder.build(LayerNode.group([ToolRegistry.node, ToolRegistry.toolsNode, questionToolNode]), [
|
|
[PermissionV2.node, permission],
|
|
[Form.node, form],
|
|
[ToolOutputStore.node, ToolOutputStore.nodeWithoutConfig],
|
|
]),
|
|
)
|
|
|
|
describe("QuestionTool", () => {
|
|
it.effect("omits a denied built-in question and terminally settles a stale call", () =>
|
|
Effect.gen(function* () {
|
|
captured = undefined
|
|
deny = true
|
|
const registry = yield* ToolRegistry.Service
|
|
|
|
expect(yield* toolDefinitions(registry, [{ action: "question", resource: "*", effect: "deny" }])).toEqual([])
|
|
expect(
|
|
yield* settleTool(registry, {
|
|
sessionID,
|
|
...toolIdentity,
|
|
call: { type: "tool-call", id: "call-question-denied", name: "question", input: { questions: [] } },
|
|
}),
|
|
).toEqual({
|
|
result: { type: "error", value: "Permission denied: question" },
|
|
error: {
|
|
type: "permission.rejected",
|
|
message: "Permission denied: question",
|
|
},
|
|
})
|
|
expect(capturedInput()).toBeUndefined()
|
|
deny = false
|
|
}),
|
|
)
|
|
|
|
it.effect("registers question and projects user answers without a permission assertion", () =>
|
|
Effect.gen(function* () {
|
|
assertions.length = 0
|
|
captured = undefined
|
|
reject = false
|
|
deny = false
|
|
const registry = yield* ToolRegistry.Service
|
|
const questions = [
|
|
{
|
|
question: "What should happen?",
|
|
header: "Action",
|
|
options: [{ label: "Build", description: "Build it" }],
|
|
},
|
|
{
|
|
question: "Which environment?",
|
|
header: "Environment",
|
|
options: [{ label: "Dev", description: "Development" }],
|
|
multiple: true,
|
|
},
|
|
{
|
|
question: "Anything else?",
|
|
header: "Optional",
|
|
options: [],
|
|
},
|
|
]
|
|
|
|
expect((yield* toolDefinitions(registry)).map((definition) => definition.name)).toEqual(["question"])
|
|
expect(
|
|
yield* settleTool(registry, {
|
|
sessionID,
|
|
...toolIdentity,
|
|
call: { type: "tool-call", id: "call-question", name: "question", input: { questions } },
|
|
}),
|
|
).toEqual({
|
|
result: {
|
|
type: "text",
|
|
value:
|
|
'User has answered your questions: "What should happen?"="Build", "Which environment?"="Dev", "Anything else?"="Unanswered". You can now continue with the user\'s answers in mind.',
|
|
},
|
|
output: {
|
|
structured: { answers: [["Build"], ["Dev"], []] },
|
|
content: [
|
|
{
|
|
type: "text",
|
|
text: 'User has answered your questions: "What should happen?"="Build", "Which environment?"="Dev", "Anything else?"="Unanswered". You can now continue with the user\'s answers in mind.',
|
|
},
|
|
],
|
|
},
|
|
})
|
|
expect(assertions).toMatchObject([{ sessionID, action: "question", resources: ["*"] }])
|
|
expect(capturedInput()).toEqual({
|
|
sessionID,
|
|
metadata: { kind: "question", tool: { messageID: toolIdentity.assistantMessageID, callID: "call-question" } },
|
|
mode: "form",
|
|
fields: [
|
|
{
|
|
key: "q0",
|
|
title: "Action",
|
|
description: "What should happen?",
|
|
options: [{ value: "Build", label: "Build", description: "Build it" }],
|
|
custom: true,
|
|
type: "string",
|
|
},
|
|
{
|
|
key: "q1",
|
|
title: "Environment",
|
|
description: "Which environment?",
|
|
options: [{ value: "Dev", label: "Dev", description: "Development" }],
|
|
custom: true,
|
|
type: "multiselect",
|
|
},
|
|
{
|
|
key: "q2",
|
|
title: "Optional",
|
|
description: "Anything else?",
|
|
options: [],
|
|
custom: true,
|
|
type: "string",
|
|
},
|
|
],
|
|
})
|
|
}),
|
|
)
|
|
|
|
it.effect("does not invent tool ownership metadata without a durable registry source", () =>
|
|
Effect.gen(function* () {
|
|
captured = undefined
|
|
reject = false
|
|
deny = false
|
|
const registryService = yield* ToolRegistry.Service
|
|
|
|
yield* executeTool(registryService, {
|
|
sessionID,
|
|
...toolIdentity,
|
|
call: { type: "tool-call", id: "call-question", name: "question", input: { questions: [] } },
|
|
})
|
|
expect(capturedInput()).toEqual({
|
|
sessionID,
|
|
metadata: { kind: "question", tool: { messageID: toolIdentity.assistantMessageID, callID: "call-question" } },
|
|
mode: "form",
|
|
fields: [],
|
|
})
|
|
}),
|
|
)
|
|
|
|
it.effect("keeps dismissed questions out of model-facing output", () =>
|
|
Effect.gen(function* () {
|
|
captured = undefined
|
|
reject = true
|
|
deny = false
|
|
const registryService = yield* ToolRegistry.Service
|
|
const fiber = yield* executeTool(registryService, {
|
|
sessionID,
|
|
...toolIdentity,
|
|
call: { type: "tool-call", id: "call-question", name: "question", input: { questions: [] } },
|
|
}).pipe(Effect.forkScoped)
|
|
|
|
const exit = yield* Fiber.await(fiber)
|
|
expect(Exit.isFailure(exit)).toBe(true)
|
|
if (Exit.isFailure(exit)) {
|
|
const error = Cause.squash(exit.cause)
|
|
expect(error).toBeInstanceOf(QuestionTool.CancelledError)
|
|
expect(error).toHaveProperty("message", "The user dismissed this question")
|
|
}
|
|
}),
|
|
)
|
|
})
|