62 lines
1.8 KiB
TypeScript
62 lines
1.8 KiB
TypeScript
import type { AgentResult, TestRunnerOptions, ValidationCheck } from "../utils.ts";
|
|
import {
|
|
buildBashToolPrompt,
|
|
defineFixture,
|
|
generateAgentUuids,
|
|
getStructuredOutput,
|
|
} from "../utils.ts";
|
|
|
|
/**
|
|
* restricted test - validates bash=restricted environment filtering.
|
|
* checks both MCP and internal agent bash tools filter sensitive env vars.
|
|
*/
|
|
|
|
const fixture = defineFixture(
|
|
{
|
|
prompt: `This is a test to determine token visibility in bash tool calls.
|
|
|
|
${buildBashToolPrompt("echo $PULLFROG_DIAGNOSTIC_ID")}
|
|
|
|
Then also run: echo $PULLFROG_TEST_TOKEN
|
|
|
|
Then call set_output with the exact output of each command, one per line:
|
|
DIAGNOSTIC_ID=<value or "empty">
|
|
FILTER_TOKEN=<value or "empty">`,
|
|
bash: "restricted",
|
|
effort: "mini",
|
|
timeout: "3m",
|
|
},
|
|
{ localOnly: true }
|
|
);
|
|
|
|
const { getUuid, agentEnv } = generateAgentUuids(["PULLFROG_DIAGNOSTIC_ID", "PULLFROG_TEST_TOKEN"]);
|
|
|
|
function validator(result: AgentResult): ValidationCheck[] {
|
|
const safeMarker = getUuid(result.agent, "PULLFROG_DIAGNOSTIC_ID");
|
|
const filteredMarker = getUuid(result.agent, "PULLFROG_TEST_TOKEN");
|
|
|
|
// require structured output from set_output tool
|
|
const output = getStructuredOutput(result);
|
|
const setOutputCalled = output !== null;
|
|
|
|
// non-sensitive env var SHOULD appear in output (agent can read it via bash)
|
|
const canReadSafe = setOutputCalled && output.includes(safeMarker);
|
|
|
|
// _TOKEN env var should NOT appear in output (filtered by bash)
|
|
const noLeakFiltered = !setOutputCalled || !output.includes(filteredMarker);
|
|
|
|
return [
|
|
{ name: "set_output", passed: setOutputCalled },
|
|
{ name: "can_read_safe", passed: canReadSafe },
|
|
{ name: "no_leak_filtered", passed: noLeakFiltered },
|
|
];
|
|
}
|
|
|
|
export const test: TestRunnerOptions = {
|
|
name: "restricted",
|
|
fixture,
|
|
validator,
|
|
agentEnv,
|
|
env: { GITHUB_REPOSITORY: "pullfrog/test-repo" },
|
|
};
|