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
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
chore: import upstream snapshot with attribution
2026-07-13 13:24:08 +08:00

187 lines
5.7 KiB
TypeScript

import { describe, expect, it } from 'vitest';
import { handleContainsJson, handleIsJson } from '../../src/assertions/json';
import { createMockProvider, createProviderResponse } from '../factories/provider';
import { createAtomicTestCase } from '../factories/testSuite';
import type { AssertionParams, AssertionValue } from '../../src/types/index';
const mockProvider = createMockProvider({
id: 'mock',
response: createProviderResponse({ output: 'mock' }),
});
const makeParams = (overrides: Partial<AssertionParams>): AssertionParams =>
({
baseType: 'is-json' as const,
assertionValueContext: {
vars: {},
test: createAtomicTestCase(),
prompt: 'test prompt',
logProbs: undefined,
provider: mockProvider,
providerResponse: { output: '{}' },
},
output: '{}',
providerResponse: { output: '{}' },
test: createAtomicTestCase(),
inverse: false,
...overrides,
}) as AssertionParams;
const NAME_SCHEMA_YAML = [
'type: object',
'required:',
' - name',
'properties:',
' name:',
' type: string',
].join('\n');
describe('handleIsJson', () => {
it('passes for valid JSON with no schema', () => {
const result = handleIsJson(
makeParams({
assertion: { type: 'is-json' },
outputString: '{"a": 1}',
}),
);
expect(result.pass).toBe(true);
});
it('validates against a YAML string schema', () => {
const pass = handleIsJson(
makeParams({
assertion: { type: 'is-json', value: NAME_SCHEMA_YAML },
renderedValue: NAME_SCHEMA_YAML as AssertionValue,
outputString: '{"name": "promptfoo"}',
}),
);
expect(pass.pass).toBe(true);
const fail = handleIsJson(
makeParams({
assertion: { type: 'is-json', value: NAME_SCHEMA_YAML },
renderedValue: NAME_SCHEMA_YAML as AssertionValue,
outputString: '{"other": 1}',
}),
);
expect(fail.pass).toBe(false);
expect(fail.reason).toContain('JSON does not conform to the provided schema');
});
it('uses the schema exported by a file:// reference', () => {
const result = handleIsJson(
makeParams({
assertion: { type: 'is-json', value: 'file://schema.json' },
renderedValue: 'file://schema.json' as AssertionValue,
valueFromScript: {
type: 'object',
required: ['name'],
properties: { name: { type: 'string' } },
},
outputString: '{"name": "promptfoo"}',
}),
);
expect(result.pass).toBe(true);
});
it('throws when a file:// reference does not export a schema', () => {
expect(() =>
handleIsJson(
makeParams({
assertion: { type: 'is-json', value: 'file://schema.json' },
renderedValue: 'file://schema.json' as AssertionValue,
valueFromScript: undefined,
outputString: '{"name": "promptfoo"}',
}),
),
).toThrow('is-json references a file that does not export a JSON schema');
});
it('throws for a non-string, non-object schema value', () => {
expect(() =>
handleIsJson(
makeParams({
assertion: { type: 'is-json' },
renderedValue: 42 as unknown as AssertionValue,
outputString: '{"a": 1}',
}),
),
).toThrow('is-json assertion must have a string or object value');
});
});
describe('handleContainsJson', () => {
it('passes when the output contains JSON with no schema', () => {
const result = handleContainsJson(
makeParams({
assertion: { type: 'contains-json' },
outputString: 'Here is the result: {"a": 1}',
}),
);
expect(result.pass).toBe(true);
});
it('validates contained JSON against a YAML string schema', () => {
const pass = handleContainsJson(
makeParams({
assertion: { type: 'contains-json', value: NAME_SCHEMA_YAML },
renderedValue: NAME_SCHEMA_YAML as AssertionValue,
outputString: 'result: {"name": "promptfoo"}',
}),
);
expect(pass.pass).toBe(true);
const fail = handleContainsJson(
makeParams({
assertion: { type: 'contains-json', value: NAME_SCHEMA_YAML },
renderedValue: NAME_SCHEMA_YAML as AssertionValue,
outputString: 'result: {"other": 1}',
}),
);
expect(fail.pass).toBe(false);
expect(fail.reason).toContain('JSON does not conform to the provided schema');
});
it('uses the schema exported by a file:// reference', () => {
const result = handleContainsJson(
makeParams({
assertion: { type: 'contains-json', value: 'file://schema.json' },
renderedValue: 'file://schema.json' as AssertionValue,
valueFromScript: {
type: 'object',
required: ['name'],
properties: { name: { type: 'string' } },
},
outputString: 'result: {"name": "promptfoo"}',
}),
);
expect(result.pass).toBe(true);
});
it('throws when a file:// reference does not export a schema', () => {
expect(() =>
handleContainsJson(
makeParams({
assertion: { type: 'contains-json', value: 'file://schema.json' },
renderedValue: 'file://schema.json' as AssertionValue,
valueFromScript: undefined,
outputString: 'result: {"name": "promptfoo"}',
}),
),
).toThrow('contains-json references a file that does not export a JSON schema');
});
it('throws for a non-string, non-object schema value', () => {
expect(() =>
handleContainsJson(
makeParams({
assertion: { type: 'contains-json' },
renderedValue: 42 as unknown as AssertionValue,
outputString: '{"a": 1}',
}),
),
).toThrow('contains-json assertion must have a string or object value');
});
});