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>
25 lines
799 B
TypeScript
25 lines
799 B
TypeScript
/// <reference types="bun-types" />
|
|
import type { PluginInput } from "@opencode-ai/plugin"
|
|
import { unsafeTestValue } from "../../../test-support/unsafe-test-value"
|
|
|
|
export type SessionMessage = {
|
|
info?: { role?: string }
|
|
parts?: Array<{ type: string; text?: string }>
|
|
}
|
|
|
|
export function createPluginInput(messages: SessionMessage[]): PluginInput {
|
|
const pluginInput = {
|
|
client: { session: {} } as PluginInput["client"],
|
|
project: {} as PluginInput["project"],
|
|
directory: "/tmp",
|
|
worktree: "/tmp",
|
|
serverUrl: new URL("http://localhost"),
|
|
$: {} as PluginInput["$"],
|
|
} as PluginInput
|
|
|
|
const messagesFunction = unsafeTestValue<PluginInput["client"]["session"]["messages"]>(async () => ({ data: messages }))
|
|
pluginInput.client.session.messages = messagesFunction
|
|
|
|
return pluginInput
|
|
}
|