marked/test/helpers/html-differ.js

39 lines
1.1 KiB
JavaScript
Raw Normal View History

2019-03-13 08:50:11 -05:00
const HtmlDiffer = require('@markedjs/html-differ').HtmlDiffer;
2019-04-25 13:40:32 -05:00
const htmlDiffer = new HtmlDiffer({ ignoreSelfClosingSlash: true });
2019-03-13 08:50:11 -05:00
module.exports = {
isEqual: htmlDiffer.isEqual.bind(htmlDiffer),
firstDiff: (actual, expected, padding) => {
padding = padding || 30;
const result = htmlDiffer
.diffHtml(actual, expected)
.reduce((obj, diff) => {
if (diff.added) {
if (obj.firstIndex === null) {
obj.firstIndex = obj.expected.length;
}
obj.expected += diff.value;
} else if (diff.removed) {
if (obj.firstIndex === null) {
obj.firstIndex = obj.actual.length;
}
obj.actual += diff.value;
} else {
obj.actual += diff.value;
obj.expected += diff.value;
}
return obj;
}, {
firstIndex: null,
actual: '',
expected: ''
});
return {
actual: result.actual.substring(result.firstIndex - padding, result.firstIndex + padding),
expected: result.expected.substring(result.firstIndex - padding, result.firstIndex + padding)
};
}
};