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
|
- import fs from 'fs';
- import path from 'path';
- import type { Logger } from 'winston';
- import logger from '../../src/logger';
- import { PythonProvider } from '../../src/providers/pythonCompletion';
- import { runPython } from '../../src/python/pythonUtils';
- import { parsePathOrGlob } from '../../src/util';
- import { processConfigFileReferences } from '../../src/util/fileReference';
- jest.mock('fs');
- jest.mock('path');
- jest.mock('../../src/python/pythonUtils');
- jest.mock('../../src/util/file');
- jest.mock('../../src/logger');
- jest.mock('../../src/esm');
- jest.mock('../../src/util');
- jest.mock('../../src/util/fileReference', () => ({
- loadFileReference: jest.fn(),
- processConfigFileReferences: jest.fn(),
- }));
- describe('PythonProvider with file references', () => {
- beforeEach(() => {
- jest.resetAllMocks();
- jest.mocked(logger.debug).mockImplementation(
- () =>
- ({
- debug: jest.fn(),
- info: jest.fn(),
- warn: jest.fn(),
- error: jest.fn(),
- }) as unknown as Logger,
- );
- jest.mocked(logger.error).mockImplementation(
- () =>
- ({
- debug: jest.fn(),
- info: jest.fn(),
- warn: jest.fn(),
- error: jest.fn(),
- }) as unknown as Logger,
- );
- jest.mocked(path.resolve).mockImplementation((...parts) => parts.join('/'));
- jest.mocked(path.relative).mockReturnValue('relative/path');
- jest.mocked(path.join).mockImplementation((...parts) => parts.join('/'));
- jest.mocked(parsePathOrGlob).mockImplementation((basePath, runPath) => {
- if (runPath.includes(':')) {
- const [filePath, functionName] = runPath.split(':');
- return {
- filePath,
- functionName,
- isPathPattern: false,
- extension: '.py',
- };
- }
- return {
- filePath: runPath,
- functionName: undefined,
- isPathPattern: false,
- extension: '.py',
- };
- });
- jest.mocked(fs.readFileSync).mockReturnValue('mock file content');
- jest.mocked(runPython).mockResolvedValue({ output: 'Test output' });
- });
- it('should call processConfigFileReferences when initializing config references', async () => {
- const mockConfig = {
- settings: 'file://settings.json',
- templates: ['file://template1.yaml', 'file://template2.txt'],
- };
- const mockProcessedConfig = {
- settings: { temperature: 0.7 },
- templates: [{ prompt: 'Template 1' }, 'Template 2 content'],
- };
- jest.mocked(processConfigFileReferences).mockResolvedValue(mockProcessedConfig);
- const provider = new PythonProvider('test.py', {
- id: 'test',
- config: {
- basePath: '/base/path',
- ...mockConfig,
- },
- });
- await provider.initialize();
- expect(processConfigFileReferences).toHaveBeenCalledWith(
- expect.objectContaining(mockConfig),
- '/base/path',
- );
- expect(provider.config).toEqual(mockProcessedConfig);
- });
- it('should handle errors during config reference processing', async () => {
- const mockConfig = {
- settings: 'file://settings.json',
- basePath: '/base/path',
- };
- const mockError = new Error('Failed to load file');
- jest.mocked(processConfigFileReferences).mockRejectedValue(mockError);
- const provider = new PythonProvider('test.py', {
- id: 'test',
- config: mockConfig,
- });
- provider['isInitialized'] = false;
- await expect(provider.initialize()).rejects.toThrow('Failed to load file');
- expect(processConfigFileReferences).toHaveBeenCalledWith(
- expect.objectContaining(mockConfig),
- expect.any(String),
- );
- expect(provider['isInitialized']).toBeFalsy();
- });
- it('should process config references before calling API', async () => {
- const mockConfig = {
- settings: 'file://settings.json',
- };
- const mockProcessedConfig = {
- settings: { model: 'gpt-4' },
- };
- jest.mocked(processConfigFileReferences).mockResolvedValue(mockProcessedConfig);
- const provider = new PythonProvider('test.py', {
- id: 'test',
- config: {
- basePath: '/base/path',
- ...mockConfig,
- },
- });
- provider['isInitialized'] = false;
- const mockResult = { output: 'API result', cached: false };
- const _originalMethod = provider['executePythonScript'];
- const executePythonScriptMock = jest.fn((prompt, context, apiType) =>
- Promise.resolve(mockResult),
- );
- provider['executePythonScript'] = executePythonScriptMock;
- jest.mocked(runPython).mockResolvedValue({ output: 'API result' });
- await provider.callApi('Test prompt');
- expect(processConfigFileReferences).toHaveBeenCalledWith(
- expect.objectContaining(mockConfig),
- '/base/path',
- );
- expect(provider.config).toEqual(mockProcessedConfig);
- expect(executePythonScriptMock).toHaveBeenCalledWith('Test prompt', undefined, 'call_api');
- });
- it('should only process config references once', async () => {
- const mockConfig = {
- settings: 'file://settings.json',
- };
- jest.mocked(processConfigFileReferences).mockResolvedValue({
- settings: { processed: true },
- });
- const provider = new PythonProvider('test.py', {
- id: 'test',
- config: {
- basePath: '/base/path',
- ...mockConfig,
- },
- });
- provider['isInitialized'] = false;
- await provider.initialize();
- await provider.initialize();
- await provider.initialize();
- expect(processConfigFileReferences).toHaveBeenCalledTimes(1);
- });
- it('should pass the loaded config to python script execution', async () => {
- const mockConfig = {
- pythonExecutable: '/custom/python',
- settings: 'file://settings.json',
- };
- const mockProcessedConfig = {
- pythonExecutable: '/custom/python',
- settings: { temperature: 0.8 },
- };
- jest.mocked(processConfigFileReferences).mockResolvedValue(mockProcessedConfig);
- const provider = new PythonProvider('test.py', {
- id: 'test',
- config: {
- basePath: '/base/path',
- ...mockConfig,
- },
- });
- provider['isInitialized'] = false;
- const runPythonMock = jest.mocked(runPython);
- runPythonMock.mockClear();
- runPythonMock.mockResolvedValue({ output: 'API result' });
- await provider.callApi('Test prompt');
- expect(runPythonMock).toHaveBeenCalledWith(
- expect.any(String),
- expect.any(String),
- expect.any(Array),
- {
- pythonExecutable: '/custom/python',
- },
- );
- });
- it('should correctly handle integration with different API call types', async () => {
- const mockProcessedConfig = {
- pythonExecutable: '/custom/python',
- };
- jest.mocked(processConfigFileReferences).mockResolvedValue(mockProcessedConfig);
- const provider = new PythonProvider('test.py', {
- id: 'test',
- config: {
- basePath: '/base/path',
- },
- });
- provider['isInitialized'] = false;
- const runPythonMock = jest.mocked(runPython);
- runPythonMock.mockClear();
- runPythonMock.mockResolvedValueOnce({ output: 'API result' });
- jest.spyOn(provider, 'callApi').mockResolvedValue({
- output: 'API result',
- cached: false,
- });
- jest.spyOn(provider, 'callEmbeddingApi').mockResolvedValue({
- embedding: [0.1, 0.2, 0.3],
- });
- jest.spyOn(provider, 'callClassificationApi').mockResolvedValue({
- classification: { label: 0, score: 0.9 },
- });
- const apiResult = await provider.callApi('Test prompt');
- const embeddingResult = await provider.callEmbeddingApi('Get embedding');
- const classificationResult = await provider.callClassificationApi('Classify this');
- expect(apiResult).toEqual({ output: 'API result', cached: false });
- expect(embeddingResult).toEqual({ embedding: [0.1, 0.2, 0.3] });
- expect(classificationResult).toEqual({ classification: { label: 0, score: 0.9 } });
- });
- it('should pass processed config to Python script instead of raw file references', async () => {
- const mockOriginalConfig = {
- settings: 'file://settings.json',
- formats: 'file://formats.yaml',
- };
- const mockProcessedConfig = {
- settings: { model: 'gpt-4', temperature: 0.7 },
- formats: { outputFormat: 'json', includeTokens: true },
- };
- jest.mocked(processConfigFileReferences).mockResolvedValue(mockProcessedConfig);
- const provider = new PythonProvider('test.py', {
- id: 'test',
- config: {
- basePath: '/base/path',
- ...mockOriginalConfig,
- },
- });
- const runPythonMock = jest.mocked(runPython);
- runPythonMock.mockClear();
- type RunPythonReturnType = {
- output: string;
- args: Array<any>;
- };
- runPythonMock.mockImplementation(async (scriptPath, method, args) => {
- return {
- output: 'Success',
- args,
- } as RunPythonReturnType;
- });
- await provider.callApi('Test prompt');
- expect(runPythonMock).toHaveBeenCalledWith(
- expect.any(String),
- expect.any(String),
- expect.any(Array),
- expect.any(Object),
- );
- const argsPassedToRunPython = runPythonMock.mock.calls[0][2];
- expect(argsPassedToRunPython).toBeDefined();
- expect(argsPassedToRunPython.length).toBeGreaterThanOrEqual(2);
- const optionsPassedToPython = argsPassedToRunPython[1] as {
- config: {
- settings: typeof mockProcessedConfig.settings;
- formats: typeof mockProcessedConfig.formats;
- };
- };
- expect(optionsPassedToPython).toBeDefined();
- expect(optionsPassedToPython.config).toBeDefined();
- expect(optionsPassedToPython.config.settings).toEqual(mockProcessedConfig.settings);
- expect(optionsPassedToPython.config.formats).toEqual(mockProcessedConfig.formats);
- expect(optionsPassedToPython.config.settings).not.toBe('file://settings.json');
- expect(optionsPassedToPython.config.formats).not.toBe('file://formats.yaml');
- });
- });
|