mirror of
https://github.com/showdownjs/showdown.git
synced 2024-03-22 13:30:55 +08:00
d3ebff7ef0
This is a major refactor of the links subparser, previously known as anchors subparser. Closes #355, #534 BREAKING CHANGE: `excludeTrailingPunctuationFromURLs` option was removed. This is now the default behavior
119 lines
3.0 KiB
JavaScript
119 lines
3.0 KiB
JavaScript
/**
|
|
* Created by Estevao on 08-06-2015.
|
|
*/
|
|
|
|
//jscs:disable requireCamelCaseOrUpperCaseIdentifiers
|
|
(function () {
|
|
'use strict';
|
|
|
|
require('source-map-support').install();
|
|
require('chai').should();
|
|
var fs = require('fs');
|
|
|
|
function getTestSuite (dir) {
|
|
return fs.readdirSync(dir)
|
|
.filter(filter())
|
|
.map(map(dir));
|
|
}
|
|
|
|
function getJsonTestSuite (file) {
|
|
var json = JSON.parse(fs.readFileSync(file, 'utf8'));
|
|
return mapJson(json, file);
|
|
}
|
|
|
|
function filter () {
|
|
return function (file) {
|
|
var ext = file.slice(-3);
|
|
return (ext === '.md');
|
|
};
|
|
}
|
|
|
|
function map (dir) {
|
|
return function (file) {
|
|
var oFile = 'file://' + process.cwd().replace(/\\/g, '/') + dir + file,
|
|
name = file.replace('.md', ''),
|
|
htmlPath = dir + name + '.html',
|
|
html = fs.readFileSync(htmlPath, 'utf8'),
|
|
mdPath = dir + name + '.md',
|
|
md = fs.readFileSync(mdPath, 'utf8');
|
|
|
|
return {
|
|
name: name,
|
|
input: md,
|
|
expected: html,
|
|
file: oFile
|
|
};
|
|
};
|
|
}
|
|
|
|
function mapJson (jsonArray, file) {
|
|
var tcObj = {};
|
|
for (var i = 0; i < jsonArray.length; ++i) {
|
|
var section = jsonArray[i].section;
|
|
var name = jsonArray[i].section + '_' + jsonArray[i].example;
|
|
var md = jsonArray[i].markdown;
|
|
var html = jsonArray[i].html;
|
|
if (!tcObj.hasOwnProperty(section)) {
|
|
tcObj[section] = [];
|
|
}
|
|
tcObj[section].push({
|
|
name: name,
|
|
input: md,
|
|
expected: html,
|
|
file: process.cwd().replace(/\\/g, '/') + file
|
|
});
|
|
}
|
|
return tcObj;
|
|
}
|
|
|
|
|
|
function assertion (testCase, converter) {
|
|
return function () {
|
|
testCase.actual = converter.makeHtml(testCase.input);
|
|
testCase = normalize(testCase);
|
|
|
|
// Compare
|
|
testCase.actual.should.equal(testCase.expected, testCase.file);
|
|
};
|
|
}
|
|
|
|
//Normalize input/output
|
|
function normalize (testCase) {
|
|
|
|
// Normalize line returns
|
|
testCase.expected = testCase.expected.replace(/(\r\n)|\n|\r/g, '\n');
|
|
testCase.actual = testCase.actual.replace(/(\r\n)|\n|\r/g, '\n');
|
|
|
|
// Ignore all leading/trailing whitespace
|
|
testCase.expected = testCase.expected.split('\n').map(function (x) {
|
|
return x.trim();
|
|
}).join('\n');
|
|
testCase.actual = testCase.actual.split('\n').map(function (x) {
|
|
return x.trim();
|
|
}).join('\n');
|
|
|
|
// Remove extra lines
|
|
testCase.expected = testCase.expected.trim();
|
|
testCase.actual = testCase.actual.trim();
|
|
|
|
//Beautify
|
|
//testCase.expected = beautify(testCase.expected, beauOptions);
|
|
//testCase.actual = beautify(testCase.actual, beauOptions);
|
|
|
|
// Normalize line returns
|
|
testCase.expected = testCase.expected.replace(/(\r\n)|\n|\r/g, '\n');
|
|
testCase.actual = testCase.actual.replace(/(\r\n)|\n|\r/g, '\n');
|
|
|
|
return testCase;
|
|
}
|
|
|
|
module.exports = {
|
|
getTestSuite: getTestSuite,
|
|
getJsonTestSuite: getJsonTestSuite,
|
|
assertion: assertion,
|
|
normalize: normalize,
|
|
showdown: require('../../../.build/showdown.js')
|
|
};
|
|
})();
|
|
|