mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
84c3ef144d
* Trying to get TuiEditor to work * Tests with TinyMCE * Fixed build * Improved asset loading * Added support for Joplin source blocks * Added support for Joplin source blocks * Better integration * Make sure noteDidUpdate event is always dispatched at the right time * Minor tweaks * Fixed tests * Add support for checkboxes * Minor refactoring * Added support for file attachments * Add support for fenced code blocks * Fix new line issue on code block * Added support for Fountain scripts * Refactoring * Better handling of saving and loading notes * Fix saving and loading ntoes * Handle multi-note selection and fixed new note creation issue * Fixed newline issue in test * Fixed newline issue in test * Improve saving and loading * Improve saving and loading note * Removed undeeded prop * Fixed issue when new note being saved is incorrectly reloaded * Refactoring and improve saving of note when unmounting component * Fixed TypeScript error * Small changes * Improved further handling of saving and loading notes * Handle provisional notes and fixed various saving and loading bugs * Adding back support for HTML notes * Added support for HTML notes * Better handling of editable nodes * Preserve image HTML tag when the size is set * Handle switching between editor when the note has note finished saving * Handle templates * Handle templates * Handle loading note that is being saved * Handle note being reloaded via sync * Clean up * Clean up and improved logging * Fixed TS error * Fixed a few issues * Fixed test * Logging * Various improvements * Add blockquote support * Moved CWD operation to shim * Removed deleted files * Added support for Joplin commands
92 lines
2.9 KiB
JavaScript
92 lines
2.9 KiB
JavaScript
/* eslint-disable no-unused-vars */
|
|
|
|
require('app-module-path').addPath(__dirname);
|
|
|
|
const os = require('os');
|
|
const { time } = require('lib/time-utils.js');
|
|
const { filename } = require('lib/path-utils.js');
|
|
const { asyncTest, fileContentEqual, setupDatabase, setupDatabaseAndSynchronizer, db, synchronizer, fileApi, sleep, clearDatabase, switchClient, syncTargetId, objectsEqual, checkThrowAsync } = require('test-utils.js');
|
|
const Folder = require('lib/models/Folder.js');
|
|
const Note = require('lib/models/Note.js');
|
|
const BaseModel = require('lib/BaseModel.js');
|
|
const { shim } = require('lib/shim');
|
|
const MdToHtml = require('lib/joplin-renderer/MdToHtml');
|
|
const { enexXmlToMd } = require('lib/import-enex-md-gen.js');
|
|
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60 * 60 * 1000; // Can run for a while since everything is in the same test unit
|
|
|
|
process.on('unhandledRejection', (reason, p) => {
|
|
console.log('Unhandled Rejection at: Promise', p, 'reason:', reason);
|
|
});
|
|
|
|
describe('MdToHtml', function() {
|
|
|
|
beforeEach(async (done) => {
|
|
await setupDatabaseAndSynchronizer(1);
|
|
await switchClient(1);
|
|
done();
|
|
});
|
|
|
|
it('should convert from Markdown to Html', asyncTest(async () => {
|
|
const basePath = `${__dirname}/md_to_html`;
|
|
const files = await shim.fsDriver().readDirStats(basePath);
|
|
const mdToHtml = new MdToHtml({
|
|
ResourceModel: {
|
|
isResourceUrl: () => false,
|
|
},
|
|
});
|
|
|
|
for (let i = 0; i < files.length; i++) {
|
|
const mdFilename = files[i].path;
|
|
if (mdFilename.indexOf('.md') < 0) continue;
|
|
|
|
const mdFilePath = `${basePath}/${mdFilename}`;
|
|
const htmlPath = `${basePath}/${filename(mdFilePath)}.html`;
|
|
|
|
// if (mdFilename !== 'sanitize_9.md') continue;
|
|
|
|
const mdToHtmlOptions = {
|
|
bodyOnly: true,
|
|
};
|
|
|
|
const markdown = await shim.fsDriver().readFile(mdFilePath);
|
|
let expectedHtml = await shim.fsDriver().readFile(htmlPath);
|
|
|
|
const result = await mdToHtml.render(markdown, null, mdToHtmlOptions);
|
|
let actualHtml = result.html;
|
|
|
|
if (os.EOL === '\r\n') {
|
|
expectedHtml = expectedHtml.replace(/\r\n/g, '\n');
|
|
actualHtml = actualHtml.replace(/\r\n/g, '\n');
|
|
}
|
|
|
|
if (actualHtml !== expectedHtml) {
|
|
console.info('');
|
|
console.info(`Error converting file: ${mdFilename}`);
|
|
console.info('--------------------------------- Got:');
|
|
console.info(actualHtml);
|
|
console.info('--------------------------------- Raw:');
|
|
console.info(actualHtml.split('\n'));
|
|
console.info('--------------------------------- Expected:');
|
|
console.info(expectedHtml.split('\n'));
|
|
console.info('--------------------------------------------');
|
|
console.info('');
|
|
|
|
expect(false).toBe(true);
|
|
// return;
|
|
} else {
|
|
expect(true).toBe(true);
|
|
}
|
|
}
|
|
}));
|
|
|
|
// it('should write CSS to an external file', asyncTest(async () => {
|
|
// const mdToHtml = new MdToHtml({
|
|
// fsDriver: shim.fsDriver(),
|
|
// tempDir: Setting.value('tempDir'),
|
|
// });
|
|
|
|
// }));
|
|
|
|
});
|