mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
82 lines
2.7 KiB
TypeScript
82 lines
2.7 KiB
TypeScript
import Logger from '@joplin/utils/Logger';
|
|
import shim from '../../../shim';
|
|
import uuid from '../../../uuid';
|
|
import { downloadMediaFile } from './notes';
|
|
|
|
describe('routes/notes', () => {
|
|
|
|
beforeEach(() => {
|
|
jest.resetAllMocks();
|
|
});
|
|
|
|
test.each([
|
|
'/invalid/url',
|
|
'htp/asdfasf.com',
|
|
'https//joplinapp.org',
|
|
])('should not return a local file for invalid protocols', async (invalidUrl) => {
|
|
await expect(downloadMediaFile(invalidUrl)).resolves.toBe('');
|
|
});
|
|
|
|
test.each([
|
|
'https://joplinapp.org/valid/image_url.png',
|
|
'http://joplinapp.org/valid/image_url.png',
|
|
])('should try to download and return a local path to a valid URL', async (url) => {
|
|
const fetchBlobSpy = jest.fn();
|
|
jest.spyOn(shim, 'fetchBlob').mockImplementation(fetchBlobSpy);
|
|
jest.spyOn(uuid, 'create').mockReturnValue('mocked_uuid_value');
|
|
|
|
const response = await downloadMediaFile(url);
|
|
|
|
expect(response.endsWith('mocked_uuid_value.png')).toBe(true);
|
|
expect(fetchBlobSpy).toBeCalledTimes(1);
|
|
});
|
|
|
|
test('should get file from local drive if protocol allows it', async () => {
|
|
const url = 'file://valid/image.png';
|
|
|
|
const fsDriverCopySpy = jest.fn();
|
|
jest.spyOn(shim, 'fsDriver').mockImplementation(() => {
|
|
return {
|
|
copy: fsDriverCopySpy,
|
|
} as any;
|
|
});
|
|
jest.spyOn(uuid, 'create').mockReturnValue('mocked_uuid_value');
|
|
|
|
const response = await downloadMediaFile(url);
|
|
|
|
expect(response.endsWith('mocked_uuid_value.png')).toBe(true);
|
|
expect(fsDriverCopySpy).toBeCalledTimes(1);
|
|
});
|
|
|
|
test('should be able to handle URLs with data', async () => {
|
|
const url = 'data:image/gif;base64,R0lGODlhEAAQAMQAAORHHOVSKudfOulrSOp3WOyDZu6QdvCchPGolfO0o/XBs/fNwfjZ0frl3/zy7////wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAkAABAALAAAAAAQABAAAAVVICSOZGlCQAosJ6mu7fiyZeKqNKToQGDsM8hBADgUXoGAiqhSvp5QAnQKGIgUhwFUYLCVDFCrKUE1lBavAViFIDlTImbKC5Gm2hB0SlBCBMQiB0UjIQA7';
|
|
|
|
const imageFromDataUrlSpy = jest.fn();
|
|
jest.spyOn(shim, 'imageFromDataUrl').mockImplementation(imageFromDataUrlSpy);
|
|
jest.spyOn(uuid, 'create').mockReturnValue('mocked_uuid_value');
|
|
|
|
const response = await downloadMediaFile(url);
|
|
|
|
expect(response.endsWith('mocked_uuid_value.gif')).toBe(true);
|
|
expect(imageFromDataUrlSpy).toBeCalledTimes(1);
|
|
});
|
|
|
|
test('should not process URLs with data that is not image type', async () => {
|
|
const url = 'data:application/octet-stream;base64,dGhpcyBpcyBhIG1lc3NhZ2UK';
|
|
|
|
Logger.globalLogger.enabled = false;
|
|
const response = await downloadMediaFile(url);
|
|
Logger.globalLogger.enabled = true;
|
|
|
|
expect(response).toBe('');
|
|
});
|
|
|
|
test('should not process URLs from cid: protocol', async () => {
|
|
const url = 'cid:ii_loq3d1100';
|
|
|
|
const response = await downloadMediaFile(url);
|
|
|
|
expect(response).toBe('');
|
|
});
|
|
});
|