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
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
|
- import { createRequire } from 'node:module';
- import * as fs from 'fs';
- import * as path from 'path';
- import {
- collectFileMetadata,
- extractTextFromPDF,
- renderPrompt,
- resolveVariables,
- runExtensionHook,
- } from '../src/evaluatorHelpers';
- import { transform } from '../src/util/transform';
- import type { ApiProvider, Prompt, TestCase, TestSuite } from '../src/types';
- 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' })),
- }),
- { virtual: true },
- );
- jest.mock('../src/esm');
- jest.mock('../src/database', () => ({
- getDb: jest.fn(),
- }));
- jest.mock('../src/util/transform', () => ({
- transform: jest.fn(),
- }));
- const mockApiProvider: ApiProvider = {
- id: function id() {
- return 'test-provider';
- },
- callApi: jest.fn().mockResolvedValue({
- output: 'Test output',
- tokenUsage: { total: 10, prompt: 5, completion: 5, cached: 0, numRequests: 1 },
- }),
- };
- 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 render environment variables in JSON prompts', async () => {
- process.env.TEST_ENV_VAR = 'env_value';
- const prompt = toPrompt('{"text": "{{ env.TEST_ENV_VAR }}"}');
- const renderedPrompt = await renderPrompt(prompt, {}, {});
- expect(renderedPrompt).toBe(JSON.stringify({ text: 'env_value' }, null, 2));
- delete process.env.TEST_ENV_VAR;
- });
- it('should render environment variables in non-JSON prompts', async () => {
- process.env.TEST_ENV_VAR = 'env_value';
- const prompt = toPrompt('Test prompt {{ env.TEST_ENV_VAR }}');
- const renderedPrompt = await renderPrompt(prompt, {}, {});
- expect(renderedPrompt).toBe('Test prompt env_value');
- delete process.env.TEST_ENV_VAR;
- });
- 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}}',
- });
- });
- it('should handle Date objects as variables', () => {
- const dateObj = new Date('2024-01-15T00:00:00.000Z');
- const variables = {
- greeting: 'Hello, {{name}}!',
- name: 'John',
- research_date: dateObj,
- date_string: '{{ research_date }}',
- };
- const expected = {
- greeting: 'Hello, John!',
- name: 'John',
- research_date: dateObj,
- date_string: dateObj.toString(), // Date objects use toString() for template replacement
- };
- expect(resolveVariables(variables)).toEqual(expected);
- });
- it('should handle object variables in template references', () => {
- const complexObj = { id: 123, name: 'Test Object' };
- const variables = {
- greeting: 'Hello, {{name}}!',
- name: 'John',
- config: complexObj,
- config_ref: '{{ config }}',
- };
- const expected = {
- greeting: 'Hello, John!',
- name: 'John',
- config: complexObj,
- config_ref: '[object Object]', // When object is converted to string
- };
- expect(resolveVariables(variables)).toEqual(expected);
- });
- });
- describe('runExtensionHook', () => {
- beforeEach(() => {
- jest.clearAllMocks();
- // Reset the transform mock to return undefined by default
- jest.mocked(transform).mockResolvedValue(undefined);
- });
- describe('beforeAll', () => {
- const hookName = 'beforeAll';
- const context = {
- suite: {
- providers: [mockApiProvider],
- prompts: [toPrompt('Test prompt {{ var1 }} {{ var2 }}')],
- tests: [
- {
- vars: { var1: 'value1', var2: 'value2' },
- },
- ],
- } as TestSuite,
- };
- describe('no extensions provided', () => {
- it('should not call transform', async () => {
- await runExtensionHook([], hookName, context);
- expect(transform).not.toHaveBeenCalled();
- await runExtensionHook(undefined, hookName, context);
- expect(transform).not.toHaveBeenCalled();
- await runExtensionHook(null, hookName, context);
- expect(transform).not.toHaveBeenCalled();
- });
- it('should return the original context', async () => {
- const out = await runExtensionHook([], hookName, context);
- expect(out).toEqual(context);
- const out2 = await runExtensionHook(undefined, hookName, context);
- expect(out2).toEqual(context);
- const out3 = await runExtensionHook(null, hookName, context);
- expect(out3).toEqual(context);
- });
- });
- describe('extensions provided', () => {
- it('should call transform for each extension', async () => {
- const extensions = ['ext1', 'ext2', 'ext3'];
- 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 return the original context when extension(s) do not return a value', async () => {
- const out = await runExtensionHook(['ext1', 'ext2', 'ext3'], hookName, context);
- expect(out).toEqual(context);
- });
- it('returned context should conform to the expected schema', async () => {
- // Re-mock the transform function to return a valid context (with a new tag)
- jest.mocked(transform).mockResolvedValue({
- suite: {
- providers: context.suite.providers,
- prompts: context.suite.prompts,
- tests: context.suite.tests,
- },
- });
- const out = await runExtensionHook(['ext1', 'ext2', 'ext3'], hookName, context);
- // Check the structure without relying on exact function name matching
- expect(out.suite.providers).toHaveLength(1);
- expect(out.suite.providers[0]).toHaveProperty('id');
- expect(out.suite.providers[0]).toHaveProperty('callApi');
- expect(typeof out.suite.providers[0].id).toBe('function');
- expect(out.suite.providers[0].id()).toBe('test-provider');
- expect(out.suite.prompts).toEqual(context.suite.prompts);
- expect(out.suite.tests).toEqual(context.suite.tests);
- });
- it('should handle invalid context but not throw validation error', async () => {
- // Re-mock the transform function to return a context with custom properties and valid mutable properties
- jest.mocked(transform).mockResolvedValue({
- suite: {
- foo: 'bar', // This will be ignored as it's not a mutable property
- tests: [{ vars: { newVar: 'newValue' } }], // This will be used as it's mutable
- },
- });
- // The hook should handle this gracefully and return the modified context
- const result = await runExtensionHook(['ext1', 'ext2', 'ext3'], hookName, context);
- // Only mutable properties are updated, custom properties like 'foo' are ignored
- expect(result.suite.providers).toBeDefined(); // Original providers preserved
- expect(result.suite.tests).toEqual([{ vars: { newVar: 'newValue' } }]); // Tests updated
- expect(result.suite).not.toHaveProperty('foo'); // Custom property ignored
- });
- });
- });
- describe('beforeEach', () => {
- const hookName = 'beforeEach';
- const context = {
- test: {
- vars: { var1: 'value1', var2: 'value2' },
- assert: [{ type: 'equals', value: 'expected' }],
- } as TestCase,
- };
- describe('no extensions provided', () => {
- it('should not call transform', async () => {
- await runExtensionHook([], hookName, context);
- expect(transform).not.toHaveBeenCalled();
- await runExtensionHook(undefined, hookName, context);
- expect(transform).not.toHaveBeenCalled();
- await runExtensionHook(null, hookName, context);
- expect(transform).not.toHaveBeenCalled();
- });
- it('should return the original context', async () => {
- const out = await runExtensionHook([], hookName, context);
- expect(out).toEqual(context);
- const out2 = await runExtensionHook(undefined, hookName, context);
- expect(out2).toEqual(context);
- const out3 = await runExtensionHook(null, hookName, context);
- expect(out3).toEqual(context);
- });
- });
- describe('extensions provided', () => {
- beforeEach(() => {
- // Reset the mock to return undefined for these tests
- jest.mocked(transform).mockResolvedValue(undefined);
- });
- it('should call transform for each extension', async () => {
- const extensions = ['ext1', 'ext2', 'ext3'];
- 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 return the original context when extension(s) do not return a value', async () => {
- const out = await runExtensionHook(['ext1', 'ext2', 'ext3'], hookName, context);
- expect(out).toEqual(context);
- });
- it('returned context should conform to the expected schema', async () => {
- // Re-mock the transform function to return a valid context (with modified test)
- jest.mocked(transform).mockResolvedValue({
- test: {
- vars: { var1: 'modified_value1', var2: 'modified_value2' },
- assert: [{ type: 'equals', value: 'modified_expected' }],
- },
- });
- const out = await runExtensionHook(['ext1', 'ext2', 'ext3'], hookName, context);
- expect(out.test.vars).toEqual({ var1: 'modified_value1', var2: 'modified_value2' });
- expect(out.test.assert).toEqual([{ type: 'equals', value: 'modified_expected' }]);
- });
- it('should handle invalid context but not throw validation error', async () => {
- // Re-mock the transform function to return an invalid context (test should be an object, not a string)
- jest.mocked(transform).mockResolvedValue({
- test: 'invalid_test_value',
- });
- // The hook should handle this gracefully and return the modified context
- const result = await runExtensionHook(['ext1', 'ext2', 'ext3'], hookName, context);
- expect(result.test).toBe('invalid_test_value');
- });
- });
- });
- });
- describe('collectFileMetadata', () => {
- beforeEach(() => {
- jest.clearAllMocks();
- jest.spyOn(path, 'resolve').mockImplementation((...paths) => {
- return paths[paths.length - 1];
- });
- });
- it('should identify image files correctly', () => {
- const vars = {
- image1: 'file://path/to/image.jpg',
- image2: 'file://path/to/image.png',
- image3: 'file://path/to/image.webp',
- text: 'This is not a file',
- otherFile: 'file://path/to/document.txt',
- };
- const metadata = collectFileMetadata(vars);
- expect(metadata).toEqual({
- image1: {
- path: 'file://path/to/image.jpg',
- type: 'image',
- format: 'jpg',
- },
- image2: {
- path: 'file://path/to/image.png',
- type: 'image',
- format: 'png',
- },
- image3: {
- path: 'file://path/to/image.webp',
- type: 'image',
- format: 'webp',
- },
- });
- });
- it('should identify video files correctly', () => {
- const vars = {
- video1: 'file://path/to/video.mp4',
- video2: 'file://path/to/video.webm',
- video3: 'file://path/to/video.mkv',
- text: 'This is not a file',
- };
- const metadata = collectFileMetadata(vars);
- expect(metadata).toEqual({
- video1: {
- path: 'file://path/to/video.mp4',
- type: 'video',
- format: 'mp4',
- },
- video2: {
- path: 'file://path/to/video.webm',
- type: 'video',
- format: 'webm',
- },
- video3: {
- path: 'file://path/to/video.mkv',
- type: 'video',
- format: 'mkv',
- },
- });
- });
- it('should identify audio files correctly', () => {
- const vars = {
- audio1: 'file://path/to/audio.mp3',
- audio2: 'file://path/to/audio.wav',
- text: 'This is not a file',
- };
- const metadata = collectFileMetadata(vars);
- expect(metadata).toEqual({
- audio1: {
- path: 'file://path/to/audio.mp3',
- type: 'audio',
- format: 'mp3',
- },
- audio2: {
- path: 'file://path/to/audio.wav',
- type: 'audio',
- format: 'wav',
- },
- });
- });
- it('should return an empty object when no media files are found', () => {
- const vars = {
- text1: 'This is not a file',
- text2: 'file://path/to/document.txt',
- text3: 'file://path/to/document.pdf',
- };
- const metadata = collectFileMetadata(vars);
- expect(metadata).toEqual({});
- });
- it('should handle non-string values correctly', () => {
- const vars = {
- text: 'file://path/to/image.jpg',
- object: { key: 'value' },
- array: ['file://path/to/video.mp4'],
- number: 42 as unknown as string,
- };
- const metadata = collectFileMetadata(vars);
- expect(metadata).toEqual({
- text: {
- path: 'file://path/to/image.jpg',
- type: 'image',
- format: 'jpg',
- },
- });
- });
- });
|