mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
72 lines
2.5 KiB
JavaScript
72 lines
2.5 KiB
JavaScript
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 HtmlToMd = require('lib/HtmlToMd');
|
|
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('HtmlToMd', function() {
|
|
|
|
beforeEach(async (done) => {
|
|
await setupDatabaseAndSynchronizer(1);
|
|
await switchClient(1);
|
|
done();
|
|
});
|
|
|
|
it('should convert from Html to Markdown', asyncTest(async () => {
|
|
const basePath = __dirname + '/html_to_md';
|
|
const files = await shim.fsDriver().readDirStats(basePath);
|
|
const htmlToMd = new HtmlToMd();
|
|
|
|
for (let i = 0; i < files.length; i++) {
|
|
const htmlFilename = files[i].path;
|
|
if (htmlFilename.indexOf('.html') < 0) continue;
|
|
|
|
const htmlPath = basePath + '/' + htmlFilename;
|
|
const mdPath = basePath + '/' + filename(htmlFilename) + '.md';
|
|
|
|
// if (htmlFilename !== 'picture.html') continue;
|
|
|
|
const html = await shim.fsDriver().readFile(htmlPath);
|
|
let expectedMd = await shim.fsDriver().readFile(mdPath);
|
|
|
|
let actualMd = await htmlToMd.parse('<div>' + html + '</div>', []);
|
|
|
|
if (os.EOL === '\r\n') {
|
|
expectedMd = expectedMd.replace(/\r\n/g, '\n')
|
|
actualMd = actualMd.replace(/\r\n/g, '\n')
|
|
}
|
|
|
|
if (actualMd !== expectedMd) {
|
|
console.info('');
|
|
console.info('Error converting file: ' + htmlFilename);
|
|
console.info('--------------------------------- Got:');
|
|
console.info(actualMd);
|
|
console.info('--------------------------------- Raw:');
|
|
console.info(actualMd.split('\n'));
|
|
console.info('--------------------------------- Expected:');
|
|
console.info(expectedMd.split('\n'));
|
|
console.info('--------------------------------------------');
|
|
console.info('');
|
|
|
|
expect(false).toBe(true);
|
|
// return;
|
|
} else {
|
|
expect(true).toBe(true)
|
|
}
|
|
}
|
|
}));
|
|
|
|
}); |