2023-09-06 03:38:37 -07:00
|
|
|
import nock from 'nock';
|
|
|
|
import {
|
|
|
|
setup,
|
|
|
|
equalityTest,
|
|
|
|
workflowToTests,
|
|
|
|
getWorkflowFilenames,
|
2023-09-22 08:22:12 -07:00
|
|
|
initBinaryDataService,
|
2023-09-06 03:38:37 -07:00
|
|
|
} from '@test/nodes/Helpers';
|
|
|
|
|
|
|
|
describe('Test Binary Data Download', () => {
|
|
|
|
const workflows = getWorkflowFilenames(__dirname);
|
|
|
|
const tests = workflowToTests(workflows);
|
|
|
|
|
|
|
|
const baseUrl = 'https://dummy.domain';
|
|
|
|
|
|
|
|
beforeAll(async () => {
|
2023-09-22 08:22:12 -07:00
|
|
|
await initBinaryDataService();
|
2023-09-06 03:38:37 -07:00
|
|
|
|
|
|
|
nock.disableNetConnect();
|
|
|
|
|
|
|
|
nock(baseUrl)
|
|
|
|
.persist()
|
|
|
|
.get('/path/to/image.png')
|
|
|
|
.reply(200, Buffer.from('test'), { 'content-type': 'image/png' });
|
|
|
|
|
|
|
|
nock(baseUrl)
|
|
|
|
.persist()
|
|
|
|
.get('/redirect-to-image')
|
|
|
|
.reply(302, {}, { location: baseUrl + '/path/to/image.png' });
|
|
|
|
|
|
|
|
nock(baseUrl).persist().get('/custom-content-disposition').reply(200, Buffer.from('testing'), {
|
|
|
|
'content-disposition': 'attachment; filename="testing.jpg"',
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
afterAll(() => {
|
|
|
|
nock.restore();
|
|
|
|
});
|
|
|
|
|
|
|
|
const nodeTypes = setup(tests);
|
|
|
|
|
|
|
|
for (const testData of tests) {
|
2024-01-17 07:08:50 -08:00
|
|
|
test(testData.description, async () => await equalityTest(testData, nodeTypes));
|
2023-09-06 03:38:37 -07:00
|
|
|
}
|
|
|
|
});
|