d5fbada13d
Move test coercion out of a hidden global and require each test to import the helper so review tools and runtime scripts can see the unsafe boundary. Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
76 lines
2.2 KiB
TypeScript
76 lines
2.2 KiB
TypeScript
import { describe, expect, test } from "bun:test"
|
|
|
|
import { executeUnstableAgentTask } from "./unstable-agent-task"
|
|
import { unsafeTestValue } from "../../../test-support/unsafe-test-value"
|
|
|
|
describe("executeUnstableAgentTask session permission", () => {
|
|
test("passes question-deny session permission into background launch", async () => {
|
|
// given
|
|
const launchCalls: Array<Record<string, unknown>> = []
|
|
const mockManager = {
|
|
launch: async (input: Record<string, unknown>) => {
|
|
launchCalls.push(input)
|
|
return {
|
|
id: "bg_unstable_permission",
|
|
sessionId: "ses_unstable_permission",
|
|
description: "test task",
|
|
agent: "sisyphus-junior",
|
|
status: "running",
|
|
}
|
|
},
|
|
getTask: () => ({
|
|
id: "bg_unstable_permission",
|
|
sessionId: "ses_unstable_permission",
|
|
status: "interrupt",
|
|
description: "test task",
|
|
agent: "sisyphus-junior",
|
|
error: "stop after launch",
|
|
}),
|
|
}
|
|
const toolContext = {
|
|
sessionID: "parent-session",
|
|
messageID: "msg_parent",
|
|
agent: "sisyphus",
|
|
metadata: () => {},
|
|
abort: new AbortController().signal,
|
|
} satisfies Parameters<typeof executeUnstableAgentTask>[1]
|
|
const executorContext = unsafeTestValue<Parameters<typeof executeUnstableAgentTask>[2]>({
|
|
manager: mockManager,
|
|
client: {
|
|
session: {
|
|
status: async () => ({ data: {} }),
|
|
messages: async () => ({ data: [] }),
|
|
},
|
|
},
|
|
})
|
|
const parentContext = {
|
|
sessionID: "parent-session",
|
|
messageID: "msg_parent",
|
|
} satisfies Parameters<typeof executeUnstableAgentTask>[3]
|
|
|
|
// when
|
|
await executeUnstableAgentTask(
|
|
{
|
|
prompt: "test prompt",
|
|
description: "test task",
|
|
category: "test",
|
|
load_skills: [],
|
|
run_in_background: false,
|
|
},
|
|
toolContext,
|
|
executorContext,
|
|
parentContext,
|
|
"sisyphus-junior",
|
|
undefined,
|
|
undefined,
|
|
"test-model",
|
|
)
|
|
|
|
// then
|
|
expect(launchCalls).toHaveLength(1)
|
|
expect(launchCalls[0]?.sessionPermission).toEqual([
|
|
{ permission: "question", action: "deny", pattern: "*" },
|
|
])
|
|
})
|
|
})
|