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
290 lines
8.3 KiB
TypeScript
290 lines
8.3 KiB
TypeScript
import { mockDeep } from 'jest-mock-extended';
|
|
import type { IExecuteFunctions } from 'n8n-workflow';
|
|
import { NodeApiError } from 'n8n-workflow';
|
|
|
|
import {
|
|
awsApiRequest,
|
|
awsApiRequestREST,
|
|
awsApiRequestSOAP,
|
|
awsApiRequestSOAPAllItems,
|
|
} from '../GenericFunctions';
|
|
|
|
jest.mock('xml2js', () => ({
|
|
parseString: jest.fn(),
|
|
}));
|
|
|
|
import { parseString as parseXml } from 'xml2js';
|
|
|
|
describe('ELB GenericFunctions', () => {
|
|
describe('awsApiRequest', () => {
|
|
let mockExecuteFunctions: jest.Mocked<IExecuteFunctions>;
|
|
|
|
beforeEach(() => {
|
|
mockExecuteFunctions = mockDeep<IExecuteFunctions>();
|
|
jest.clearAllMocks();
|
|
|
|
mockExecuteFunctions.getNode.mockReturnValue({
|
|
id: 'test-node',
|
|
name: 'Test ELB Node',
|
|
type: 'n8n-nodes-base.awsElb',
|
|
typeVersion: 1,
|
|
position: [0, 0],
|
|
parameters: {},
|
|
});
|
|
});
|
|
|
|
it('should make successful API request with basic parameters', async () => {
|
|
const mockResponse = { success: true };
|
|
const mockRequestWithAuth = mockExecuteFunctions.helpers
|
|
.requestWithAuthentication as jest.Mock;
|
|
mockRequestWithAuth.mockResolvedValue(mockResponse);
|
|
|
|
const result = await awsApiRequest.call(
|
|
mockExecuteFunctions,
|
|
'elasticloadbalancing',
|
|
'GET',
|
|
'/test-path',
|
|
);
|
|
|
|
expect(result).toEqual(mockResponse);
|
|
expect(mockRequestWithAuth).toHaveBeenCalledWith(
|
|
'aws',
|
|
expect.objectContaining({
|
|
qs: expect.objectContaining({
|
|
service: 'elasticloadbalancing',
|
|
path: '/test-path',
|
|
}),
|
|
method: 'GET',
|
|
}),
|
|
);
|
|
});
|
|
|
|
it('should handle API errors', async () => {
|
|
const apiError = new Error('API Error');
|
|
const mockRequestWithAuth = mockExecuteFunctions.helpers
|
|
.requestWithAuthentication as jest.Mock;
|
|
mockRequestWithAuth.mockRejectedValue(apiError);
|
|
|
|
await expect(
|
|
awsApiRequest.call(mockExecuteFunctions, 'elasticloadbalancing', 'GET', '/test-path'),
|
|
).rejects.toThrow(NodeApiError);
|
|
});
|
|
});
|
|
|
|
describe('awsApiRequestREST', () => {
|
|
let mockExecuteFunctions: jest.Mocked<IExecuteFunctions>;
|
|
|
|
beforeEach(() => {
|
|
mockExecuteFunctions = mockDeep<IExecuteFunctions>();
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
it('should parse valid JSON response', async () => {
|
|
const jsonResponse = '{"result": "success", "data": [1,2,3]}';
|
|
const expectedResult = { result: 'success', data: [1, 2, 3] };
|
|
const mockRequestWithAuth = mockExecuteFunctions.helpers
|
|
.requestWithAuthentication as jest.Mock;
|
|
mockRequestWithAuth.mockResolvedValue(jsonResponse);
|
|
|
|
const result = await awsApiRequestREST.call(
|
|
mockExecuteFunctions,
|
|
'elasticloadbalancing',
|
|
'GET',
|
|
'/test-path',
|
|
);
|
|
|
|
expect(result).toEqual(expectedResult);
|
|
});
|
|
|
|
it('should return raw response when JSON parsing fails', async () => {
|
|
const rawResponse = 'not json data';
|
|
const mockRequestWithAuth = mockExecuteFunctions.helpers
|
|
.requestWithAuthentication as jest.Mock;
|
|
mockRequestWithAuth.mockResolvedValue(rawResponse);
|
|
|
|
const result = await awsApiRequestREST.call(
|
|
mockExecuteFunctions,
|
|
'elasticloadbalancing',
|
|
'GET',
|
|
'/test-path',
|
|
);
|
|
|
|
expect(result).toBe(rawResponse);
|
|
});
|
|
});
|
|
|
|
describe('awsApiRequestSOAP', () => {
|
|
let mockExecuteFunctions: jest.Mocked<IExecuteFunctions>;
|
|
const mockParseXml = parseXml as jest.MockedFunction<typeof parseXml>;
|
|
|
|
beforeEach(() => {
|
|
mockExecuteFunctions = mockDeep<IExecuteFunctions>();
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
it('should parse XML response correctly', async () => {
|
|
const xmlResponse =
|
|
'<ListBucketsResult><Buckets><Bucket><Name>test-bucket</Name></Bucket></Buckets></ListBucketsResult>';
|
|
const expectedParsedData = {
|
|
ListBucketsResult: {
|
|
Buckets: {
|
|
Bucket: {
|
|
Name: 'test-bucket',
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
(mockExecuteFunctions.helpers.requestWithAuthentication as jest.Mock).mockResolvedValue(
|
|
xmlResponse,
|
|
);
|
|
mockParseXml.mockImplementation((_xml, _options, callback) => {
|
|
callback(null, expectedParsedData);
|
|
});
|
|
|
|
const result = await awsApiRequestSOAP.call(
|
|
mockExecuteFunctions,
|
|
'elasticloadbalancing',
|
|
'GET',
|
|
'/test-path',
|
|
);
|
|
|
|
expect(result).toEqual(expectedParsedData);
|
|
});
|
|
|
|
it('should handle XML parsing errors', async () => {
|
|
const xmlResponse = 'invalid xml';
|
|
const xmlError = new Error('Invalid XML');
|
|
|
|
(mockExecuteFunctions.helpers.requestWithAuthentication as jest.Mock).mockResolvedValue(
|
|
xmlResponse,
|
|
);
|
|
mockParseXml.mockImplementation((_xml, _options, callback) => {
|
|
callback(xmlError, null);
|
|
});
|
|
|
|
const result = await awsApiRequestSOAP.call(
|
|
mockExecuteFunctions,
|
|
'elasticloadbalancing',
|
|
'GET',
|
|
'/test-path',
|
|
);
|
|
|
|
expect(result).toBeInstanceOf(Error);
|
|
});
|
|
});
|
|
|
|
describe('awsApiRequestSOAPAllItems', () => {
|
|
let mockExecuteFunctions: jest.Mocked<IExecuteFunctions>;
|
|
const mockParseXml = parseXml as jest.MockedFunction<typeof parseXml>;
|
|
|
|
beforeEach(() => {
|
|
mockExecuteFunctions = mockDeep<IExecuteFunctions>();
|
|
jest.clearAllMocks();
|
|
});
|
|
|
|
describe('pagination patterns', () => {
|
|
it('should handle DescribeLoadBalancers pagination', async () => {
|
|
const mockCredentials = { region: 'us-east-1' };
|
|
const xmlResponse = {
|
|
DescribeLoadBalancersResponse: {
|
|
DescribeLoadBalancersResult: {
|
|
LoadBalancerDescriptions: [
|
|
{ LoadBalancerName: 'elb-1' },
|
|
{ LoadBalancerName: 'elb-2' },
|
|
],
|
|
},
|
|
},
|
|
};
|
|
|
|
mockExecuteFunctions.getCredentials.mockResolvedValue(mockCredentials);
|
|
(mockExecuteFunctions.helpers.requestWithAuthentication as jest.Mock).mockResolvedValue(
|
|
'<xml>response</xml>',
|
|
);
|
|
mockParseXml.mockImplementation((_xml, _options, callback) => {
|
|
callback(null, xmlResponse);
|
|
});
|
|
|
|
const result = await awsApiRequestSOAPAllItems.call(
|
|
mockExecuteFunctions,
|
|
'DescribeLoadBalancersResponse.DescribeLoadBalancersResult.LoadBalancerDescriptions',
|
|
'elasticloadbalancing',
|
|
'POST',
|
|
'/describe-load-balancers',
|
|
);
|
|
|
|
expect(result).toEqual([{ LoadBalancerName: 'elb-1' }, { LoadBalancerName: 'elb-2' }]);
|
|
});
|
|
|
|
it('should handle DescribeTargetGroups with nested properties', async () => {
|
|
const mockCredentials = { region: 'us-east-1' };
|
|
const firstResponse = {
|
|
DescribeTargetGroupsResponse: {
|
|
DescribeTargetGroupsResult: {
|
|
TargetGroups: [
|
|
{ TargetGroupName: 'tg-1', Protocol: 'HTTP' },
|
|
{ TargetGroupName: 'tg-2', Protocol: 'HTTPS' },
|
|
],
|
|
NextMarker: 'marker123',
|
|
},
|
|
},
|
|
};
|
|
const secondResponse = {
|
|
DescribeTargetGroupsResponse: {
|
|
DescribeTargetGroupsResult: {
|
|
TargetGroups: [{ TargetGroupName: 'tg-3', Protocol: 'TCP' }],
|
|
},
|
|
},
|
|
};
|
|
|
|
mockExecuteFunctions.getCredentials.mockResolvedValue(mockCredentials);
|
|
(mockExecuteFunctions.helpers.requestWithAuthentication as jest.Mock)
|
|
.mockResolvedValueOnce('<xml>first-response</xml>')
|
|
.mockResolvedValueOnce('<xml>second-response</xml>');
|
|
|
|
mockParseXml
|
|
.mockImplementationOnce((_xml, _options, callback) => callback(null, firstResponse))
|
|
.mockImplementationOnce((_xml, _options, callback) => callback(null, secondResponse));
|
|
|
|
const result = await awsApiRequestSOAPAllItems.call(
|
|
mockExecuteFunctions,
|
|
'DescribeTargetGroupsResponse.DescribeTargetGroupsResult.TargetGroups',
|
|
'elasticloadbalancing',
|
|
'POST',
|
|
'/describe-target-groups',
|
|
);
|
|
|
|
expect(result).toEqual([
|
|
{ TargetGroupName: 'tg-1', Protocol: 'HTTP' },
|
|
{ TargetGroupName: 'tg-2', Protocol: 'HTTPS' },
|
|
{ TargetGroupName: 'tg-3', Protocol: 'TCP' },
|
|
]);
|
|
});
|
|
});
|
|
|
|
describe('error handling', () => {
|
|
it('should handle service error responses', async () => {
|
|
const mockCredentials = { region: 'us-east-1' };
|
|
const elbError = new Error(
|
|
'LoadBalancerNotFound: The specified load balancer does not exist',
|
|
);
|
|
|
|
mockExecuteFunctions.getCredentials.mockResolvedValue(mockCredentials);
|
|
(mockExecuteFunctions.helpers.requestWithAuthentication as jest.Mock).mockRejectedValue(
|
|
elbError,
|
|
);
|
|
|
|
await expect(
|
|
awsApiRequestSOAPAllItems.call(
|
|
mockExecuteFunctions,
|
|
'DescribeLoadBalancersResponse.DescribeLoadBalancersResult.LoadBalancerDescriptions',
|
|
'elasticloadbalancing',
|
|
'POST',
|
|
'/describe-load-balancers',
|
|
),
|
|
).rejects.toThrow('LoadBalancerNotFound: The specified load balancer does not exist');
|
|
});
|
|
});
|
|
});
|
|
});
|