Files
promptfoo--promptfoo/test/providers/openai/responses/tracing.test.ts
T
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 13:24:08 +08:00

167 lines
5.8 KiB
TypeScript

// Load-bearing: registers shared vi.mock / beforeEach hooks before any
// module-under-test import below. See ./setup.ts for details.
import './setup';
import { trace } from '@opentelemetry/api';
import { describe, expect, it, vi } from 'vitest';
import * as cache from '../../../../src/cache';
import { OpenAiResponsesProvider } from '../../../../src/providers/openai/responses';
interface RecordedSpan {
name: string;
attributes: Record<string, any>;
status?: { code: number; message?: string };
ended: boolean;
}
function installTracerSpy(): RecordedSpan[] {
const spans: RecordedSpan[] = [];
const make = (name: string, attributes: Record<string, any> = {}) => {
const entry: RecordedSpan = { name, attributes: { ...attributes }, ended: false };
spans.push(entry);
return {
setAttribute: (key: string, value: unknown) => {
entry.attributes[key] = value;
},
setAttributes: (attrs: Record<string, unknown>) => Object.assign(entry.attributes, attrs),
setStatus: (status: { code: number; message?: string }) => {
entry.status = status;
},
end: () => {
entry.ended = true;
},
recordException: () => undefined,
addEvent: () => undefined,
spanContext: () => ({ traceId: 'x', spanId: 'y' }),
isRecording: () => true,
updateName: () => undefined,
};
};
vi.spyOn(trace, 'getTracer').mockReturnValue({
startSpan: (name: string, options?: { attributes?: Record<string, unknown> }) =>
make(name, options?.attributes),
startActiveSpan: (...args: any[]) => {
const name = args[0];
const options = typeof args[1] === 'object' ? args[1] : undefined;
const callback = args[args.length - 1];
return callback(make(name, options?.attributes));
},
} as any);
return spans;
}
const successResponse = {
id: 'resp_abc123',
object: 'response',
created_at: 1234567890,
status: 'completed',
model: 'gpt-4o',
output: [
{
type: 'message',
id: 'msg_abc123',
status: 'completed',
role: 'assistant',
content: [{ type: 'output_text', text: 'This is a test response' }],
},
],
usage: { input_tokens: 10, output_tokens: 20, total_tokens: 30 },
};
describe('OpenAiResponsesProvider tracing', () => {
it('emits a chat <model> span with request and response attributes', async () => {
const spans = installTracerSpy();
vi.mocked(cache.fetchWithCache).mockResolvedValue({
data: successResponse,
cached: false,
status: 200,
statusText: 'OK',
});
const provider = new OpenAiResponsesProvider('gpt-4o', { config: { apiKey: 'test-key' } });
const result = await provider.callApi('Test prompt');
expect(result.output).toBe('This is a test response');
const chatSpan = spans.find((span) => span.name === 'chat gpt-4o');
expect(chatSpan).toBeDefined();
expect(chatSpan?.attributes).toMatchObject({
'gen_ai.system': 'openai',
'gen_ai.operation.name': 'chat',
'gen_ai.request.model': 'gpt-4o',
'promptfoo.provider.id': 'openai:gpt-4o',
});
expect(chatSpan?.attributes['gen_ai.usage.total_tokens']).toBe(30);
expect(chatSpan?.ended).toBe(true);
// SpanStatusCode.OK === 1
expect(chatSpan?.status?.code).toBe(1);
});
it('emits reasoning token usage (completionDetails) on the chat span', async () => {
const spans = installTracerSpy();
vi.mocked(cache.fetchWithCache).mockResolvedValue({
data: {
...successResponse,
usage: {
total_tokens: 50,
prompt_tokens: 10,
completion_tokens: 40,
completion_tokens_details: { reasoning_tokens: 32 },
},
},
cached: false,
status: 200,
statusText: 'OK',
});
const provider = new OpenAiResponsesProvider('o3', { config: { apiKey: 'test-key' } });
await provider.callApi('Test prompt');
const chatSpan = spans.find((span) => span.name === 'chat o3');
expect(chatSpan).toBeDefined();
// The reasoning-token detail must survive extractProviderResponseAttributes
// and reach the span (it previously dropped tokenUsage.completionDetails).
expect(chatSpan?.attributes['gen_ai.usage.reasoning_tokens']).toBe(32);
expect(chatSpan?.attributes['gen_ai.usage.output_tokens']).toBe(40);
});
it('records request params from the resolved request body', async () => {
const spans = installTracerSpy();
vi.mocked(cache.fetchWithCache).mockResolvedValue({
data: successResponse,
cached: false,
status: 200,
statusText: 'OK',
});
const provider = new OpenAiResponsesProvider('gpt-4o', {
config: { apiKey: 'test-key', temperature: 0.3, top_p: 0.9, max_output_tokens: 256 },
});
await provider.callApi('Test prompt');
const chatSpan = spans.find((span) => span.name === 'chat gpt-4o');
expect(chatSpan?.attributes['gen_ai.request.temperature']).toBe(0.3);
expect(chatSpan?.attributes['gen_ai.request.top_p']).toBe(0.9);
expect(chatSpan?.attributes['gen_ai.request.max_tokens']).toBe(256);
});
it('marks the chat span ERROR when the API returns an error', async () => {
const spans = installTracerSpy();
vi.mocked(cache.fetchWithCache).mockResolvedValue({
data: { error: { message: 'rate limited', type: 'rate_limit_error' } },
cached: false,
status: 429,
statusText: 'Too Many Requests',
});
const provider = new OpenAiResponsesProvider('gpt-4o', { config: { apiKey: 'test-key' } });
const result = await provider.callApi('Test prompt');
expect(result.error).toBeDefined();
const chatSpan = spans.find((span) => span.name === 'chat gpt-4o');
expect(chatSpan).toBeDefined();
// SpanStatusCode.ERROR === 2
expect(chatSpan?.status?.code).toBe(2);
expect(chatSpan?.ended).toBe(true);
});
});