0d3cb498a3
CI / Shell Format Check (push) Has been cancelled
CI / Check Ruby (3.4) (push) Has been cancelled
CI / CI Config (push) Has been cancelled
CI / Test on Node ${{ matrix.node }} and ${{ matrix.os }}${{ matrix.shard && format(' (shard {0}/3)', matrix.shard) || '' }} (push) Has been cancelled
CI / Build on Node ${{ matrix.node }} (push) Has been cancelled
CI / Style Check (push) Has been cancelled
CI / Generate Assets (push) Has been cancelled
CI / Check Python (3.14) (push) Has been cancelled
CI / Check Python (3.9) (push) Has been cancelled
CI / Build Docs (push) Has been cancelled
CI / Code Scan Action (push) Has been cancelled
CI / Site tests (push) Has been cancelled
CI / webui tests (push) Has been cancelled
CI / Run Integration Tests (push) Has been cancelled
CI / Run Smoke Tests (push) Has been cancelled
CI / Go Tests (push) Has been cancelled
CI / Share Test (push) Has been cancelled
CI / Redteam (Production API) (push) Has been cancelled
CI / Redteam (Staging API) (push) Has been cancelled
CI / GitHub Actions Lint (push) Has been cancelled
CI / Check Ruby (3.0) (push) Has been cancelled
release-please / release-please (push) Has been cancelled
release-please / build (push) Has been cancelled
release-please / publish-npm (push) Has been cancelled
release-please / publish-npm-backfill (push) Has been cancelled
release-please / docker (push) Has been cancelled
release-please / publish-code-scan-action (push) Has been cancelled
release-please / attest-code-scan-action (push) Has been cancelled
Deploy local.promptfoo.app / Deploy to Cloudflare Pages (push) Has been cancelled
Test and Publish Multi-arch Docker Image / test (push) Has been cancelled
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-amd64 platform:linux/amd64 runner:ubuntu-latest]) (push) Has been cancelled
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-arm64 platform:linux/arm64 runner:ubuntu-24.04-arm]) (push) Has been cancelled
Test and Publish Multi-arch Docker Image / merge-docker-digests (push) Has been cancelled
Test and Publish Multi-arch Docker Image / Attest Multi-arch Image (push) Has been cancelled
Validate Renovate Config / Validate Renovate Configuration (push) Has been cancelled
342 lines
11 KiB
TypeScript
342 lines
11 KiB
TypeScript
import { beforeEach, describe, expect, it, vi } from 'vitest';
|
|
import { MCPProvider } from '../../src/providers/mcp';
|
|
import { maybeWrapMcpProviderForRedteam } from '../../src/redteam/mcpTargetProvider';
|
|
|
|
import type { MCPTool } from '../../src/providers/mcp/types';
|
|
import type { CallApiContextParams, CallApiOptionsParams, ProviderResponse } from '../../src/types';
|
|
|
|
const providerManagerMocks = vi.hoisted(() => ({
|
|
getProvider: vi.fn(),
|
|
}));
|
|
const promptfooProviderMocks = vi.hoisted(() => ({
|
|
materializeMcpToolCallRemote: vi.fn(),
|
|
}));
|
|
|
|
vi.mock('../../src/redteam/providers/shared', () => ({
|
|
redteamProviderManager: {
|
|
getProvider: providerManagerMocks.getProvider,
|
|
},
|
|
}));
|
|
vi.mock('../../src/redteam/extraction/util', () => ({
|
|
materializeMcpToolCallRemote: promptfooProviderMocks.materializeMcpToolCallRemote,
|
|
}));
|
|
|
|
class FakeMcpProvider extends MCPProvider {
|
|
calls: { context?: CallApiContextParams; options?: CallApiOptionsParams; prompt: string }[] = [];
|
|
cleanupCalls = 0;
|
|
|
|
constructor(
|
|
private readonly tools: MCPTool[],
|
|
id = 'mcp',
|
|
) {
|
|
super({ config: { enabled: false }, id });
|
|
}
|
|
|
|
async getAvailableTools(): Promise<MCPTool[]> {
|
|
return this.tools;
|
|
}
|
|
|
|
async callApi(
|
|
prompt: string,
|
|
context?: CallApiContextParams,
|
|
options?: CallApiOptionsParams,
|
|
): Promise<ProviderResponse> {
|
|
this.calls.push({ prompt, context, options });
|
|
return { output: 'ok' };
|
|
}
|
|
|
|
async cleanup(): Promise<void> {
|
|
this.cleanupCalls += 1;
|
|
}
|
|
}
|
|
|
|
describe('maybeWrapMcpProviderForRedteam', () => {
|
|
const searchCompaniesPrompt = 'Find clean energy companies.';
|
|
const searchCompaniesCall = {
|
|
tool: 'search_companies',
|
|
args: {
|
|
query: searchCompaniesPrompt,
|
|
limit: 10,
|
|
},
|
|
};
|
|
|
|
const searchCompaniesTool: MCPTool = {
|
|
name: 'search_companies',
|
|
description: 'Search sample company records.',
|
|
inputSchema: {
|
|
type: 'object',
|
|
properties: {
|
|
query: { type: 'string' },
|
|
limit: { type: 'integer', default: 10 },
|
|
},
|
|
required: ['query'],
|
|
},
|
|
};
|
|
|
|
const redteamMetadata = (pluginId: string, purpose = 'Search companies') => ({
|
|
metadata: {
|
|
pluginId,
|
|
purpose,
|
|
},
|
|
});
|
|
|
|
const redteamContext = (
|
|
prompt = searchCompaniesPrompt,
|
|
pluginId = 'harmful:hate',
|
|
purpose = 'Search companies',
|
|
): CallApiContextParams => ({
|
|
prompt: {
|
|
raw: '{{prompt}}',
|
|
label: 'prompt',
|
|
},
|
|
vars: { prompt },
|
|
test: redteamMetadata(pluginId, purpose),
|
|
});
|
|
|
|
const parseToolCall = (raw: unknown) => JSON.parse(String(raw));
|
|
const remoteMaterializedCall = (tokenUsage?: Record<string, number>) => ({
|
|
prompt: JSON.stringify(searchCompaniesCall),
|
|
...(tokenUsage ? { tokenUsage } : {}),
|
|
});
|
|
|
|
beforeEach(() => {
|
|
providerManagerMocks.getProvider.mockReset();
|
|
promptfooProviderMocks.materializeMcpToolCallRemote.mockReset();
|
|
});
|
|
|
|
it('uses remote materialization for invalid redteam target calls before they reach MCP providers', async () => {
|
|
promptfooProviderMocks.materializeMcpToolCallRemote.mockResolvedValueOnce(
|
|
remoteMaterializedCall(),
|
|
);
|
|
|
|
const target = new FakeMcpProvider([searchCompaniesTool]);
|
|
const wrapped = maybeWrapMcpProviderForRedteam(target, redteamMetadata('harmful:hate'));
|
|
|
|
await wrapped.callApi(searchCompaniesPrompt, redteamContext());
|
|
|
|
expect(promptfooProviderMocks.materializeMcpToolCallRemote).toHaveBeenCalledWith(
|
|
{
|
|
intentValue: searchCompaniesPrompt,
|
|
purpose: 'Search companies',
|
|
tools: [searchCompaniesTool],
|
|
value: searchCompaniesPrompt,
|
|
},
|
|
undefined,
|
|
);
|
|
expect(providerManagerMocks.getProvider).not.toHaveBeenCalled();
|
|
expect(target.calls).toHaveLength(1);
|
|
expect(parseToolCall(target.calls[0].prompt)).toEqual(searchCompaniesCall);
|
|
expect(parseToolCall(target.calls[0].context?.vars.prompt)).toEqual(searchCompaniesCall);
|
|
});
|
|
|
|
it('adds remote materialization token usage to the wrapped target response', async () => {
|
|
promptfooProviderMocks.materializeMcpToolCallRemote.mockResolvedValueOnce(
|
|
remoteMaterializedCall({
|
|
completion: 3,
|
|
numRequests: 1,
|
|
prompt: 7,
|
|
total: 10,
|
|
}),
|
|
);
|
|
|
|
const target = new FakeMcpProvider([searchCompaniesTool]);
|
|
const wrapped = maybeWrapMcpProviderForRedteam(target, redteamMetadata('harmful:hate'));
|
|
|
|
await expect(wrapped.callApi(searchCompaniesPrompt, redteamContext())).resolves.toMatchObject({
|
|
output: 'ok',
|
|
tokenUsage: {
|
|
cached: 0,
|
|
completion: 3,
|
|
prompt: 7,
|
|
total: 10,
|
|
},
|
|
});
|
|
});
|
|
|
|
it('passes linked cloud target context to remote materialization', async () => {
|
|
promptfooProviderMocks.materializeMcpToolCallRemote.mockResolvedValueOnce(
|
|
remoteMaterializedCall(),
|
|
);
|
|
|
|
const target = new FakeMcpProvider(
|
|
[searchCompaniesTool],
|
|
'promptfoo://provider/cloud-target-123',
|
|
);
|
|
const wrapped = maybeWrapMcpProviderForRedteam(target, redteamMetadata('harmful:hate'));
|
|
|
|
await wrapped.callApi(searchCompaniesPrompt, redteamContext());
|
|
|
|
expect(promptfooProviderMocks.materializeMcpToolCallRemote).toHaveBeenCalledWith(
|
|
expect.objectContaining({
|
|
targetId: 'cloud-target-123',
|
|
}),
|
|
undefined,
|
|
);
|
|
});
|
|
|
|
it('does not request inference when the prompt is already valid MCP JSON', async () => {
|
|
const target = new FakeMcpProvider([searchCompaniesTool]);
|
|
const wrapped = maybeWrapMcpProviderForRedteam(target, redteamMetadata('harmful:hate'));
|
|
const prompt = JSON.stringify({
|
|
tool: 'search_companies',
|
|
args: { query: 'cloud', limit: 1 },
|
|
});
|
|
|
|
await wrapped.callApi(prompt, redteamContext(prompt));
|
|
|
|
expect(providerManagerMocks.getProvider).not.toHaveBeenCalled();
|
|
expect(promptfooProviderMocks.materializeMcpToolCallRemote).not.toHaveBeenCalled();
|
|
expect(target.calls).toHaveLength(1);
|
|
expect(parseToolCall(target.calls[0].prompt)).toEqual({
|
|
tool: 'search_companies',
|
|
args: { query: 'cloud', limit: 1 },
|
|
});
|
|
});
|
|
|
|
it('forwards directly when the MCP provider has no tools', async () => {
|
|
const target = new FakeMcpProvider([]);
|
|
const wrapped = maybeWrapMcpProviderForRedteam(target, {
|
|
metadata: {
|
|
strategyId: 'jailbreak:hydra',
|
|
},
|
|
});
|
|
|
|
const options = { includeLogProbs: true };
|
|
|
|
const response = await wrapped.callApi('Plain prompt', undefined, options);
|
|
|
|
expect(response).toEqual({ output: 'ok' });
|
|
expect(providerManagerMocks.getProvider).not.toHaveBeenCalled();
|
|
expect(promptfooProviderMocks.materializeMcpToolCallRemote).not.toHaveBeenCalled();
|
|
expect(target.calls).toEqual([{ prompt: 'Plain prompt', context: undefined, options }]);
|
|
});
|
|
|
|
it('uses local fallback materialization when remote generation is disabled', async () => {
|
|
promptfooProviderMocks.materializeMcpToolCallRemote.mockResolvedValueOnce(undefined);
|
|
providerManagerMocks.getProvider.mockResolvedValueOnce({
|
|
id: () => 'openai:test',
|
|
callApi: async () => ({
|
|
output: JSON.stringify(searchCompaniesCall),
|
|
}),
|
|
});
|
|
|
|
const target = new FakeMcpProvider([searchCompaniesTool]);
|
|
const wrapped = maybeWrapMcpProviderForRedteam(target, redteamMetadata('harmful:hate'));
|
|
|
|
await wrapped.callApi(searchCompaniesPrompt, redteamContext());
|
|
|
|
expect(promptfooProviderMocks.materializeMcpToolCallRemote).toHaveBeenCalledTimes(1);
|
|
expect(providerManagerMocks.getProvider).toHaveBeenCalledWith({ jsonOnly: true });
|
|
expect(parseToolCall(target.calls[0].prompt)).toEqual(searchCompaniesCall);
|
|
});
|
|
|
|
it('preserves provider identity helpers and cleanup behavior', async () => {
|
|
const target = new FakeMcpProvider([searchCompaniesTool]);
|
|
const wrapped = maybeWrapMcpProviderForRedteam(target, {
|
|
metadata: {
|
|
pluginId: 'bias:age',
|
|
},
|
|
});
|
|
|
|
expect(wrapped.id()).toBe('mcp');
|
|
expect(wrapped.toString?.()).toBe('[MCP Provider]');
|
|
|
|
await wrapped.cleanup?.();
|
|
|
|
expect(target.cleanupCalls).toBe(1);
|
|
});
|
|
|
|
it('returns a materialization error when inference provider is unavailable', async () => {
|
|
promptfooProviderMocks.materializeMcpToolCallRemote.mockResolvedValueOnce(undefined);
|
|
providerManagerMocks.getProvider.mockRejectedValueOnce(
|
|
new Error('No repair provider configured'),
|
|
);
|
|
|
|
const target = new FakeMcpProvider([
|
|
{
|
|
name: 'list_industries',
|
|
description: 'List industries.',
|
|
inputSchema: { type: 'object', properties: {} },
|
|
},
|
|
searchCompaniesTool,
|
|
]);
|
|
const wrapped = maybeWrapMcpProviderForRedteam(target, {
|
|
metadata: {
|
|
pluginId: 'sql-injection',
|
|
purpose: 'Search companies',
|
|
},
|
|
});
|
|
|
|
await expect(
|
|
wrapped.callApi(
|
|
'Search for clean energy companies.',
|
|
redteamContext('Search for clean energy companies.', 'sql-injection'),
|
|
),
|
|
).resolves.toEqual({
|
|
error: expect.stringContaining('Failed to materialize MCP target prompt'),
|
|
});
|
|
expect(target.calls).toHaveLength(0);
|
|
});
|
|
|
|
it('returns a materialization error when inference provider calls fail', async () => {
|
|
promptfooProviderMocks.materializeMcpToolCallRemote.mockResolvedValueOnce(undefined);
|
|
providerManagerMocks.getProvider.mockResolvedValueOnce({
|
|
id: () => 'openai:test',
|
|
callApi: async () => {
|
|
throw new Error('Repair provider failed');
|
|
},
|
|
});
|
|
|
|
const target = new FakeMcpProvider([searchCompaniesTool]);
|
|
const wrapped = maybeWrapMcpProviderForRedteam(target, redteamMetadata('harmful:hate'));
|
|
|
|
await expect(wrapped.callApi(searchCompaniesPrompt, redteamContext())).resolves.toEqual({
|
|
error: expect.stringContaining('Failed to materialize MCP target prompt'),
|
|
});
|
|
expect(target.calls).toHaveLength(0);
|
|
});
|
|
|
|
it('returns a materialization error when the wrapped provider call fails', async () => {
|
|
promptfooProviderMocks.materializeMcpToolCallRemote.mockResolvedValueOnce(
|
|
remoteMaterializedCall(),
|
|
);
|
|
|
|
const target = new FakeMcpProvider([searchCompaniesTool]);
|
|
vi.spyOn(target, 'callApi').mockRejectedValueOnce(new Error('Target provider failed'));
|
|
const wrapped = maybeWrapMcpProviderForRedteam(target, redteamMetadata('harmful:hate'));
|
|
|
|
await expect(wrapped.callApi(searchCompaniesPrompt, redteamContext())).resolves.toEqual({
|
|
error: expect.stringContaining('Target provider failed'),
|
|
});
|
|
});
|
|
|
|
it('does not wrap non-redteam MCP calls', () => {
|
|
const target = new FakeMcpProvider([searchCompaniesTool]);
|
|
|
|
expect(maybeWrapMcpProviderForRedteam(target, { metadata: {} })).toBe(target);
|
|
});
|
|
|
|
it('does not wrap non-MCP providers for redteam calls', () => {
|
|
const provider = {
|
|
id: () => 'openai:test',
|
|
callApi: vi.fn(),
|
|
};
|
|
|
|
expect(
|
|
maybeWrapMcpProviderForRedteam(provider, {
|
|
metadata: {
|
|
pluginId: 'bias:age',
|
|
},
|
|
}),
|
|
).toBe(provider);
|
|
});
|
|
|
|
it('does not wrap the same MCP provider more than once', () => {
|
|
const target = new FakeMcpProvider([searchCompaniesTool]);
|
|
const test = { metadata: { pluginId: 'bias:age' } };
|
|
const wrapped = maybeWrapMcpProviderForRedteam(target, test);
|
|
|
|
expect(maybeWrapMcpProviderForRedteam(wrapped, test)).toBe(wrapped);
|
|
});
|
|
});
|