2023-09-25 03:30:28 -07:00
|
|
|
import { restoreBinaryDataId } from '@/executionLifecycleHooks/restoreBinaryDataId';
|
|
|
|
import { BinaryDataService } from 'n8n-core';
|
|
|
|
import { mockInstance } from '../integration/shared/utils/mocking';
|
|
|
|
import type { IRun } from 'n8n-workflow';
|
2023-10-05 06:25:17 -07:00
|
|
|
import config from '@/config';
|
2023-09-25 03:30:28 -07:00
|
|
|
|
2023-10-02 00:13:55 -07:00
|
|
|
function toIRun(item?: object) {
|
2023-09-25 03:30:28 -07:00
|
|
|
return {
|
|
|
|
data: {
|
|
|
|
resultData: {
|
|
|
|
runData: {
|
|
|
|
myNode: [
|
|
|
|
{
|
|
|
|
data: {
|
|
|
|
main: [[item]],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
} as unknown as IRun;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getDataId(run: IRun, kind: 'binary' | 'json') {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
|
|
// @ts-ignore
|
|
|
|
return run.data.resultData.runData.myNode[0].data.main[0][0][kind].data.id;
|
|
|
|
}
|
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
const binaryDataService = mockInstance(BinaryDataService);
|
2023-09-25 03:30:28 -07:00
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
describe('on filesystem mode', () => {
|
|
|
|
describe('restoreBinaryDataId()', () => {
|
|
|
|
beforeAll(() => {
|
|
|
|
config.set('binaryDataManager.mode', 'filesystem');
|
|
|
|
});
|
2023-09-25 03:30:28 -07:00
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
afterEach(() => {
|
|
|
|
jest.clearAllMocks();
|
2023-09-25 03:30:28 -07:00
|
|
|
});
|
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
it('should restore if binary data ID is missing execution ID', async () => {
|
|
|
|
const executionId = '999';
|
|
|
|
const incorrectFileId = 'a5c3f1ed-9d59-4155-bc68-9a370b3c51f6';
|
|
|
|
const run = toIRun({
|
|
|
|
binary: {
|
|
|
|
data: { id: `filesystem:${incorrectFileId}` },
|
|
|
|
},
|
|
|
|
});
|
2023-09-25 03:30:28 -07:00
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
await restoreBinaryDataId(run, executionId);
|
2023-09-25 03:30:28 -07:00
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
const correctFileId = `${executionId}${incorrectFileId}`;
|
|
|
|
const correctBinaryDataId = `filesystem:${correctFileId}`;
|
2023-09-25 03:30:28 -07:00
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
expect(binaryDataService.rename).toHaveBeenCalledWith(incorrectFileId, correctFileId);
|
|
|
|
expect(getDataId(run, 'binary')).toBe(correctBinaryDataId);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should do nothing if binary data ID is not missing execution ID', async () => {
|
|
|
|
const executionId = '999';
|
|
|
|
const fileId = `${executionId}a5c3f1ed-9d59-4155-bc68-9a370b3c51f6`;
|
|
|
|
const binaryDataId = `filesystem:${fileId}`;
|
|
|
|
const run = toIRun({
|
|
|
|
binary: {
|
|
|
|
data: {
|
|
|
|
id: binaryDataId,
|
|
|
|
},
|
2023-09-25 03:30:28 -07:00
|
|
|
},
|
2023-10-05 06:25:17 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
await restoreBinaryDataId(run, executionId);
|
|
|
|
|
|
|
|
expect(binaryDataService.rename).not.toHaveBeenCalled();
|
|
|
|
expect(getDataId(run, 'binary')).toBe(binaryDataId);
|
2023-09-25 03:30:28 -07:00
|
|
|
});
|
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
it('should do nothing if no binary data ID', async () => {
|
|
|
|
const executionId = '999';
|
|
|
|
const dataId = '123';
|
|
|
|
const run = toIRun({
|
|
|
|
json: {
|
|
|
|
data: { id: dataId },
|
|
|
|
},
|
|
|
|
});
|
2023-09-25 03:30:28 -07:00
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
await restoreBinaryDataId(run, executionId);
|
|
|
|
|
|
|
|
expect(binaryDataService.rename).not.toHaveBeenCalled();
|
|
|
|
expect(getDataId(run, 'json')).toBe(dataId);
|
|
|
|
});
|
2023-09-25 03:30:28 -07:00
|
|
|
});
|
2023-10-05 06:25:17 -07:00
|
|
|
});
|
2023-09-25 03:30:28 -07:00
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
describe('on s3 mode', () => {
|
|
|
|
describe('restoreBinaryDataId()', () => {
|
|
|
|
beforeAll(() => {
|
|
|
|
config.set('binaryDataManager.mode', 's3');
|
2023-09-25 03:30:28 -07:00
|
|
|
});
|
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
afterEach(() => {
|
|
|
|
jest.clearAllMocks();
|
|
|
|
});
|
2023-09-25 03:30:28 -07:00
|
|
|
|
2023-10-05 06:25:17 -07:00
|
|
|
it('should restore if binary data ID is missing execution ID', async () => {
|
|
|
|
const workflowId = '6HYhhKmJch2cYxGj';
|
|
|
|
const executionId = 'temp';
|
|
|
|
const binaryDataFileUuid = 'a5c3f1ed-9d59-4155-bc68-9a370b3c51f6';
|
|
|
|
|
|
|
|
const incorrectFileId = `workflows/${workflowId}/executions/temp/binary_data/${binaryDataFileUuid}`;
|
|
|
|
|
|
|
|
const run = toIRun({
|
|
|
|
binary: {
|
|
|
|
data: { id: `s3:${incorrectFileId}` },
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
await restoreBinaryDataId(run, executionId);
|
|
|
|
|
|
|
|
const correctFileId = incorrectFileId.replace('temp', executionId);
|
|
|
|
const correctBinaryDataId = `s3:${correctFileId}`;
|
|
|
|
|
|
|
|
expect(binaryDataService.rename).toHaveBeenCalledWith(incorrectFileId, correctFileId);
|
|
|
|
expect(getDataId(run, 'binary')).toBe(correctBinaryDataId);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should do nothing if binary data ID is not missing execution ID', async () => {
|
|
|
|
const workflowId = '6HYhhKmJch2cYxGj';
|
|
|
|
const executionId = '999';
|
|
|
|
const binaryDataFileUuid = 'a5c3f1ed-9d59-4155-bc68-9a370b3c51f6';
|
|
|
|
|
|
|
|
const fileId = `workflows/${workflowId}/executions/${executionId}/binary_data/${binaryDataFileUuid}`;
|
|
|
|
|
|
|
|
const binaryDataId = `s3:${fileId}`;
|
|
|
|
|
|
|
|
const run = toIRun({
|
|
|
|
binary: {
|
|
|
|
data: {
|
|
|
|
id: binaryDataId,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
await restoreBinaryDataId(run, executionId);
|
|
|
|
|
|
|
|
expect(binaryDataService.rename).not.toHaveBeenCalled();
|
|
|
|
expect(getDataId(run, 'binary')).toBe(binaryDataId);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should do nothing if no binary data ID', async () => {
|
|
|
|
const executionId = '999';
|
|
|
|
const dataId = '123';
|
|
|
|
|
|
|
|
const run = toIRun({
|
|
|
|
json: {
|
|
|
|
data: { id: dataId },
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
await restoreBinaryDataId(run, executionId);
|
|
|
|
|
|
|
|
expect(binaryDataService.rename).not.toHaveBeenCalled();
|
|
|
|
expect(getDataId(run, 'json')).toBe(dataId);
|
|
|
|
});
|
2023-09-25 03:30:28 -07:00
|
|
|
});
|
2023-10-02 00:13:55 -07:00
|
|
|
|
|
|
|
it('should do nothing on itemless case', async () => {
|
|
|
|
const executionId = '999';
|
|
|
|
|
|
|
|
const promise = restoreBinaryDataId(toIRun(), executionId);
|
|
|
|
|
|
|
|
await expect(promise).resolves.not.toThrow();
|
|
|
|
|
|
|
|
expect(binaryDataService.rename).not.toHaveBeenCalled();
|
|
|
|
});
|
2023-09-25 03:30:28 -07:00
|
|
|
});
|