mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
85 lines
2.3 KiB
TypeScript
85 lines
2.3 KiB
TypeScript
import type { INode, INodeType } from 'n8n-workflow';
|
|
import { ApplicationError, NodeOperationError } from 'n8n-workflow';
|
|
import { AIService } from '@/services/ai.service';
|
|
import config from '@/config';
|
|
import { createDebugErrorPrompt } from '@/services/ai/prompts/debugError';
|
|
|
|
jest.mock('@/config', () => {
|
|
return {
|
|
getEnv: jest.fn().mockReturnValue('openai'),
|
|
};
|
|
});
|
|
|
|
jest.mock('@/services/ai/providers/openai', () => {
|
|
return {
|
|
AIProviderOpenAI: jest.fn().mockImplementation(() => {
|
|
return {
|
|
prompt: jest.fn(),
|
|
};
|
|
}),
|
|
};
|
|
});
|
|
|
|
describe('AIService', () => {
|
|
describe('constructor', () => {
|
|
test('should throw if prompting with unknown provider type', async () => {
|
|
jest.mocked(config).getEnv.mockReturnValue('unknown');
|
|
const aiService = new AIService();
|
|
|
|
await expect(async () => await aiService.prompt([])).rejects.toThrow(ApplicationError);
|
|
});
|
|
|
|
test('should throw if prompting with known provider type without api key', async () => {
|
|
jest
|
|
.mocked(config)
|
|
.getEnv.mockImplementation((value) => (value === 'ai.openAIApiKey' ? '' : 'openai'));
|
|
const aiService = new AIService();
|
|
|
|
await expect(async () => await aiService.prompt([])).rejects.toThrow(ApplicationError);
|
|
});
|
|
|
|
test('should not throw if prompting with known provider type', () => {
|
|
jest.mocked(config).getEnv.mockReturnValue('openai');
|
|
const aiService = new AIService();
|
|
|
|
expect(async () => await aiService.prompt([])).not.toThrow(ApplicationError);
|
|
});
|
|
});
|
|
|
|
describe('prompt', () => {
|
|
test('should call model.prompt', async () => {
|
|
const service = new AIService();
|
|
|
|
await service.prompt(['message']);
|
|
|
|
expect(service.model.prompt).toHaveBeenCalledWith(['message']);
|
|
});
|
|
});
|
|
|
|
describe('debugError', () => {
|
|
test('should call prompt with error and nodeType', async () => {
|
|
const service = new AIService();
|
|
const promptSpy = jest.spyOn(service, 'prompt').mockResolvedValue('prompt');
|
|
|
|
const nodeType = {
|
|
description: {
|
|
displayName: 'Node Type',
|
|
name: 'nodeType',
|
|
properties: [],
|
|
},
|
|
} as unknown as INodeType;
|
|
const error = new NodeOperationError(
|
|
{
|
|
type: 'n8n-nodes-base.error',
|
|
typeVersion: 1,
|
|
} as INode,
|
|
'Error',
|
|
);
|
|
|
|
await service.debugError(error, nodeType);
|
|
|
|
expect(promptSpy).toHaveBeenCalledWith(createDebugErrorPrompt(error, nodeType));
|
|
});
|
|
});
|
|
});
|