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
|
- import * as fs from 'fs';
- import { createRequire } from 'node:module';
- import * as path from 'path';
- import { renderPrompt, resolveVariables, runExtensionHook } 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('../src/esm');
- jest.mock('../src/database', () => ({
- getDb: jest.fn(),
- }));
- jest.mock('../src/logger');
- jest.mock('../src/util/transform', () => ({
- transform: jest.fn(),
- }));
- function toPrompt(text: string): Prompt {
- return { raw: text, label: text };
- }
- describe('renderPrompt', () => {
- 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 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 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 = {};
- // Mock fs.readFileSync to simulate loading a YAML file
- 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'),
- () => {
- return {
- 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('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 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 string[];
- const hookName = 'testHook';
- const context = { data: 'test' };
- await expect(runExtensionHook(extensions, hookName, context)).rejects.toThrow(
- 'extension must be a string',
- );
- });
- });
|