feat(Azure Storage Node): New node (#12536)

This commit is contained in:
feelgood-interface
2025-02-28 11:17:56 +01:00
committed by GitHub
parent d550382a4a
commit 727f6f3c0e
43 changed files with 4696 additions and 6 deletions

View File

@@ -0,0 +1,41 @@
import nock from 'nock';
import { equalityTest, setup, workflowToTests } from '@test/nodes/Helpers';
describe('Azure Storage Node', () => {
const workflows = ['nodes/Microsoft/Storage/test/workflows/blob_delete.workflow.json'];
const workflowTests = workflowToTests(workflows);
beforeEach(() => {
// https://github.com/nock/nock/issues/2057#issuecomment-663665683
if (!nock.isActive()) {
nock.activate();
}
});
describe('should delete blob', () => {
const nodeTypes = setup(workflowTests);
for (const workflow of workflowTests) {
workflow.nock = {
baseUrl: 'https://myaccount.blob.core.windows.net',
mocks: [
{
method: 'delete',
path: '/mycontainer/myblob',
statusCode: 202,
responseBody: '',
responseHeaders: {
'x-ms-request-id': '75b87ee3-a7f7-468d-b7d1-e7e7b3173dab',
'x-ms-version': '2025-01-05',
date: 'Thu, 23 Jan 2025 17:53:23 GMT',
'x-ms-delete-type-permanent': 'true',
'x-ms-client-request-id': 'x-ms-client-request-id',
},
},
],
};
test(workflow.description, async () => await equalityTest(workflow, nodeTypes));
}
});
});