marked/test/specs/run-spec.js
2019-06-27 01:30:01 +02:00

47 lines
1.6 KiB
JavaScript

const path = require('path');
const load = require('../helpers/load.js');
function runSpecs(title, dir, showCompletionTable, options) {
options = options || {};
const specs = load.loadFiles(path.resolve(__dirname, dir));
if (showCompletionTable) {
load.outputCompletionTable(title, specs);
}
describe(title, () => {
Object.keys(specs).forEach(section => {
describe(section, () => {
specs[section].specs.forEach((spec) => {
spec.options = Object.assign({}, options, (spec.options || {}));
const example = (spec.example ? ' example ' + spec.example : '');
const passFail = (spec.shouldFail ? 'fail' : 'pass');
if (spec.options.sanitizerRemoveHtml) {
spec.options.sanitizer = () => '';
}
(spec.only ? fit : it)('should ' + passFail + example, () => {
const before = process.hrtime();
if (spec.shouldFail) {
expect(spec).not.toRender(spec.html);
} else {
expect(spec).toRender(spec.html);
}
const elapsed = process.hrtime(before);
if (elapsed[0] > 0) {
const s = (elapsed[0] + elapsed[1] * 1e-9).toFixed(3);
fail(`took too long: ${s}s`);
}
});
});
});
});
});
}
runSpecs('GFM', './gfm', true, { gfm: true });
runSpecs('CommonMark', './commonmark', true, { headerIds: false });
runSpecs('Original', './original', false, { gfm: false });
runSpecs('New', './new');
runSpecs('ReDOS', './redos');
runSpecs('Security', './security', false, { silent: true }); // silent - do not show deprecation warning