mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
import { equalityTest, workflowToTests } from '@test/nodes/Helpers';
|
|
|
|
import { credentials } from '../credentials';
|
|
|
|
describe('Azure Storage Node', () => {
|
|
const workflows = ['nodes/Microsoft/Storage/test/workflows/container_delete.workflow.json'];
|
|
const workflowTests = workflowToTests(workflows);
|
|
|
|
describe('should delete container', () => {
|
|
for (const workflow of workflowTests) {
|
|
workflow.nock = {
|
|
baseUrl: 'https://myaccount.blob.core.windows.net',
|
|
mocks: [
|
|
{
|
|
method: 'delete',
|
|
path: '/mycontainer?restype=container',
|
|
statusCode: 202,
|
|
responseBody: '',
|
|
responseHeaders: {
|
|
'content-length': '0',
|
|
server: 'Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0',
|
|
'x-ms-request-id': 'ca3a8907-601e-0050-1929-723410000000',
|
|
'x-ms-version': '2020-10-02',
|
|
date: 'Wed, 29 Jan 2025 08:38:21 GMT',
|
|
},
|
|
},
|
|
],
|
|
};
|
|
workflow.credentials = credentials;
|
|
test(workflow.description, async () => await equalityTest(workflow));
|
|
}
|
|
});
|
|
});
|