Files
alighasami 3d5eaf9445
Some checks failed
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
first commit
2026-03-17 16:22:57 +03:30

64 lines
2.0 KiB
TypeScript

import type { IDataObject } from 'n8n-workflow';
import { BINARY_ENCODING } from 'n8n-workflow';
import { getBinaryResponse } from '../utils/binary';
describe('getBinaryResponse', () => {
it('returns { binaryData } when binaryData.id is present', () => {
const binaryData = {
id: '123',
data: '<h1>Hello</h1>',
mimeType: 'text/html',
};
const headers: IDataObject = {};
const result = getBinaryResponse(binaryData, headers);
expect(result).toEqual({ binaryData });
expect(headers['content-type']).toBe('text/html');
});
it('returns { binaryData } when binaryData.id is present and mimeType is not text/html', () => {
const binaryData = {
id: '123',
data: 'some-binary-data',
mimeType: 'application/octet-stream',
};
const headers: IDataObject = {};
const result = getBinaryResponse(binaryData, headers);
expect(result).toEqual({ binaryData });
expect(headers['content-type']).toBe('application/octet-stream');
});
it('returns Buffer when binaryData.id is not present', () => {
const binaryData = {
data: '<h1>Hello</h1>',
mimeType: 'text/html',
};
const headers: IDataObject = {};
const result = getBinaryResponse(binaryData, headers);
expect(Buffer.isBuffer(result)).toBe(true);
expect(result.toString()).toBe(Buffer.from(binaryData.data, BINARY_ENCODING).toString());
expect(headers['content-type']).toBe('text/html');
});
it('returns Buffer when binaryData.id is not present and mimeType is not text/html', () => {
const binaryData = {
data: 'some-binary-data',
mimeType: 'application/octet-stream',
};
const headers: IDataObject = {};
const result = getBinaryResponse(binaryData, headers);
expect(Buffer.isBuffer(result)).toBe(true);
expect(result.toString()).toBe(Buffer.from(binaryData.data, BINARY_ENCODING).toString());
expect(headers['content-type']).toBe('application/octet-stream');
expect(headers['content-length']).toBe(Buffer.from(binaryData.data, BINARY_ENCODING).length);
});
});