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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
|
- import * as fs from 'fs';
- import { createRequire } from 'node:module';
- import * as path from 'path';
- import {
- renderPrompt,
- resolveVariables,
- runExtensionHook,
- extractTextFromPDF,
- } from '../src/evaluatorHelpers';
- import type { Prompt } from '../src/types';
- import { transform } from '../src/util/transform';
- jest.mock('proxy-agent', () => ({
- ProxyAgent: jest.fn().mockImplementation(() => ({})),
- }));
- jest.mock('glob', () => ({
- globSync: jest.fn(),
- }));
- jest.mock('node:module', () => {
- const mockRequire: NodeJS.Require = {
- resolve: jest.fn() as unknown as NodeJS.RequireResolve,
- } as unknown as NodeJS.Require;
- return {
- createRequire: jest.fn().mockReturnValue(mockRequire),
- };
- });
- jest.mock('fs', () => ({
- readFileSync: jest.fn(),
- writeFileSync: jest.fn(),
- statSync: jest.fn(),
- readdirSync: jest.fn(),
- existsSync: jest.fn(),
- mkdirSync: jest.fn(),
- promises: {
- readFile: jest.fn(),
- },
- }));
- jest.mock('pdf-parse', () => ({
- __esModule: true,
- default: jest
- .fn()
- .mockImplementation((buffer) => Promise.resolve({ text: 'Extracted PDF text' })),
- }));
- jest.mock('../src/esm');
- jest.mock('../src/database', () => ({
- getDb: jest.fn(),
- }));
- jest.mock('../src/util/transform', () => ({
- transform: jest.fn(),
- }));
- function toPrompt(text: string): Prompt {
- return { raw: text, label: text };
- }
- describe('extractTextFromPDF', () => {
- beforeEach(() => {
- jest.clearAllMocks();
- });
- it('should extract text from PDF successfully', async () => {
- const mockPDFText = 'Extracted PDF text';
- jest.spyOn(fs, 'readFileSync').mockReturnValueOnce(Buffer.from('mock pdf content'));
- const result = await extractTextFromPDF('test.pdf');
- expect(result).toBe(mockPDFText);
- });
- it('should throw error when pdf-parse is not installed', async () => {
- jest.spyOn(fs, 'readFileSync').mockReturnValueOnce(Buffer.from('mock pdf content'));
- const mockPDFParse = jest.requireMock('pdf-parse');
- mockPDFParse.default.mockImplementationOnce(() => {
- throw new Error("Cannot find module 'pdf-parse'");
- });
- await expect(extractTextFromPDF('test.pdf')).rejects.toThrow(
- 'pdf-parse is not installed. Please install it with: npm install pdf-parse',
- );
- });
- it('should handle PDF extraction errors', async () => {
- jest.spyOn(fs, 'readFileSync').mockReturnValueOnce(Buffer.from('mock pdf content'));
- const mockPDFParse = jest.requireMock('pdf-parse');
- mockPDFParse.default.mockRejectedValueOnce(new Error('PDF parsing failed'));
- await expect(extractTextFromPDF('test.pdf')).rejects.toThrow(
- 'Failed to extract text from PDF test.pdf: PDF parsing failed',
- );
- });
- });
- describe('renderPrompt', () => {
- beforeEach(() => {
- delete process.env.PROMPTFOO_DISABLE_TEMPLATING;
- delete process.env.PROMPTFOO_DISABLE_JSON_AUTOESCAPE;
- });
- it('should render a prompt with a single variable', async () => {
- const prompt = toPrompt('Test prompt {{ var1 }}');
- const renderedPrompt = await renderPrompt(prompt, { var1: 'value1' }, {});
- expect(renderedPrompt).toBe('Test prompt value1');
- });
- it('should render nested variables in non-JSON prompts', async () => {
- const prompt = toPrompt('Test {{ outer[inner] }}');
- const renderedPrompt = await renderPrompt(
- prompt,
- { outer: { key1: 'value1' }, inner: 'key1' },
- {},
- );
- expect(renderedPrompt).toBe('Test value1');
- });
- it('should handle complex variable substitutions in non-JSON prompts', async () => {
- const prompt = toPrompt('{{ var1[var2] }}');
- const renderedPrompt = await renderPrompt(
- prompt,
- {
- var1: { hello: 'world' },
- var2: 'hello',
- },
- {},
- );
- expect(renderedPrompt).toBe('world');
- });
- it('should render a JSON prompt', async () => {
- const prompt = toPrompt('[{"text": "Test prompt "}, {"text": "{{ var1 }}"}]');
- const renderedPrompt = await renderPrompt(prompt, { var1: 'value1' }, {});
- expect(renderedPrompt).toBe(
- JSON.stringify(JSON.parse('[{"text":"Test prompt "},{"text":"value1"}]'), null, 2),
- );
- });
- it('should render nested variables in JSON prompts', async () => {
- const prompt = toPrompt('{"text": "{{ outer[inner] }}"}');
- const renderedPrompt = await renderPrompt(
- prompt,
- { outer: { key1: 'value1' }, inner: 'key1' },
- {},
- );
- expect(renderedPrompt).toBe(JSON.stringify({ text: 'value1' }, null, 2));
- });
- it('should handle complex variable substitutions in JSON prompts', async () => {
- const prompt = toPrompt('{"message": "{{ var1[var2] }}"}');
- const renderedPrompt = await renderPrompt(
- prompt,
- {
- var1: { hello: 'world' },
- var2: 'hello',
- },
- {},
- );
- expect(renderedPrompt).toBe(JSON.stringify({ message: 'world' }, null, 2));
- });
- it('should render a JSON prompt and escape the var string', async () => {
- const prompt = toPrompt('[{"text": "Test prompt "}, {"text": "{{ var1 }}"}]');
- const renderedPrompt = await renderPrompt(prompt, { var1: 'He said "hello world!"' }, {});
- expect(renderedPrompt).toBe(
- JSON.stringify(
- JSON.parse('[{"text":"Test prompt "},{"text":"He said \\"hello world!\\""}]'),
- null,
- 2,
- ),
- );
- });
- it('should render a JSON prompt with nested JSON', async () => {
- const prompt = toPrompt('[{"text": "Test prompt "}, {"text": "{{ var1 }}"}]');
- const renderedPrompt = await renderPrompt(prompt, { var1: '{"nested": "value1"}' }, {});
- expect(renderedPrompt).toBe(
- JSON.stringify(
- JSON.parse('[{"text":"Test prompt "},{"text":"{\\"nested\\": \\"value1\\"}"}]'),
- null,
- 2,
- ),
- );
- });
- it('should load external yaml files in renderPrompt', async () => {
- const prompt = toPrompt('Test prompt with {{ var1 }}');
- const vars = { var1: 'file://test.txt' };
- const evaluateOptions = {};
- jest.spyOn(fs, 'readFileSync').mockReturnValueOnce('loaded from file');
- const renderedPrompt = await renderPrompt(prompt, vars, evaluateOptions);
- expect(fs.readFileSync).toHaveBeenCalledWith(expect.stringContaining('test.txt'), 'utf8');
- expect(renderedPrompt).toBe('Test prompt with loaded from file');
- });
- it('should load external js files in renderPrompt and execute the exported function', async () => {
- const prompt = toPrompt('Test prompt with {{ var1 }} {{ var2 }} {{ var3 }}');
- const vars = {
- var1: 'file:///path/to/testFunction.js',
- var2: 'file:///path/to/testFunction.cjs',
- var3: 'file:///path/to/testFunction.mjs',
- };
- const evaluateOptions = {};
- jest.doMock(
- path.resolve('/path/to/testFunction.js'),
- () => (varName: any, prompt: any, vars: any) => ({ output: `Dynamic value for ${varName}` }),
- { virtual: true },
- );
- jest.doMock(
- path.resolve('/path/to/testFunction.cjs'),
- () => (varName: any, prompt: any, vars: any) => ({ output: `and ${varName}` }),
- { virtual: true },
- );
- jest.doMock(
- path.resolve('/path/to/testFunction.mjs'),
- () => (varName: any, prompt: any, vars: any) => ({ output: `and ${varName}` }),
- { virtual: true },
- );
- const renderedPrompt = await renderPrompt(prompt, vars, evaluateOptions);
- expect(renderedPrompt).toBe('Test prompt with Dynamic value for var1 and var2 and var3');
- });
- it('should load external js package in renderPrompt and execute the exported function', async () => {
- const prompt = toPrompt('Test prompt with {{ var1 }}');
- const vars = {
- var1: 'package:@promptfoo/fake:testFunction',
- };
- const evaluateOptions = {};
- const require = createRequire('');
- jest.spyOn(require, 'resolve').mockReturnValueOnce('/node_modules/@promptfoo/fake/index.js');
- jest.doMock(
- path.resolve('/node_modules/@promptfoo/fake/index.js'),
- () => ({
- testFunction: (varName: any, prompt: any, vars: any) => ({
- output: `Dynamic value for ${varName}`,
- }),
- }),
- { virtual: true },
- );
- const renderedPrompt = await renderPrompt(prompt, vars, evaluateOptions);
- expect(renderedPrompt).toBe('Test prompt with Dynamic value for var1');
- });
- it('should load external json files in renderPrompt and parse the JSON content', async () => {
- const prompt = toPrompt('Test prompt with {{ var1 }}');
- const vars = { var1: 'file:///path/to/testData.json' };
- const evaluateOptions = {};
- jest.spyOn(fs, 'readFileSync').mockReturnValueOnce(JSON.stringify({ key: 'valueFromJson' }));
- const renderedPrompt = await renderPrompt(prompt, vars, evaluateOptions);
- expect(fs.readFileSync).toHaveBeenCalledWith(expect.stringContaining('testData.json'), 'utf8');
- expect(renderedPrompt).toBe('Test prompt with {"key":"valueFromJson"}');
- });
- it('should load external yaml files in renderPrompt and parse the YAML content', async () => {
- const prompt = toPrompt('Test prompt with {{ var1 }}');
- const vars = { var1: 'file:///path/to/testData.yaml' };
- const evaluateOptions = {};
- jest.spyOn(fs, 'readFileSync').mockReturnValueOnce('key: valueFromYaml');
- const renderedPrompt = await renderPrompt(prompt, vars, evaluateOptions);
- expect(fs.readFileSync).toHaveBeenCalledWith(expect.stringContaining('testData.yaml'), 'utf8');
- expect(renderedPrompt).toBe('Test prompt with {"key":"valueFromYaml"}');
- });
- describe('with PROMPTFOO_DISABLE_TEMPLATING', () => {
- beforeEach(() => {
- process.env.PROMPTFOO_DISABLE_TEMPLATING = 'true';
- });
- afterEach(() => {
- delete process.env.PROMPTFOO_DISABLE_TEMPLATING;
- });
- it('should return raw prompt when templating is disabled', async () => {
- const prompt = toPrompt('Test prompt {{ var1 }}');
- const renderedPrompt = await renderPrompt(prompt, { var1: 'value1' }, {});
- expect(renderedPrompt).toBe('Test prompt {{ var1 }}');
- });
- });
- it('should render normally when templating is enabled', async () => {
- process.env.PROMPTFOO_DISABLE_TEMPLATING = 'false';
- const prompt = toPrompt('Test prompt {{ var1 }}');
- const renderedPrompt = await renderPrompt(prompt, { var1: 'value1' }, {});
- expect(renderedPrompt).toBe('Test prompt value1');
- delete process.env.PROMPTFOO_DISABLE_TEMPLATING;
- });
- it('should respect Nunjucks raw tags when variable is provided as a string', async () => {
- const prompt = toPrompt('{% raw %}{{ var1 }}{% endraw %}');
- const renderedPrompt = await renderPrompt(prompt, { var1: 'value1' }, {});
- expect(renderedPrompt).toBe('{{ var1 }}');
- });
- it('should respect Nunjucks raw tags when no variables are provided', async () => {
- const prompt = toPrompt('{% raw %}{{ var1 }}{% endraw %}');
- const renderedPrompt = await renderPrompt(prompt, {}, {});
- expect(renderedPrompt).toBe('{{ var1 }}');
- });
- it('should respect Nunjucks escaped strings when variable is provided as a string', async () => {
- const prompt = toPrompt(`{{ '{{ var1 }}' }}`);
- const renderedPrompt = await renderPrompt(prompt, { var1: 'value1' }, {});
- expect(renderedPrompt).toBe('{{ var1 }}');
- });
- it('should respect Nunjucks escaped strings when no variables are provided', async () => {
- const prompt = toPrompt(`{{ '{{ var1 }}' }}`);
- const renderedPrompt = await renderPrompt(prompt, {}, {});
- expect(renderedPrompt).toBe('{{ var1 }}');
- });
- it('should render variables that are template strings', async () => {
- const prompt = toPrompt('{{ var1 }}');
- const renderedPrompt = await renderPrompt(prompt, { var1: '{{ var2 }}', var2: 'value2' }, {});
- expect(renderedPrompt).toBe('value2');
- });
- it('should auto-wrap prompts with partial Nunjucks tags in {% raw %}', async () => {
- const prompt = toPrompt('This is a partial tag: {%');
- const renderedPrompt = await renderPrompt(prompt, {}, {});
- expect(renderedPrompt).toBe('This is a partial tag: {%');
- });
- it('should not double-wrap prompts already wrapped in {% raw %}', async () => {
- const prompt = toPrompt('{% raw %}This is a partial tag: {%{% endraw %}');
- const renderedPrompt = await renderPrompt(prompt, {}, {});
- expect(renderedPrompt).toBe('This is a partial tag: {%');
- });
- it('should not wrap prompts with valid Nunjucks tags', async () => {
- const prompt = toPrompt('Hello {{ name }}!');
- const renderedPrompt = await renderPrompt(prompt, { name: 'Alice' }, {});
- expect(renderedPrompt).toBe('Hello Alice!');
- expect(renderedPrompt).not.toContain('{% raw %}');
- });
- it('should auto-wrap prompts with partial variable tags', async () => {
- const prompt = toPrompt('Unfinished variable: {{ name');
- const renderedPrompt = await renderPrompt(prompt, { name: 'Alice' }, {});
- expect(renderedPrompt).toBe('Unfinished variable: {{ name');
- });
- it('should auto-wrap prompts with partial comment tags', async () => {
- const prompt = toPrompt('Unfinished comment: {# comment');
- const renderedPrompt = await renderPrompt(prompt, {}, {});
- expect(renderedPrompt).toBe('Unfinished comment: {# comment');
- });
- });
- describe('renderPrompt with prompt functions', () => {
- it('should handle string returns from prompt functions', async () => {
- const promptObj = {
- ...toPrompt('test'),
- function: async () => 'Hello, world!',
- };
- const result = await renderPrompt(promptObj, {});
- expect(result).toBe('Hello, world!');
- });
- it('should handle object/array returns from prompt functions', async () => {
- const messages = [
- { role: 'system', content: 'You are a helpful assistant.' },
- { role: 'user', content: 'Hello' },
- ];
- const promptObj = {
- ...toPrompt('test'),
- function: async () => messages,
- };
- const result = await renderPrompt(promptObj, {});
- expect(JSON.parse(result)).toEqual(messages);
- });
- it('should handle PromptFunctionResult returns from prompt functions', async () => {
- const messages = [
- { role: 'system', content: 'You are a helpful assistant.' },
- { role: 'user', content: 'Hello' },
- ];
- const promptObj = {
- ...toPrompt('test'),
- function: async () => ({
- prompt: messages,
- config: { max_tokens: 10 },
- }),
- config: {},
- };
- const result = await renderPrompt(promptObj, {});
- expect(JSON.parse(result)).toEqual(messages);
- expect(promptObj.config).toEqual({ max_tokens: 10 });
- });
- it('should set config from prompt function when initial config is undefined', async () => {
- const messages = [
- { role: 'system', content: 'You are a helpful assistant.' },
- { role: 'user', content: 'Hello' },
- ];
- const promptObj = {
- ...toPrompt('test'),
- config: undefined,
- function: async () => ({
- prompt: messages,
- config: { max_tokens: 10 },
- }),
- };
- expect(promptObj.config).toBeUndefined();
- const result = await renderPrompt(promptObj, {});
- expect(promptObj.config).toEqual({ max_tokens: 10 });
- expect(JSON.parse(result)).toEqual(messages);
- });
- it('should replace existing config with function config', async () => {
- const messages = [
- { role: 'system', content: 'You are a helpful assistant.' },
- { role: 'user', content: 'Hello' },
- ];
- const promptObj = {
- ...toPrompt('test'),
- function: async () => ({
- prompt: messages,
- config: {
- temperature: 0.8,
- max_tokens: 20,
- },
- }),
- config: {
- temperature: 0.2,
- top_p: 0.9,
- },
- };
- const result = await renderPrompt(promptObj, {});
- expect(JSON.parse(result)).toEqual(messages);
- expect(promptObj.config).toEqual({
- temperature: 0.8,
- max_tokens: 20,
- top_p: 0.9,
- });
- });
- });
- describe('resolveVariables', () => {
- it('should replace placeholders with corresponding variable values', () => {
- const variables = { final: '{{ my_greeting }}, {{name}}!', my_greeting: 'Hello', name: 'John' };
- const expected = { final: 'Hello, John!', my_greeting: 'Hello', name: 'John' };
- expect(resolveVariables(variables)).toEqual(expected);
- });
- it('should handle nested variable substitutions', () => {
- const variables = { first: '{{second}}', second: '{{third}}', third: 'value' };
- const expected = { first: 'value', second: 'value', third: 'value' };
- expect(resolveVariables(variables)).toEqual(expected);
- });
- it('should not modify variables without placeholders', () => {
- const variables = { greeting: 'Hello, world!', name: 'John' };
- const expected = { greeting: 'Hello, world!', name: 'John' };
- expect(resolveVariables(variables)).toEqual(expected);
- });
- it('should not fail if a variable is not found', () => {
- const variables = { greeting: 'Hello, {{name}}!' };
- expect(resolveVariables(variables)).toEqual({ greeting: 'Hello, {{name}}!' });
- });
- it('should not fail for unresolved placeholders', () => {
- const variables = { greeting: 'Hello, {{name}}!', name: '{{unknown}}' };
- expect(resolveVariables(variables)).toEqual({
- greeting: 'Hello, {{unknown}}!',
- name: '{{unknown}}',
- });
- });
- });
- describe('runExtensionHook', () => {
- beforeEach(() => {
- jest.clearAllMocks();
- });
- it('should not call transform if extensions array is empty', async () => {
- await runExtensionHook([], 'testHook', { data: 'test' });
- expect(transform).not.toHaveBeenCalled();
- });
- it('should not call transform if extensions is undefined', async () => {
- await runExtensionHook(undefined, 'testHook', { data: 'test' });
- expect(transform).not.toHaveBeenCalled();
- });
- it('should not call transform if extensions is null', async () => {
- await runExtensionHook(null, 'testHook', { data: 'test' });
- expect(transform).not.toHaveBeenCalled();
- });
- it('should call transform for each extension', async () => {
- const extensions = ['ext1', 'ext2', 'ext3'];
- const hookName = 'testHook';
- const context = { data: 'test' };
- await runExtensionHook(extensions, hookName, context);
- expect(transform).toHaveBeenCalledTimes(3);
- expect(transform).toHaveBeenNthCalledWith(1, 'ext1', hookName, context, false);
- expect(transform).toHaveBeenNthCalledWith(2, 'ext2', hookName, context, false);
- expect(transform).toHaveBeenNthCalledWith(3, 'ext3', hookName, context, false);
- });
- it('should throw an error if an extension is not a string', async () => {
- const extensions = ['ext1', 123, 'ext3'] as unknown as string[];
- const hookName = 'testHook';
- const context = { data: 'test' };
- await expect(runExtensionHook(extensions, hookName, context)).rejects.toThrow(
- 'extension must be a string',
- );
- });
- });
|