Files
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

207 lines
6.3 KiB
TypeScript

import { afterEach, beforeEach, describe, expect, it, MockInstance, vi } from 'vitest';
import { getEnvBool, getEnvString } from '../../../../src/envars';
import { PromptfooHarmfulCompletionProvider } from '../../../../src/providers/promptfoo';
import {
LLAMA_GUARD_REPLICATE_PROVIDER,
UNALIGNED_PROVIDER_HARM_PLUGINS,
} from '../../../../src/redteam/constants';
import { REDTEAM_MODEL_CATEGORIES } from '../../../../src/redteam/plugins/harmful/constants';
import { getHarmfulTests } from '../../../../src/redteam/plugins/harmful/unaligned';
import { createMockProvider, type MockApiProvider } from '../../../factories/provider';
import type { HarmfulCategory } from '../../../../src/redteam/plugins/harmful/constants';
vi.mock('../../../../src/envars');
describe('harmful plugin', () => {
let mockProvider: MockApiProvider;
let mockCallApi: MockInstance;
beforeEach(() => {
vi.clearAllMocks();
mockProvider = createMockProvider();
if (mockCallApi) {
mockCallApi.mockRestore();
}
mockCallApi = vi.spyOn(PromptfooHarmfulCompletionProvider.prototype, 'callApi').mockReset();
vi.mocked(getEnvBool).mockReset();
vi.mocked(getEnvString).mockReset();
});
afterEach(() => {
vi.clearAllMocks();
if (mockCallApi) {
mockCallApi.mockRestore();
}
});
describe('getHarmfulTests', () => {
it('should handle unaligned provider plugins with multiple prompts', async () => {
const unalignedPlugin = Object.keys(UNALIGNED_PROVIDER_HARM_PLUGINS)[0];
mockCallApi.mockResolvedValueOnce({
output: ['Test harmful output', 'Another test output'],
});
const result = await getHarmfulTests(
{
provider: mockProvider,
purpose: 'test purpose',
injectVar: 'testVar',
n: 2,
delayMs: 0,
},
unalignedPlugin as keyof typeof UNALIGNED_PROVIDER_HARM_PLUGINS,
);
expect(mockCallApi).toHaveBeenCalledTimes(1);
expect(result).toHaveLength(2);
const prompts = result.map((r) => r.vars?.testVar);
expect(prompts).toContain('Test harmful output');
expect(prompts).toContain('Another test output');
});
it('should retry when not enough unique prompts are returned', async () => {
const unalignedPlugin = Object.keys(UNALIGNED_PROVIDER_HARM_PLUGINS)[0];
mockCallApi
.mockResolvedValueOnce({ output: ['Test output'] })
.mockResolvedValueOnce({ output: ['Test output'] })
.mockResolvedValueOnce({ output: ['Another test output'] });
const result = await getHarmfulTests(
{
provider: mockProvider,
purpose: 'test purpose',
injectVar: 'testVar',
n: 2,
delayMs: 0,
},
unalignedPlugin as keyof typeof UNALIGNED_PROVIDER_HARM_PLUGINS,
);
expect(mockCallApi).toHaveBeenCalledTimes(3);
expect(result).toHaveLength(2);
const prompts = result.map((r) => r.vars?.testVar);
expect(prompts).toContain('Test output');
expect(prompts).toContain('Another test output');
});
it('should handle empty provider response', async () => {
mockCallApi.mockResolvedValue({ output: [] });
const result = await getHarmfulTests(
{
provider: mockProvider,
purpose: 'test purpose',
injectVar: 'testVar',
n: 1,
delayMs: 0,
},
'harmful:sex-crime',
);
expect(result).toHaveLength(0);
});
it('should respect delay parameter between API calls', async () => {
const unalignedPlugin = Object.keys(UNALIGNED_PROVIDER_HARM_PLUGINS)[0];
mockCallApi
.mockResolvedValueOnce({ output: ['Test output'] })
.mockResolvedValueOnce({ output: ['Another output'] });
vi.useFakeTimers();
try {
const startTime = Date.now();
const testsPromise = getHarmfulTests(
{
provider: mockProvider,
purpose: 'test purpose',
injectVar: 'testVar',
n: 2,
delayMs: 100,
},
unalignedPlugin as keyof typeof UNALIGNED_PROVIDER_HARM_PLUGINS,
);
await vi.runAllTimersAsync();
await testsPromise;
expect(Date.now() - startTime).toBeGreaterThanOrEqual(100);
} finally {
vi.useRealTimers();
}
});
it('should handle moderation assertions with OPENAI_API_KEY', async () => {
vi.mocked(getEnvString).mockImplementation(function (key) {
if (key === 'OPENAI_API_KEY') {
return 'test-key';
}
return '';
});
mockCallApi.mockResolvedValueOnce({ output: ['Test output'] });
const result = await getHarmfulTests(
{
provider: mockProvider,
purpose: 'test purpose',
injectVar: 'testVar',
n: 1,
delayMs: 0,
},
'harmful:sex-crime',
);
expect(result).toHaveLength(1);
expect(result[0].vars?.testVar).toBe('Test output');
expect(result[0].assert).toContainEqual(expect.objectContaining({ type: 'moderation' }));
});
it('should handle moderation assertions with REPLICATE_API_KEY', async () => {
const mockCategory: HarmfulCategory = {
key: 'harmful:privacy',
prompt: 'test prompt',
examples: 'example1',
label: 'Privacy violations',
description: 'test description',
};
vi.spyOn(REDTEAM_MODEL_CATEGORIES, 'find').mockReturnValue(mockCategory);
vi.mocked(getEnvString).mockImplementation(function (key) {
if (key === 'REPLICATE_API_KEY') {
return 'test-key';
}
return '';
});
const mockOutput = 'Test output';
vi.spyOn(PromptfooHarmfulCompletionProvider.prototype, 'callApi').mockResolvedValue({
output: [mockOutput],
});
const result = await getHarmfulTests(
{
provider: mockProvider,
purpose: 'test purpose',
injectVar: 'testVar',
n: 1,
delayMs: 0,
},
'harmful:sex-crime',
);
expect(result).toHaveLength(1);
expect(result[0].vars?.testVar).toBe('Test output');
expect(result[0].assert).toContainEqual(
expect.objectContaining({
type: 'moderation',
provider: LLAMA_GUARD_REPLICATE_PROVIDER,
}),
);
});
});
});