1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
|
- import type { FetchWithCacheResult } from '../../../src/cache';
- import { fetchWithCache } from '../../../src/cache';
- import { VERSION } from '../../../src/constants';
- import {
- PII_PLUGINS,
- REDTEAM_PROVIDER_HARM_PLUGINS,
- UNALIGNED_PROVIDER_HARM_PLUGINS,
- BASE_PLUGINS,
- ADDITIONAL_PLUGINS,
- HARM_PLUGINS,
- ALL_PLUGINS,
- } from '../../../src/redteam/constants';
- import { Plugins } from '../../../src/redteam/plugins';
- import { neverGenerateRemote, shouldGenerateRemote } from '../../../src/redteam/remoteGeneration';
- import { getShortPluginId } from '../../../src/redteam/util';
- import type { ApiProvider, TestCase } from '../../../src/types';
- jest.mock('../../../src/cache');
- jest.mock('../../../src/cliState', () => ({
- __esModule: true,
- default: { remote: false },
- }));
- jest.mock('../../../src/redteam/remoteGeneration', () => ({
- getRemoteGenerationUrl: jest.fn().mockReturnValue('http://test-url'),
- neverGenerateRemote: jest.fn().mockReturnValue(false),
- shouldGenerateRemote: jest.fn().mockReturnValue(false),
- }));
- // Helper function to create mock fetch responses
- function mockFetchResponse(result: any[]): FetchWithCacheResult<unknown> {
- return {
- data: { result },
- cached: false,
- status: 200,
- statusText: 'OK',
- };
- }
- describe('Plugins', () => {
- let mockProvider: ApiProvider;
- beforeEach(() => {
- mockProvider = {
- callApi: jest.fn().mockResolvedValue({
- output: 'Sample output',
- error: null,
- }),
- id: jest.fn().mockReturnValue('test-provider'),
- };
- // Reset all mocks
- jest.clearAllMocks();
- jest.mocked(fetchWithCache).mockReset();
- });
- describe('plugin registration', () => {
- it('should register all base plugins', () => {
- const basePluginKeys = [
- 'contracts',
- 'cross-session-leak',
- 'debug-access',
- 'excessive-agency',
- 'hallucination',
- 'imitation',
- 'intent',
- 'overreliance',
- 'politics',
- 'policy',
- 'prompt-extraction',
- 'rbac',
- 'shell-injection',
- 'sql-injection',
- ];
- basePluginKeys.forEach((key) => {
- const plugin = Plugins.find((p) => p.key === key);
- expect(plugin).toBeDefined();
- });
- });
- it('should register all aligned harm plugins', () => {
- Object.keys(REDTEAM_PROVIDER_HARM_PLUGINS).forEach((key) => {
- const plugin = Plugins.find((p) => p.key === key);
- expect(plugin).toBeDefined();
- });
- });
- it('should register all unaligned harm plugins', () => {
- Object.keys(UNALIGNED_PROVIDER_HARM_PLUGINS).forEach((key) => {
- const plugin = Plugins.find((p) => p.key === key);
- expect(plugin).toBeDefined();
- });
- });
- it('should register all PII plugins', () => {
- PII_PLUGINS.forEach((key) => {
- const plugin = Plugins.find((p) => p.key === key);
- expect(plugin).toBeDefined();
- });
- });
- it('should register all remote plugins', () => {
- const remotePluginKeys = [
- 'ascii-smuggling',
- 'bfla',
- 'bola',
- 'competitors',
- 'hijacking',
- 'religion',
- 'ssrf',
- 'indirect-prompt-injection',
- ];
- remotePluginKeys.forEach((key) => {
- const plugin = Plugins.find((p) => p.key === key);
- expect(plugin).toBeDefined();
- });
- });
- });
- describe('plugin validation', () => {
- it('should validate intent plugin config', async () => {
- const intentPlugin = Plugins.find((p) => p.key === 'intent');
- expect(() => intentPlugin?.validate?.({})).toThrow(
- 'Intent plugin requires `config.intent` to be set',
- );
- });
- it('should validate policy plugin config', async () => {
- const policyPlugin = Plugins.find((p) => p.key === 'policy');
- expect(() => policyPlugin?.validate?.({})).toThrow(
- 'Policy plugin requires `config.policy` to be set',
- );
- });
- it('should validate indirect prompt injection plugin config', async () => {
- const indirectPlugin = Plugins.find((p) => p.key === 'indirect-prompt-injection');
- expect(() => indirectPlugin?.validate?.({})).toThrow(
- 'Indirect prompt injection plugin requires `config.indirectInjectionVar` to be set',
- );
- });
- });
- describe('remote generation', () => {
- it('should call remote generation with correct parameters', async () => {
- // Mock shouldGenerateRemote to return true for this test
- jest.mocked(shouldGenerateRemote).mockReturnValue(true);
- const mockResponse = {
- data: { result: [{ test: 'case' }] },
- cached: false,
- status: 200,
- statusText: 'OK',
- };
- jest.mocked(fetchWithCache).mockResolvedValue(mockResponse);
- const plugin = Plugins.find((p) => p.key === 'ssrf');
- const result = await plugin?.action({
- provider: mockProvider,
- purpose: 'test',
- injectVar: 'testVar',
- n: 1,
- config: {},
- delayMs: 0,
- });
- expect(fetchWithCache).toHaveBeenCalledWith(
- expect.any(String),
- expect.objectContaining({
- method: 'POST',
- headers: { 'Content-Type': 'application/json' },
- body: JSON.stringify({
- config: {},
- injectVar: 'testVar',
- n: 1,
- purpose: 'test',
- task: 'ssrf',
- version: VERSION,
- email: null,
- }),
- }),
- expect.any(Number),
- );
- expect(result).toEqual([{ test: 'case', metadata: { pluginId: 'ssrf' } }]);
- });
- it('should handle remote generation errors', async () => {
- // Mock shouldGenerateRemote to return true for this test
- jest.mocked(shouldGenerateRemote).mockReturnValue(true);
- jest.mocked(fetchWithCache).mockRejectedValue(new Error('Network error'));
- const plugin = Plugins.find((p) => p.key === 'contracts');
- const result = await plugin?.action({
- provider: mockProvider,
- purpose: 'test',
- injectVar: 'testVar',
- n: 1,
- config: {},
- delayMs: 0,
- });
- expect(result).toEqual([]);
- });
- it('should add harmful assertions for harmful remote plugins', async () => {
- jest.mocked(shouldGenerateRemote).mockReturnValue(true);
- jest.mocked(neverGenerateRemote).mockReturnValue(false);
- const mockResponse: FetchWithCacheResult<unknown> = {
- data: {
- result: [
- {
- vars: { testVar: 'test content' },
- metadata: { harmCategory: 'Misinformation/Disinformation' },
- },
- ],
- },
- cached: false,
- status: 200,
- statusText: 'OK',
- };
- jest.mocked(fetchWithCache).mockResolvedValue(mockResponse);
- const plugin = Plugins.find((p) => p.key === 'harmful:misinformation-disinformation');
- const result = await plugin?.action({
- provider: mockProvider,
- purpose: 'test',
- injectVar: 'testVar',
- n: 1,
- config: {},
- delayMs: 0,
- });
- expect(result).toHaveLength(1);
- expect(result![0].assert).toBeDefined();
- expect(result![0].assert).toEqual([
- { metric: 'Harmful', type: 'promptfoo:redteam:harmful:misinformation-disinformation' },
- ]);
- });
- it('should not modify assertions for non-harmful remote plugins', async () => {
- jest.mocked(neverGenerateRemote).mockReturnValue(false);
- const originalTestCase = {
- assert: [
- {
- type: 'test',
- metric: 'Original',
- },
- ],
- vars: {
- testVar: 'test content',
- },
- metadata: {
- pluginId: 'ssrf',
- },
- };
- const mockResponse = mockFetchResponse([originalTestCase]);
- jest.mocked(fetchWithCache).mockResolvedValue(mockResponse);
- const plugin = Plugins.find((p) => p.key === 'ssrf');
- const result = await plugin?.action({
- provider: mockProvider,
- purpose: 'test',
- injectVar: 'testVar',
- n: 1,
- config: {},
- delayMs: 0,
- });
- expect(result).toHaveLength(1);
- expect(result?.[0]).toEqual(originalTestCase);
- });
- });
- describe('unaligned harm plugins', () => {
- it('should require remote generation', async () => {
- jest.mocked(shouldGenerateRemote).mockReturnValue(false);
- jest.mocked(neverGenerateRemote).mockReturnValue(true);
- const unalignedPlugin = Plugins.find(
- (p) => p.key === Object.keys(UNALIGNED_PROVIDER_HARM_PLUGINS)[0],
- );
- await expect(
- unalignedPlugin?.action({
- provider: mockProvider,
- purpose: 'test',
- injectVar: 'testVar',
- n: 1,
- delayMs: 0,
- }),
- ).rejects.toThrow('requires remote generation to be enabled');
- });
- });
- describe('plugin metadata', () => {
- let remoteTestCases: TestCase[];
- beforeEach(() => {
- // Setup mock response for remote tests
- remoteTestCases = [
- {
- vars: { testVar: 'test content' },
- metadata: { pluginId: 'remote-test-plugin' },
- },
- ];
- jest.mocked(fetchWithCache).mockResolvedValue(mockFetchResponse(remoteTestCases));
- // Mock callApi to return a test response
- jest.spyOn(mockProvider, 'callApi').mockResolvedValue({
- output: 'Test response for plugin test',
- error: undefined,
- });
- });
- it('should correctly format pluginId using getShortPluginId', () => {
- // Test with different types of plugin IDs
- const testCases = [
- // Simple plugin IDs
- { input: 'contracts', expected: 'contracts' },
- { input: 'excessive-agency', expected: 'excessive-agency' },
- { input: 'hallucination', expected: 'hallucination' },
- // IDs with colon
- { input: 'harmful:privacy', expected: 'harmful:privacy' },
- { input: 'harmful:hate', expected: 'harmful:hate' },
- { input: 'pii:direct', expected: 'pii:direct' },
- // IDs with prefixes
- { input: 'promptfoo:redteam:contracts', expected: 'contracts' },
- { input: 'promptfoo:redteam:harmful:privacy', expected: 'harmful:privacy' },
- { input: 'promptfoo:redteam:pii:direct', expected: 'pii:direct' },
- ];
- // Test each case
- testCases.forEach(({ input, expected }) => {
- const result = getShortPluginId(input);
- expect(result).toBe(expected);
- });
- });
- // Simplified test just to verify plugins output
- it('should verify plugins exist', () => {
- // Check for common plugins
- const plugins = ['contracts', 'excessive-agency', 'prompt-extraction', 'pii:direct'];
- plugins.forEach((key) => {
- const plugin = Plugins.find((p) => p.key === key);
- expect(plugin).toBeDefined();
- });
- });
- });
- describe('plugin registry completeness', () => {
- it('should have all plugins from constants registered', () => {
- // Get all the plugin keys that should be registered
- const expectedPlugins = [
- ...BASE_PLUGINS,
- ...Object.keys(HARM_PLUGINS),
- ...PII_PLUGINS,
- ...ADDITIONAL_PLUGINS,
- ];
- // Check that each expected plugin is registered
- expectedPlugins.forEach((pluginKey) => {
- const plugin = Plugins.find((p) => p.key === pluginKey);
- expect(plugin).toBeDefined();
- });
- // Check the actual count matches the expected count
- // Note: We don't expect exact equality because some plugins like collections may not be in the expected list
- expect(Plugins.length).toBeGreaterThanOrEqual(expectedPlugins.length);
- });
- it('should have unique plugin keys', () => {
- // Check that there are no duplicate plugin keys
- const pluginKeys = Plugins.map((p) => p.key);
- const uniqueKeys = new Set(pluginKeys);
- expect(pluginKeys).toHaveLength(uniqueKeys.size);
- // Cross-check with ALL_PLUGINS
- ALL_PLUGINS.forEach((pluginKey) => {
- const matchingPlugins = Plugins.filter((p) => p.key === pluginKey);
- // Each key should appear at most once (some might not be registered)
- expect(matchingPlugins.length).toBeLessThanOrEqual(1);
- });
- });
- });
- });
|