summaryrefslogtreecommitdiffstats
path: root/packages/markdown/marked/test/helpers/html-differ.js
blob: 44052be407043d29f1714a52e24901542d4c674e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const HtmlDiffer = require('@markedjs/html-differ').HtmlDiffer;
const htmlDiffer = new HtmlDiffer({ignoreSelfClosingSlash: true});

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)
    };
  }
};