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
|
- import type { FetchWithCacheResult } from '../../../src/cache';
- import { fetchWithCache } from '../../../src/cache';
- import { VERSION } from '../../../src/constants';
- import logger from '../../../src/logger';
- import {
- REDTEAM_PROVIDER_HARM_PLUGINS,
- UNALIGNED_PROVIDER_HARM_PLUGINS,
- PII_PLUGINS,
- } from '../../../src/redteam/constants';
- import { Plugins } from '../../../src/redteam/plugins';
- import { shouldGenerateRemote, neverGenerateRemote } from '../../../src/redteam/remoteGeneration';
- import type { ApiProvider } from '../../../src/types';
- jest.mock('../../../src/cache');
- jest.mock('../../../src/logger');
- jest.mock('../../../src/redteam/remoteGeneration', () => ({
- shouldGenerateRemote: jest.fn().mockReturnValue(false),
- neverGenerateRemote: jest.fn().mockReturnValue(false),
- getRemoteGenerationUrl: jest.fn().mockReturnValue('http://test-url'),
- }));
- jest.mock('../../../src/cliState', () => ({
- __esModule: true,
- default: { remote: false },
- }));
- describe('Plugins', () => {
- let mockProvider: ApiProvider;
- beforeEach(() => {
- mockProvider = {
- callApi: jest.fn(),
- 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 prompt extraction plugin config', async () => {
- const promptExtractionPlugin = Plugins.find((p) => p.key === 'prompt-extraction');
- expect(() => promptExtractionPlugin?.validate?.({})).toThrow(
- 'Prompt extraction plugin requires `config.systemPrompt` 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 () => {
- jest.mocked(shouldGenerateRemote).mockReturnValue(true);
- jest.mocked(neverGenerateRemote).mockReturnValue(false);
- const mockResponse: FetchWithCacheResult<unknown> = {
- data: { result: [{ test: 'case' }] },
- cached: false,
- status: 200,
- statusText: 'OK',
- };
- jest.mocked(fetchWithCache).mockResolvedValue(mockResponse);
- 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(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: 'contracts',
- version: VERSION,
- }),
- }),
- expect.any(Number),
- );
- expect(result).toEqual([{ test: 'case' }]);
- });
- it('should handle remote generation errors', async () => {
- 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,
- delayMs: 0,
- });
- expect(logger.error).toHaveBeenCalledWith(expect.stringContaining('Network error'));
- 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' },
- expect.objectContaining({ metric: 'Harmful', type: 'moderation' }),
- ]);
- });
- it('should not modify assertions for non-harmful remote plugins', async () => {
- jest.mocked(shouldGenerateRemote).mockReturnValue(true);
- jest.mocked(neverGenerateRemote).mockReturnValue(false);
- const originalTestCase = {
- vars: { testVar: 'test content' },
- assert: [{ metric: 'Original', type: 'test' }],
- };
- const mockResponse: FetchWithCacheResult<unknown> = {
- data: { result: [originalTestCase] },
- 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(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');
- });
- });
- });
|