0d3cb498a3
Deploy local.promptfoo.app / Deploy to Cloudflare Pages (push) Waiting to run
Test and Publish Multi-arch Docker Image / test (push) Waiting to run
Test and Publish Multi-arch Docker Image / build-docker-and-push-digests (map[digest-suffix:linux-amd64 platform:linux/amd64 runner:ubuntu-latest]) (push) Blocked by required conditions
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) Blocked by required conditions
Test and Publish Multi-arch Docker Image / merge-docker-digests (push) Blocked by required conditions
Test and Publish Multi-arch Docker Image / Attest Multi-arch Image (push) Blocked by required conditions
Validate Renovate Config / Validate Renovate Configuration (push) Waiting to run
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
447 lines
12 KiB
TypeScript
447 lines
12 KiB
TypeScript
import { beforeEach, describe, expect, it, vi } from 'vitest';
|
|
import { AssertionsResult, GUARDRAIL_BLOCKED_REASON } from '../../src/assertions/assertionsResult';
|
|
import { mockProcessEnv } from '../util/utils';
|
|
|
|
import type { AssertionSet, GradingResult } from '../../src/types/index';
|
|
|
|
describe('AssertionsResult', () => {
|
|
const succeedingResult = {
|
|
pass: true,
|
|
score: 1,
|
|
reason: 'The succeeding reason',
|
|
tokensUsed: { total: 1, prompt: 2, completion: 3, cached: 0, numRequests: 0 },
|
|
};
|
|
const failingResult = {
|
|
pass: false,
|
|
score: 0,
|
|
reason: 'The failing reason',
|
|
tokensUsed: { total: 1, prompt: 2, completion: 3, cached: 0, numRequests: 0 },
|
|
};
|
|
const testResult = {
|
|
pass: true,
|
|
score: 1,
|
|
reason: 'All assertions passed',
|
|
componentResults: [succeedingResult],
|
|
namedScores: {},
|
|
tokensUsed: { total: 1, prompt: 2, completion: 3, cached: 0, numRequests: 0 },
|
|
};
|
|
let assertionsResult: AssertionsResult;
|
|
|
|
beforeEach(() => {
|
|
mockProcessEnv({ PROMPTFOO_SHORT_CIRCUIT_TEST_FAILURES: undefined });
|
|
assertionsResult = new AssertionsResult();
|
|
});
|
|
|
|
it('can return a succeeding testResult', async () => {
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: succeedingResult,
|
|
});
|
|
|
|
await expect(assertionsResult.testResult()).resolves.toEqual(testResult);
|
|
});
|
|
|
|
it('can return a failing testResult', async () => {
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: failingResult,
|
|
});
|
|
|
|
await expect(assertionsResult.testResult()).resolves.toEqual({
|
|
...testResult,
|
|
pass: false,
|
|
reason: failingResult.reason,
|
|
score: 0,
|
|
componentResults: [failingResult],
|
|
});
|
|
});
|
|
|
|
it('handles PROMPTFOO_SHORT_CIRCUIT_TEST_FAILURES', () => {
|
|
mockProcessEnv({ PROMPTFOO_SHORT_CIRCUIT_TEST_FAILURES: 'true' });
|
|
expect(() =>
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: failingResult,
|
|
}),
|
|
).toThrow(new Error(failingResult.reason));
|
|
});
|
|
|
|
it('handles named metrics', async () => {
|
|
const metric = 'metric-name';
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
metric,
|
|
result: succeedingResult,
|
|
});
|
|
|
|
await expect(assertionsResult.testResult()).resolves.toEqual({
|
|
...testResult,
|
|
namedScores: {
|
|
[metric]: 1,
|
|
},
|
|
namedScoreWeights: {
|
|
[metric]: 1,
|
|
},
|
|
});
|
|
});
|
|
|
|
it('handles result without tokensUsed', async () => {
|
|
const resultWithoutTokensUsed = {
|
|
...succeedingResult,
|
|
tokensUsed: undefined,
|
|
};
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: resultWithoutTokensUsed,
|
|
});
|
|
|
|
await expect(assertionsResult.testResult()).resolves.toEqual({
|
|
...testResult,
|
|
componentResults: [resultWithoutTokensUsed],
|
|
tokensUsed: { total: 0, prompt: 0, completion: 0, cached: 0, numRequests: 0 },
|
|
});
|
|
});
|
|
|
|
it('respects succeeding threshold', async () => {
|
|
const threshold = 0.5;
|
|
|
|
assertionsResult = new AssertionsResult({ threshold });
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: succeedingResult,
|
|
});
|
|
|
|
await expect(assertionsResult.testResult()).resolves.toEqual({
|
|
...testResult,
|
|
reason: 'Aggregate score 1.00 ≥ 0.5 threshold',
|
|
});
|
|
});
|
|
|
|
it('respects failing threshold', async () => {
|
|
const threshold = 0.5;
|
|
const failingResult = {
|
|
...succeedingResult,
|
|
score: 0.4,
|
|
};
|
|
|
|
assertionsResult = new AssertionsResult({ threshold });
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: failingResult,
|
|
});
|
|
|
|
await expect(assertionsResult.testResult()).resolves.toEqual({
|
|
...testResult,
|
|
pass: false,
|
|
reason: 'Aggregate score 0.40 < 0.5 threshold',
|
|
score: 0.4,
|
|
componentResults: [failingResult],
|
|
});
|
|
});
|
|
|
|
it('can use a parentAssertionSet', () => {
|
|
const parentAssertionSet = {
|
|
index: 3,
|
|
assertionSet: {
|
|
type: 'assert-set',
|
|
assert: [],
|
|
} satisfies AssertionSet,
|
|
};
|
|
|
|
assertionsResult = new AssertionsResult({ parentAssertionSet });
|
|
|
|
expect(assertionsResult.parentAssertionSet).toBe(parentAssertionSet);
|
|
});
|
|
|
|
it('stores compact assertion set metadata without nested assertions or config', async () => {
|
|
assertionsResult = new AssertionsResult({
|
|
parentAssertionSet: {
|
|
index: 0,
|
|
assertionSet: {
|
|
type: 'assert-set',
|
|
metric: 'tool-calls',
|
|
threshold: 0.8,
|
|
weight: 2,
|
|
config: { secretValue: 'redacted' },
|
|
assert: [{ type: 'contains', value: 'google_docs/create_document' }],
|
|
},
|
|
},
|
|
});
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: succeedingResult,
|
|
});
|
|
|
|
const result = await assertionsResult.testResult();
|
|
|
|
expect(result.metadata?.assertionSet).toEqual({
|
|
type: 'assert-set',
|
|
metric: 'tool-calls',
|
|
threshold: 0.8,
|
|
weight: 2,
|
|
assertionCount: 1,
|
|
});
|
|
});
|
|
|
|
it('preserves assertion set metadata when a scoring function returns metadata', async () => {
|
|
assertionsResult = new AssertionsResult({
|
|
parentAssertionSet: {
|
|
index: 0,
|
|
assertionSet: {
|
|
type: 'assert-set',
|
|
metric: 'tool-calls',
|
|
assert: [{ type: 'contains', value: 'google_docs/create_document' }],
|
|
},
|
|
},
|
|
});
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: succeedingResult,
|
|
});
|
|
|
|
const result = await assertionsResult.testResult(() => ({
|
|
pass: true,
|
|
score: 0.9,
|
|
reason: 'Custom score',
|
|
metadata: {
|
|
pluginId: 'example-plugin',
|
|
},
|
|
}));
|
|
|
|
expect(result).toMatchObject({
|
|
pass: true,
|
|
score: 0.9,
|
|
reason: 'Custom score',
|
|
metadata: {
|
|
pluginId: 'example-plugin',
|
|
assertionSet: {
|
|
type: 'assert-set',
|
|
metric: 'tool-calls',
|
|
assertionCount: 1,
|
|
},
|
|
},
|
|
});
|
|
});
|
|
|
|
it('flattens nested componentResults', async () => {
|
|
assertionsResult = new AssertionsResult();
|
|
|
|
const nestedResult: GradingResult = {
|
|
pass: true,
|
|
score: 0.8,
|
|
reason: 'Nested assertion passed',
|
|
componentResults: [
|
|
{
|
|
pass: true,
|
|
score: 0.9,
|
|
reason: 'Sub-assertion 1 passed',
|
|
assertion: { type: 'equals', value: 'test' },
|
|
},
|
|
{
|
|
pass: true,
|
|
score: 0.7,
|
|
reason: 'Sub-assertion 2 passed',
|
|
assertion: { type: 'contains', value: 'example' },
|
|
},
|
|
],
|
|
assertion: { type: 'python', value: 'path/to/file.py' },
|
|
};
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: nestedResult,
|
|
});
|
|
|
|
const result = await assertionsResult.testResult();
|
|
|
|
expect(result.componentResults).toBeDefined();
|
|
expect(result.componentResults).toHaveLength(3);
|
|
expect(result.componentResults?.[0]).toEqual(nestedResult);
|
|
expect(result.componentResults?.[1]).toEqual({
|
|
...nestedResult.componentResults?.[0],
|
|
assertion: nestedResult.componentResults?.[0].assertion || nestedResult.assertion,
|
|
});
|
|
expect(result.componentResults?.[2]).toEqual({
|
|
...nestedResult.componentResults?.[1],
|
|
assertion: nestedResult.componentResults?.[1].assertion || nestedResult.assertion,
|
|
});
|
|
});
|
|
|
|
describe('noAssertsResult', () => {
|
|
it('returns correct value', () => {
|
|
expect(AssertionsResult.noAssertsResult()).toEqual({
|
|
pass: true,
|
|
score: 1,
|
|
reason: 'No assertions',
|
|
tokensUsed: { total: 0, prompt: 0, completion: 0, cached: 0, numRequests: 0 },
|
|
});
|
|
});
|
|
});
|
|
|
|
it('handles redteam guardrails', async () => {
|
|
const redteamGuardrailResult = {
|
|
pass: false,
|
|
score: 0,
|
|
reason: 'Failed guardrail check',
|
|
tokensUsed: { total: 1, prompt: 2, completion: 3, cached: 0, numRequests: 0 },
|
|
assertion: {
|
|
type: 'guardrails' as const,
|
|
config: {
|
|
purpose: 'redteam',
|
|
},
|
|
},
|
|
};
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: redteamGuardrailResult,
|
|
});
|
|
|
|
const result = await assertionsResult.testResult();
|
|
expect(result.pass).toBe(true);
|
|
expect(result.reason).toBe(GUARDRAIL_BLOCKED_REASON);
|
|
});
|
|
|
|
it('handles multiple named scores from different sources', async () => {
|
|
const resultWithNamedScores = {
|
|
pass: true,
|
|
score: 1,
|
|
reason: 'Test passed',
|
|
tokensUsed: { total: 1, prompt: 2, completion: 3, cached: 0, numRequests: 0 },
|
|
namedScores: {
|
|
'metric-1': 0.8,
|
|
'metric-2': 0.9,
|
|
},
|
|
};
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
metric: 'metric-3',
|
|
result: resultWithNamedScores,
|
|
});
|
|
|
|
const result = await assertionsResult.testResult();
|
|
expect(result.namedScores).toEqual({
|
|
'metric-1': 0.8,
|
|
'metric-2': 0.9,
|
|
'metric-3': 1,
|
|
});
|
|
expect(result.namedScoreWeights).toEqual({
|
|
'metric-1': 1,
|
|
'metric-2': 1,
|
|
'metric-3': 1,
|
|
});
|
|
});
|
|
|
|
it('omits empty namedScoreWeights from the final result', async () => {
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: succeedingResult,
|
|
});
|
|
|
|
const result = await assertionsResult.testResult();
|
|
|
|
expect(result).not.toHaveProperty('namedScoreWeights');
|
|
});
|
|
|
|
it('handles scoring function errors', async () => {
|
|
const mockScoringFunction = vi.fn().mockImplementation(() => {
|
|
throw new Error('Scoring function failed');
|
|
});
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: succeedingResult,
|
|
});
|
|
|
|
const result = await assertionsResult.testResult(mockScoringFunction);
|
|
expect(result.pass).toBe(false);
|
|
expect(result.score).toBe(0);
|
|
expect(result.reason).toBe('Scoring function error: Scoring function failed');
|
|
});
|
|
|
|
it('handles invalid scoring function return value', async () => {
|
|
const mockScoringFunction = vi.fn().mockReturnValue('invalid');
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: succeedingResult,
|
|
});
|
|
|
|
const result = await assertionsResult.testResult(mockScoringFunction);
|
|
expect(result.pass).toBe(false);
|
|
expect(result.score).toBe(0);
|
|
expect(result.reason).toBe(
|
|
'Scoring function error: assertion scoring function must return a GradingResult',
|
|
);
|
|
});
|
|
|
|
it('handles named scores with undefined metric', async () => {
|
|
const resultWithNamedScores = {
|
|
pass: true,
|
|
score: 1,
|
|
reason: 'Test passed',
|
|
tokensUsed: { total: 1, prompt: 2, completion: 3, cached: 0, numRequests: 0 },
|
|
namedScores: {
|
|
'metric-1': 0.8,
|
|
} as Record<string, number>,
|
|
};
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: resultWithNamedScores,
|
|
});
|
|
|
|
const result = await assertionsResult.testResult();
|
|
expect(result.namedScores).toEqual({
|
|
'metric-1': 0.8,
|
|
});
|
|
});
|
|
|
|
it('handles scoring function with async GradingResult', async () => {
|
|
const mockScoringFunction = vi.fn().mockResolvedValue({
|
|
pass: true,
|
|
score: 0.9,
|
|
reason: 'Async scoring result',
|
|
});
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: succeedingResult,
|
|
});
|
|
|
|
const result = await assertionsResult.testResult(mockScoringFunction);
|
|
expect(result.pass).toBe(true);
|
|
expect(result.score).toBe(0.9);
|
|
expect(result.reason).toBe('Async scoring result');
|
|
});
|
|
|
|
it('handles multiple named scores with undefined metrics', async () => {
|
|
const resultWithNamedScores = {
|
|
pass: true,
|
|
score: 1,
|
|
reason: 'Test passed',
|
|
tokensUsed: { total: 1, prompt: 2, completion: 3, cached: 0, numRequests: 0 },
|
|
namedScores: {
|
|
'metric-1': 0.8,
|
|
} as Record<string, number>,
|
|
};
|
|
|
|
assertionsResult.addResult({
|
|
index: 0,
|
|
result: resultWithNamedScores,
|
|
});
|
|
|
|
const result = await assertionsResult.testResult();
|
|
expect(result.namedScores).toEqual({
|
|
'metric-1': 0.8,
|
|
});
|
|
});
|
|
});
|