mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
46 lines
1 KiB
TypeScript
46 lines
1 KiB
TypeScript
|
import nock from 'nock';
|
||
|
import {
|
||
|
setup,
|
||
|
equalityTest,
|
||
|
workflowToTests,
|
||
|
getWorkflowFilenames,
|
||
|
initBinaryDataManager,
|
||
|
} from '@test/nodes/Helpers';
|
||
|
|
||
|
describe('Test Binary Data Download', () => {
|
||
|
const workflows = getWorkflowFilenames(__dirname);
|
||
|
const tests = workflowToTests(workflows);
|
||
|
|
||
|
const baseUrl = 'https://dummy.domain';
|
||
|
|
||
|
beforeAll(async () => {
|
||
|
await initBinaryDataManager();
|
||
|
|
||
|
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) {
|
||
|
test(testData.description, async () => equalityTest(testData, nodeTypes));
|
||
|
}
|
||
|
});
|