1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/lib/services/interop/InteropService_Exporter_Md_frontmatter.test.ts

146 lines
5.7 KiB
TypeScript

import InteropService from '../../services/interop/InteropService';
import { setupDatabaseAndSynchronizer, switchClient, exportDir } from '../../testing/test-utils';
import Folder from '../../models/Folder';
import Note from '../../models/Note';
import Tag from '../../models/Tag';
import time from '../../time';
import { fieldOrder } from './InteropService_Exporter_Md_frontmatter';
import * as fs from 'fs-extra';
async function recreateExportDir() {
const dir = exportDir();
await fs.remove(dir);
await fs.mkdirp(dir);
}
describe('interop/InteropService_Exporter_Md_frontmatter', () => {
async function exportAndLoad(path: string): Promise<string> {
const service = InteropService.instance();
await service.export({
path: exportDir(),
format: 'md_frontmatter',
});
return await fs.readFile(path, 'utf8');
}
beforeEach(async () => {
await setupDatabaseAndSynchronizer(1);
await switchClient(1);
await recreateExportDir();
});
test('should export MD file with YAML header', (async () => {
const folder1 = await Folder.save({ title: 'folder1' });
await Note.save({ title: 'ma', latitude: 58.2222, user_updated_time: 1, user_created_time: 1, body: '**ma note**', parent_id: folder1.id });
const content = await exportAndLoad(`${exportDir()}/folder1/ma.md`);
expect(content.startsWith('---')).toBe(true);
expect(content).toContain('title: ma');
expect(content).toContain('updated:'); // Will be current time of test run
expect(content).toContain(`created: ${time.unixMsToRfc3339Sec(1)}`);
expect(content).toContain('latitude: 58.22220000');
expect(content).toContain('longitude: 0.00000000');
expect(content).toContain('altitude: 0.0000');
expect(content).toContain('**ma note**');
expect(content).not.toContain('completed?');
expect(content).not.toContain('author');
expect(content).not.toContain('source');
expect(content).not.toContain('due');
}));
test('should export without additional quotes', (async () => {
const folder1 = await Folder.save({ title: 'folder1' });
await Note.save({ title: '-60', body: '**ma note**', parent_id: folder1.id });
const content = await exportAndLoad(`${exportDir()}/folder1/-60.md`);
expect(content).toContain('title: -60');
}));
test('should export tags', (async () => {
const folder1 = await Folder.save({ title: 'folder1' });
const note = await Note.save({ title: 'Title', body: '**ma note**', parent_id: folder1.id });
await Tag.addNoteTagByTitle(note.id, 'lamp');
await Tag.addNoteTagByTitle(note.id, 'moth');
await Tag.addNoteTagByTitle(note.id, 'godzilla');
const content = await exportAndLoad(`${exportDir()}/folder1/Title.md`);
expect(content).toContain('tags:\n - godzilla\n - lamp\n - moth');
}));
test('should export todo', (async () => {
const folder1 = await Folder.save({ title: 'folder1' });
await Note.save({ title: 'Todo', is_todo: 1, todo_due: 1, body: '**ma note**', parent_id: folder1.id });
const content = await exportAndLoad(`${exportDir()}/folder1/Todo.md`);
expect(content).toContain(`due: ${time.unixMsToRfc3339Sec(1)}`);
expect(content).toContain('completed?: no');
}));
test('should export author', (async () => {
const folder1 = await Folder.save({ title: 'folder1' });
await Note.save({ title: 'Author', author: 'Scott Joplin', body: '**ma note**', parent_id: folder1.id });
const content = await exportAndLoad(`${exportDir()}/folder1/Author.md`);
expect(content).toContain('author: Scott Joplin');
}));
test('should export source', (async () => {
const folder1 = await Folder.save({ title: 'folder1' });
await Note.save({ title: 'Source', source_url: 'https://joplinapp.org', body: '**ma note**', parent_id: folder1.id });
const content = await exportAndLoad(`${exportDir()}/folder1/Source.md`);
expect(content).toContain('source: https://joplinapp.org');
}));
test('should export fields in the correct order', (async () => {
const folder1 = await Folder.save({ title: 'folder1' });
const note = await Note.save({
title: 'Fields',
is_todo: 1,
todo_due: 1,
author: 'Scott Joplin',
source_url: 'https://joplinapp.org',
body: '**ma note**',
parent_id: folder1.id,
});
await Tag.addNoteTagByTitle(note.id, 'piano');
await Tag.addNoteTagByTitle(note.id, 'greatness');
const content = await exportAndLoad(`${exportDir()}/folder1/Fields.md`);
const fieldIndices = fieldOrder.map(field => content.indexOf(field));
expect(fieldIndices).toBe(fieldIndices.sort());
}));
test('should export title with a newline encoded', (async () => {
const folder1 = await Folder.save({ title: 'folder1' });
await Note.save({ title: 'Source\ntitle', body: '**ma note**', parent_id: folder1.id });
const content = await exportAndLoad(`${exportDir()}/folder1/Source_title.md`);
expect(content).toContain('title: |-\n Source\n title');
}));
test('should not export coordinates if they\'re not available', (async () => {
const folder1 = await Folder.save({ title: 'folder1' });
await Note.save({ title: 'Coordinates', body: '**ma note**', parent_id: folder1.id });
const content = await exportAndLoad(`${exportDir()}/folder1/Coordinates.md`);
expect(content).not.toContain('latitude');
expect(content).not.toContain('longitude');
expect(content).not.toContain('altitude');
}));
test('should export note without tag keyword if the tag has been deleted', (async () => {
const folder1 = await Folder.save({ title: 'folder1' });
const note = await Note.save({ title: 'NoTag', body: '**ma note**', parent_id: folder1.id });
const tag = await Tag.save({ title: 'tag' });
await Tag.setNoteTagsByIds(note.id, [tag.id]);
await Tag.delete(tag.id);
const content = await exportAndLoad(`${exportDir()}/folder1/NoTag.md`);
expect(content).not.toContain('tag');
}));
});