mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 15:44:06 -08:00
0847623f85
Depends on #7253 | Story: [PAY-863](https://linear.app/n8n/issue/PAY-863/switch-binary-filesystem-mode-to-nested-path-structure) This PR introduces `filesystem-v2` to store binary data in the filesystem in the same format as `s3`.
26 lines
714 B
TypeScript
26 lines
714 B
TypeScript
import { Container } from 'typedi';
|
|
import { mock } from 'jest-mock-extended';
|
|
import { Duplex } from 'stream';
|
|
|
|
import type { DeepPartial } from 'ts-essentials';
|
|
|
|
export const mockInstance = <T>(
|
|
constructor: new (...args: unknown[]) => T,
|
|
data: DeepPartial<T> | undefined = undefined,
|
|
) => {
|
|
const instance = mock<T>(data);
|
|
Container.set(constructor, instance);
|
|
return instance;
|
|
};
|
|
|
|
export function toStream(buffer: Buffer) {
|
|
const duplexStream = new Duplex();
|
|
duplexStream.push(buffer);
|
|
duplexStream.push(null);
|
|
|
|
return duplexStream;
|
|
}
|
|
|
|
export const toFileId = (workflowId: string, executionId: string, fileUuid: string) =>
|
|
`workflows/${workflowId}/executions/${executionId}/binary_data/${fileUuid}`;
|