2018-09-25 11:04:59 +08:00
|
|
|
/**
|
|
|
|
* Created by Estevao on 08-06-2015.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// jshint ignore: start
|
2022-04-28 15:38:48 +08:00
|
|
|
let bootstrap = require('./makehtml.bootstrap.js'),
|
|
|
|
converter = new bootstrap.showdown.Converter({
|
|
|
|
noHeaderId: true,
|
|
|
|
requireSpaceBeforeHeadingText: true
|
|
|
|
}),
|
2018-09-25 11:04:59 +08:00
|
|
|
assertion = bootstrap.assertion,
|
|
|
|
testsuite = bootstrap.getJsonTestSuite('test/functional/makehtml/cases/commonmark.testsuite.json');
|
|
|
|
|
|
|
|
describe('makeHtml() commonmark testsuite', function () {
|
|
|
|
'use strict';
|
|
|
|
|
2022-04-28 15:38:48 +08:00
|
|
|
for (let section in testsuite) {
|
2018-09-25 11:04:59 +08:00
|
|
|
if (testsuite.hasOwnProperty(section)) {
|
|
|
|
describe(section, function () {
|
2022-04-28 15:38:48 +08:00
|
|
|
for (let i = 0; i < testsuite[section].length; ++i) {
|
|
|
|
let name = testsuite[section][i].name;
|
|
|
|
switch (name) {
|
|
|
|
case 'ATX headings_79': // empty headings don't make sense
|
|
|
|
case 'Setext headings_92': // lazy continuation is needed for compatibility
|
|
|
|
case 'Setext headings_93': // lazy continuation is needed for compatibility
|
|
|
|
case 'Setext headings_94': // lazy continuation is needed for compatibility
|
2022-05-09 08:48:53 +08:00
|
|
|
case 'Thematic breaks_43': // malformed input of test case
|
|
|
|
case 'Thematic breaks_61': // hr inside lists does not make sense
|
|
|
|
//case 'Setext headings_101': // does not make sense because it's inconsistent with own spec. But I dunno?!? this one is weird
|
2022-04-28 15:38:48 +08:00
|
|
|
continue;
|
2022-05-09 08:48:53 +08:00
|
|
|
case 'Setext headings_91': //it's failing because the testcase converts " to " even though it's not supposed to
|
|
|
|
testsuite[section][i].expected = testsuite[section][i].expected.replace(/"/g, '"')
|
|
|
|
break;
|
2022-04-28 15:38:48 +08:00
|
|
|
}
|
|
|
|
it(name, assertion(testsuite[section][i], converter, true));
|
2018-09-25 11:04:59 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|