mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
38 lines
2.0 KiB
TypeScript
38 lines
2.0 KiB
TypeScript
import nock from 'nock';
|
|
|
|
import { equalityTest, setup, workflowToTests } from '@test/nodes/Helpers';
|
|
|
|
describe('Azure Storage Node', () => {
|
|
const workflows = [
|
|
'nodes/Microsoft/Storage/test/workflows/blob_getAllLimitOptions.workflow.json',
|
|
];
|
|
const workflowTests = workflowToTests(workflows);
|
|
|
|
beforeEach(() => {
|
|
// https://github.com/nock/nock/issues/2057#issuecomment-663665683
|
|
if (!nock.isActive()) {
|
|
nock.activate();
|
|
}
|
|
});
|
|
|
|
describe('should get all blobs with limit and options', () => {
|
|
const nodeTypes = setup(workflowTests);
|
|
|
|
for (const workflow of workflowTests) {
|
|
workflow.nock = {
|
|
baseUrl: 'https://myaccount.blob.core.windows.net',
|
|
mocks: [
|
|
{
|
|
method: 'get',
|
|
path: '/mycontainer?restype=container&comp=list&maxresults=1&include=copy%2Cdeleted%2Cdeletedwithversions%2Cimmutabilitypolicy%2Cmetadata%2Clegalhold%2Cversions%2Cuncommittedblobs%2Ctags%2Csnapshots%2Cpermissions&showonly=deleted%2Cfiles%2Cdirectories',
|
|
statusCode: 200,
|
|
responseBody:
|
|
'<?xml version="1.0" encoding="UTF-8" standalone="yes"?><EnumerationResults ServiceEndpoint="https://myaccount.blob.core.windows.net" ContainerName="item1"><Prefix/><Marker/><MaxResults>1</MaxResults><Blobs><Blob><Name>myblob1</Name><Properties><Creation-Time>Wed, 22 Jan 2025 18:53:15 GMT</Creation-Time><Last-Modified>Wed, 22 Jan 2025 18:53:15 GMT</Last-Modified><Etag>0x1F8268B228AA730</Etag><Content-Length>37</Content-Length><Content-Type>application/json</Content-Type><Content-MD5>aWQGHD8kGQd5ZtEN/S1/aw==</Content-MD5><BlobType>BlockBlob</BlobType><LeaseStatus>unlocked</LeaseStatus><LeaseState>available</LeaseState><ServerEncrypted>true</ServerEncrypted><AccessTier>Hot</AccessTier><AccessTierInferred>true</AccessTierInferred><AccessTierChangeTime>Wed, 22 Jan 2025 18:53:15 GMT</AccessTierChangeTime></Properties></Blob></Blobs><NextMarker>myblob2</NextMarker></EnumerationResults>',
|
|
},
|
|
],
|
|
};
|
|
test(workflow.description, async () => await equalityTest(workflow, nodeTypes));
|
|
}
|
|
});
|
|
});
|