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
241 lines
6.8 KiB
TypeScript
241 lines
6.8 KiB
TypeScript
import * as path from 'path';
|
|
|
|
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
|
|
import { runAssertion } from '../../src/assertions/index';
|
|
import { OpenAiChatCompletionProvider } from '../../src/providers/openai/chat';
|
|
import * as rubyUtils from '../../src/ruby/rubyUtils.js';
|
|
import { runRuby } from '../../src/ruby/rubyUtils.js';
|
|
import { runRubyCode } from '../../src/ruby/wrapper';
|
|
|
|
import type { Assertion, AtomicTestCase, GradingResult } from '../../src/types/index';
|
|
|
|
vi.mock('../../src/ruby/wrapper', async () => {
|
|
const actual =
|
|
await vi.importActual<typeof import('../../src/ruby/wrapper')>('../../src/ruby/wrapper');
|
|
return {
|
|
...actual,
|
|
runRubyCode: vi.fn(actual.runRubyCode),
|
|
};
|
|
});
|
|
|
|
vi.mock('../../src/ruby/rubyUtils.js', async () => {
|
|
const actual = await vi.importActual<typeof import('../../src/ruby/rubyUtils.js')>(
|
|
'../../src/ruby/rubyUtils.js',
|
|
);
|
|
return {
|
|
...actual,
|
|
runRuby: vi.fn(actual.runRuby),
|
|
};
|
|
});
|
|
|
|
vi.mock('path', async () => {
|
|
const actualPath = await vi.importActual<typeof import('path')>('path');
|
|
const mocked = {
|
|
...actualPath,
|
|
extname: vi.fn(),
|
|
resolve: vi.fn(),
|
|
};
|
|
return {
|
|
...mocked,
|
|
default: mocked,
|
|
};
|
|
});
|
|
|
|
describe('Ruby assertions', () => {
|
|
const resetRubyMocks = () => {
|
|
vi.clearAllMocks();
|
|
vi.mocked(path.resolve).mockReset();
|
|
vi.mocked(path.extname).mockReset();
|
|
vi.mocked(runRubyCode).mockReset();
|
|
vi.mocked(runRuby).mockReset();
|
|
rubyUtils.state.cachedRubyPath = null;
|
|
rubyUtils.state.validationPromise = null;
|
|
rubyUtils.state.validatingPath = null;
|
|
};
|
|
|
|
beforeEach(() => {
|
|
resetRubyMocks();
|
|
});
|
|
|
|
afterEach(() => {
|
|
resetRubyMocks();
|
|
});
|
|
|
|
it.each([
|
|
[
|
|
'boolean',
|
|
'output == "Expected output"',
|
|
true,
|
|
undefined,
|
|
false,
|
|
0,
|
|
'Ruby code returned true',
|
|
],
|
|
['number', '0.25', 0.25, 0.5, true, 0.25, 'Assertion passed'],
|
|
[
|
|
'snake_case GradingResult object',
|
|
"{ pass_: true, score: 0.6, reason: 'Custom reason' }",
|
|
{
|
|
pass_: true,
|
|
score: 0.6,
|
|
reason: 'Custom reason',
|
|
},
|
|
undefined,
|
|
false,
|
|
0.6,
|
|
'Ruby code returned true',
|
|
],
|
|
[
|
|
'JSON-stringified GradingResult below threshold',
|
|
'\'{"pass": true, "score": 0.25, "reason": "Custom reason"}\'',
|
|
'{"pass": true, "score": 0.25, "reason": "Custom reason"}',
|
|
0.5,
|
|
true,
|
|
0.25,
|
|
'Assertion passed',
|
|
],
|
|
])('should honor inverse mode for inline not-ruby assertions with %s results', async (_type, assertionValue, rubyOutput, threshold, expectedPass, expectedScore, expectedReason) => {
|
|
vi.mocked(runRubyCode).mockResolvedValueOnce(rubyOutput);
|
|
|
|
const assertion: Assertion = {
|
|
type: 'not-ruby',
|
|
value: assertionValue,
|
|
threshold,
|
|
};
|
|
const provider = new OpenAiChatCompletionProvider('gpt-4o-mini');
|
|
|
|
const result: GradingResult = await runAssertion({
|
|
prompt: 'Some prompt',
|
|
provider,
|
|
assertion,
|
|
test: {} as AtomicTestCase,
|
|
providerResponse: { output: 'Expected output' },
|
|
});
|
|
|
|
expect(runRubyCode).toHaveBeenCalledWith(expect.any(String), 'main', [
|
|
'Expected output',
|
|
{
|
|
prompt: 'Some prompt',
|
|
test: {},
|
|
vars: {},
|
|
provider,
|
|
providerResponse: { output: 'Expected output' },
|
|
},
|
|
]);
|
|
expect(result).toMatchObject({
|
|
assertion,
|
|
pass: expectedPass,
|
|
reason: expect.stringContaining(expectedReason),
|
|
score: expectedScore,
|
|
});
|
|
});
|
|
|
|
it.each([
|
|
['boolean', true, undefined, false, 0, 'Ruby code returned true'],
|
|
['number', 0.25, 0.5, true, 0.25, 'Assertion passed'],
|
|
[
|
|
'snake_case GradingResult object',
|
|
{
|
|
pass_: true,
|
|
score: 0.75,
|
|
reason: 'Custom reason',
|
|
},
|
|
undefined,
|
|
false,
|
|
0.75,
|
|
'Ruby code returned true',
|
|
],
|
|
])('should honor inverse mode when a file:// not-ruby assertion returns a %s', async (_type, rubyOutput, threshold, expectedPass, expectedScore, expectedReason) => {
|
|
vi.mocked(path.resolve).mockReturnValue('/path/to/assert.rb');
|
|
vi.mocked(path.extname).mockReturnValue('.rb');
|
|
vi.mocked(runRuby).mockResolvedValueOnce(rubyOutput);
|
|
|
|
const assertion: Assertion = {
|
|
type: 'not-ruby',
|
|
value: 'file:///path/to/assert.rb',
|
|
threshold,
|
|
};
|
|
const provider = new OpenAiChatCompletionProvider('gpt-4o-mini');
|
|
|
|
const result: GradingResult = await runAssertion({
|
|
prompt: 'Some prompt',
|
|
provider,
|
|
assertion,
|
|
test: {} as AtomicTestCase,
|
|
providerResponse: { output: 'Expected output' },
|
|
});
|
|
|
|
expect(runRuby).toHaveBeenCalledWith('/path/to/assert.rb', 'get_assert', [
|
|
'Expected output',
|
|
{
|
|
prompt: 'Some prompt',
|
|
test: {},
|
|
vars: {},
|
|
provider,
|
|
providerResponse: { output: 'Expected output' },
|
|
},
|
|
]);
|
|
expect(result).toMatchObject({
|
|
assertion,
|
|
pass: expectedPass,
|
|
reason: expect.stringContaining(expectedReason),
|
|
score: expectedScore,
|
|
});
|
|
});
|
|
|
|
it('should pass provider metadata shortcut to a ruby assert', async () => {
|
|
vi.mocked(path.resolve).mockReturnValue('/path/to/assert.rb');
|
|
vi.mocked(path.extname).mockReturnValue('.rb');
|
|
vi.mocked(runRuby).mockResolvedValueOnce(true);
|
|
|
|
const metadata = { http: { status: 200, statusText: 'OK' }, customField: 5 };
|
|
const provider = new OpenAiChatCompletionProvider('gpt-4o-mini');
|
|
|
|
const result = await runAssertion({
|
|
prompt: 'Some prompt',
|
|
provider,
|
|
assertion: { type: 'ruby', value: 'file:///path/to/assert.rb' },
|
|
test: {} as AtomicTestCase,
|
|
providerResponse: { output: 'Expected output', metadata },
|
|
});
|
|
|
|
expect(runRuby).toHaveBeenCalledWith('/path/to/assert.rb', 'get_assert', [
|
|
'Expected output',
|
|
expect.objectContaining({
|
|
metadata,
|
|
providerResponse: expect.objectContaining({ metadata }),
|
|
}),
|
|
]);
|
|
expect(result).toMatchObject({
|
|
pass: true,
|
|
reason: 'Assertion passed',
|
|
});
|
|
});
|
|
|
|
it('should not leak rendered template variables in failed inline ruby assertion reasons', async () => {
|
|
vi.mocked(runRubyCode).mockResolvedValueOnce(false);
|
|
|
|
const assertion: Assertion = {
|
|
type: 'ruby',
|
|
value: "output.include?('{{secret}}')",
|
|
};
|
|
const provider = new OpenAiChatCompletionProvider('gpt-4o-mini');
|
|
|
|
const result: GradingResult = await runAssertion({
|
|
prompt: 'Some prompt',
|
|
provider,
|
|
assertion,
|
|
test: {
|
|
vars: {
|
|
secret: 'sk-test-secret-123',
|
|
},
|
|
} as AtomicTestCase,
|
|
providerResponse: { output: 'Expected output' },
|
|
});
|
|
|
|
expect(result.pass).toBe(false);
|
|
expect(result.reason).toContain("output.include?('{{secret}}')");
|
|
expect(result.reason).not.toContain('sk-test-secret-123');
|
|
});
|
|
});
|