Files
wehub-resource-sync 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
CI / Shell Format Check (push) Waiting to run
CI / Check Ruby (3.4) (push) Waiting to run
CI / CI Config (push) Waiting to run
CI / Test on Node ${{ matrix.node }} and ${{ matrix.os }}${{ matrix.shard && format(' (shard {0}/3)', matrix.shard) || '' }} (push) Blocked by required conditions
CI / Build on Node ${{ matrix.node }} (push) Blocked by required conditions
CI / Style Check (push) Waiting to run
CI / Generate Assets (push) Waiting to run
CI / Check Python (3.14) (push) Waiting to run
CI / Check Python (3.9) (push) Waiting to run
CI / Build Docs (push) Waiting to run
CI / Code Scan Action (push) Waiting to run
CI / Site tests (push) Waiting to run
CI / webui tests (push) Waiting to run
CI / Run Integration Tests (push) Waiting to run
CI / Run Smoke Tests (push) Waiting to run
CI / Go Tests (push) Waiting to run
CI / Share Test (push) Waiting to run
CI / Redteam (Production API) (push) Waiting to run
CI / Redteam (Staging API) (push) Waiting to run
CI / GitHub Actions Lint (push) Waiting to run
CI / Check Ruby (3.0) (push) Waiting to run
release-please / release-please (push) Waiting to run
release-please / build (push) Blocked by required conditions
release-please / publish-npm (push) Blocked by required conditions
release-please / publish-npm-backfill (push) Waiting to run
release-please / docker (push) Blocked by required conditions
release-please / publish-code-scan-action (push) Blocked by required conditions
release-please / attest-code-scan-action (push) Blocked by required conditions
Validate Renovate Config / Validate Renovate Configuration (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:24:08 +08:00

516 lines
14 KiB
TypeScript

import { describe, expect, it } from 'vitest';
import { handleTraceErrorSpans } from '../../src/assertions/traceErrorSpans';
import { createMockProvider, createProviderResponse } from '../factories/provider';
import type { AssertionParams, AtomicTestCase } from '../../src/types/index';
import type { TraceData } from '../../src/types/tracing';
const mockProvider = createMockProvider({
id: 'mock',
response: createProviderResponse({ output: 'mock' }),
});
const mockTraceDataWithErrors: TraceData = {
traceId: 'test-trace-id',
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
spans: [
{
spanId: 'span-1',
name: 'http.request',
startTime: 1000,
endTime: 1500,
statusCode: 200,
},
{
spanId: 'span-2',
name: 'api.call',
startTime: 1600,
endTime: 2000,
statusCode: 500,
statusMessage: 'Internal Server Error',
},
{
spanId: 'span-3',
name: 'database.query',
startTime: 2100,
endTime: 2200,
attributes: {
error: true,
'error.message': 'Connection timeout',
},
},
{
spanId: 'span-4',
name: 'cache.get',
startTime: 2300,
endTime: 2400,
attributes: {
'http.status_code': 404,
},
},
{
spanId: 'span-5',
name: 'service.process',
startTime: 2500,
endTime: 2600,
attributes: {
'otel.status_code': 'ERROR',
},
},
{
spanId: 'span-6',
name: 'llm.completion',
startTime: 2700,
endTime: 3000,
statusCode: 200,
},
],
};
const defaultParams = {
baseType: 'trace-error-spans' as const,
assertionValueContext: {
vars: {},
test: {} as AtomicTestCase,
prompt: 'test prompt',
logProbs: undefined,
provider: mockProvider,
providerResponse: { output: 'test output' },
},
output: 'test output',
outputString: 'test output',
providerResponse: { output: 'test output' },
test: {} as AtomicTestCase,
inverse: false,
};
describe('handleTraceErrorSpans', () => {
it('should pass when no errors exist and max_count is 0', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { max_count: 0 },
},
renderedValue: { max_count: 0 },
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: {
traceId: 'no-errors',
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
spans: [
{ spanId: '1', name: 'op1', startTime: 0, endTime: 100, statusCode: 200 },
{ spanId: '2', name: 'op2', startTime: 100, endTime: 200, statusCode: 201 },
],
},
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: true,
score: 1,
reason: 'No errors found in 2 spans matching pattern "*"',
assertion: params.assertion,
});
});
it('should fail when errors exceed max_count', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { max_count: 2 },
},
renderedValue: { max_count: 2 },
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: mockTraceDataWithErrors,
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: false,
score: 0,
reason:
'Found 4 error spans, expected at most 2. Errors: api.call (Internal Server Error), database.query, cache.get and 1 more',
assertion: params.assertion,
});
});
it('should detect errors by status code', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { max_count: 0 },
},
renderedValue: { max_count: 0 },
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: {
traceId: 'status-errors',
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
spans: [
{ spanId: '1', name: 'api.call', startTime: 0, endTime: 100, statusCode: 500 },
{ spanId: '2', name: 'api.call', startTime: 100, endTime: 200, statusCode: 403 },
],
},
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: false,
score: 0,
reason:
'Found 2 error spans, expected at most 0. Errors: api.call (status: 500), api.call (status: 403)',
assertion: params.assertion,
});
});
it('should detect OTLP error status codes', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { max_count: 0 },
},
renderedValue: { max_count: 0 },
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: {
traceId: 'otlp-status-errors',
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
spans: [
{
spanId: '1',
name: 'tool.lookup',
startTime: 0,
endTime: 100,
statusCode: 2,
statusMessage: 'Tool failed',
},
],
},
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: false,
score: 0,
reason: 'Found 1 error spans, expected at most 0. Errors: tool.lookup (Tool failed)',
assertion: params.assertion,
});
});
it('should detect errors by attributes', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { max_count: 0 },
},
renderedValue: { max_count: 0 },
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: {
traceId: 'attr-errors',
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
spans: [
{
spanId: '1',
name: 'op1',
startTime: 0,
endTime: 100,
attributes: { error: true },
},
{
spanId: '2',
name: 'op2',
startTime: 100,
endTime: 200,
attributes: { exception: { type: 'RuntimeError', message: 'Failed' } },
},
],
},
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: false,
score: 0,
reason: 'Found 2 error spans, expected at most 0. Errors: op1, op2',
assertion: params.assertion,
});
});
it('should check error percentage when max_percentage is specified', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { max_percentage: 50 },
},
renderedValue: { max_percentage: 50 },
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: {
...mockTraceDataWithErrors,
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
},
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: false,
score: 0,
reason: 'Error rate 66.7% exceeds threshold 50% (4 errors out of 6 spans)',
assertion: params.assertion,
});
});
it('should pass when error percentage is within limit', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { max_percentage: 70 },
},
renderedValue: { max_percentage: 70 },
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: {
...mockTraceDataWithErrors,
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
},
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: true,
score: 1,
reason: 'Found 4 error(s) in 6 spans (66.7%), within threshold of 70%',
assertion: params.assertion,
});
});
it('should filter spans by pattern', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { pattern: '*api*', max_count: 0 },
},
renderedValue: { pattern: '*api*', max_count: 0 },
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: {
...mockTraceDataWithErrors,
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
},
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: false,
score: 0,
reason: 'Found 1 error spans, expected at most 0. Errors: api.call (Internal Server Error)',
assertion: params.assertion,
});
});
it('should handle simple number value for backwards compatibility', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: 1,
},
renderedValue: 1,
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: {
...mockTraceDataWithErrors,
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
},
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: false,
score: 0,
reason:
'Found 4 error spans, expected at most 1. Errors: api.call (Internal Server Error), database.query, cache.get and 1 more',
assertion: params.assertion,
});
});
it('should detect errors by status message', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { max_count: 0 },
},
renderedValue: { max_count: 0 },
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: {
traceId: 'msg-errors',
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
spans: [
{
spanId: '1',
name: 'op1',
startTime: 0,
endTime: 100,
statusMessage: 'Operation failed due to timeout',
},
{
spanId: '2',
name: 'op2',
startTime: 100,
endTime: 200,
statusMessage: 'Exception: NullPointerException',
},
],
},
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: false,
score: 0,
reason:
'Found 2 error spans, expected at most 0. Errors: op1 (Operation failed due to timeout), op2 (Exception: NullPointerException)',
assertion: params.assertion,
});
});
it('should fail when no trace data is available', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { max_count: 0 },
},
renderedValue: { max_count: 0 },
};
expect(() => handleTraceErrorSpans(params)).toThrow(
'No trace data available for trace-error-spans assertion',
);
});
it('should handle empty trace spans', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { max_count: 0 },
},
renderedValue: { max_count: 0 },
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: {
traceId: 'empty-trace',
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
spans: [],
},
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: true,
score: 1,
reason: 'No spans found matching pattern "*"',
assertion: params.assertion,
});
});
it('should default to max_count 0 when no value specified', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: {},
},
renderedValue: {},
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: {
...mockTraceDataWithErrors,
evaluationId: 'test-evaluation-id',
testCaseId: 'test-test-case-id',
metadata: { test: 'value' },
},
},
};
const result = handleTraceErrorSpans(params);
expect(result).toEqual({
pass: false,
score: 0,
reason:
'Found 4 error spans, expected at most 0. Errors: api.call (Internal Server Error), database.query, cache.get and 1 more',
assertion: params.assertion,
});
});
it('should handle both max_count and max_percentage', () => {
const params: AssertionParams = {
...defaultParams,
assertion: {
type: 'trace-error-spans',
value: { max_count: 5, max_percentage: 50 },
},
renderedValue: { max_count: 5, max_percentage: 50 },
assertionValueContext: {
...defaultParams.assertionValueContext,
trace: mockTraceDataWithErrors, // 4 errors, 66.7%
},
};
const result = handleTraceErrorSpans(params);
// Should fail on percentage even though count is OK
expect(result).toEqual({
pass: false,
score: 0,
reason: 'Error rate 66.7% exceeds threshold 50% (4 errors out of 6 spans)',
assertion: params.assertion,
});
});
});