Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
119 lines
2.5 KiB
TypeScript
119 lines
2.5 KiB
TypeScript
import { Calculator } from '@langchain/community/tools/calculator';
|
|
import { mock } from 'jest-mock-extended';
|
|
import type {
|
|
IExecuteFunctions,
|
|
INode,
|
|
INodeExecutionData,
|
|
ISupplyDataFunctions,
|
|
} from 'n8n-workflow';
|
|
|
|
import { ToolCalculator } from './ToolCalculator.node';
|
|
|
|
describe('ToolCalculator', () => {
|
|
describe('supplyData', () => {
|
|
beforeEach(() => {
|
|
jest.resetAllMocks();
|
|
});
|
|
|
|
it('should return Calculator tool instance', async () => {
|
|
const node = new ToolCalculator();
|
|
|
|
const supplyDataResult = await node.supplyData.call(
|
|
mock<ISupplyDataFunctions>({
|
|
getNode: jest.fn(() => mock<INode>({ name: 'test calculator' })),
|
|
}),
|
|
);
|
|
|
|
expect(supplyDataResult.response).toBeInstanceOf(Calculator);
|
|
});
|
|
|
|
it('should sanitize tool name to be LLM API compatible', async () => {
|
|
const node = new ToolCalculator();
|
|
|
|
const supplyDataResult = await node.supplyData.call(
|
|
mock<ISupplyDataFunctions>({
|
|
getNode: jest.fn(() => mock<INode>({ name: 'Calculator (1)' })),
|
|
}),
|
|
);
|
|
|
|
const tool = supplyDataResult.response as Calculator;
|
|
expect(tool.name).toBe('Calculator_1_');
|
|
});
|
|
});
|
|
|
|
describe('execute', () => {
|
|
beforeEach(() => {
|
|
jest.resetAllMocks();
|
|
});
|
|
|
|
it('should execute calculator and return result', async () => {
|
|
const node = new ToolCalculator();
|
|
const inputData: INodeExecutionData[] = [
|
|
{
|
|
json: { input: '2 + 2' },
|
|
},
|
|
];
|
|
|
|
const mockExecute = mock<IExecuteFunctions>({
|
|
getInputData: jest.fn(() => inputData),
|
|
getNode: jest.fn(() => mock<INode>({ name: 'test calculator' })),
|
|
});
|
|
|
|
const result = await node.execute.call(mockExecute);
|
|
|
|
expect(result).toEqual([
|
|
[
|
|
{
|
|
json: {
|
|
response: '4',
|
|
},
|
|
pairedItem: {
|
|
item: 0,
|
|
},
|
|
},
|
|
],
|
|
]);
|
|
});
|
|
|
|
it('should handle multiple input items', async () => {
|
|
const node = new ToolCalculator();
|
|
const inputData: INodeExecutionData[] = [
|
|
{
|
|
json: { input: '2 + 2' },
|
|
},
|
|
{
|
|
json: { input: '5 * 3' },
|
|
},
|
|
];
|
|
|
|
const mockExecute = mock<IExecuteFunctions>({
|
|
getInputData: jest.fn(() => inputData),
|
|
getNode: jest.fn(() => mock<INode>({ name: 'test calculator' })),
|
|
});
|
|
|
|
const result = await node.execute.call(mockExecute);
|
|
|
|
expect(result).toEqual([
|
|
[
|
|
{
|
|
json: {
|
|
response: '4',
|
|
},
|
|
pairedItem: {
|
|
item: 0,
|
|
},
|
|
},
|
|
{
|
|
json: {
|
|
response: '15',
|
|
},
|
|
pairedItem: {
|
|
item: 1,
|
|
},
|
|
},
|
|
],
|
|
]);
|
|
});
|
|
});
|
|
});
|