| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371 |
- /**
- * @jest-environment jsdom
- */
- import splitAtDelimiters from "../splitAtDelimiters";
- import renderMathInElement from "../auto-render";
- import type {
- DelimiterSpec,
- SplitAtDelimiterData,
- } from "../splitAtDelimiters";
- beforeEach(function() {
- expect.extend({
- toSplitInto: function(
- actual: string,
- result: SplitAtDelimiterData[],
- delimiters: DelimiterSpec[],
- ) {
- const message = {
- pass: true,
- message: () => "'" + actual + "' split correctly",
- };
- const split =
- splitAtDelimiters(actual, delimiters);
- if (split.length !== result.length) {
- message.pass = false;
- message.message = () => "Different number of splits: " +
- split.length + " vs. " + result.length + " (" +
- JSON.stringify(split) + " vs. " +
- JSON.stringify(result) + ")";
- return message;
- }
- for (let i = 0; i < split.length; i++) {
- const real = split[i];
- const correct = result[i];
- let good = true;
- let diff = "";
- if (real.type !== correct.type) {
- good = false;
- diff = "type";
- } else if (real.data !== correct.data) {
- good = false;
- diff = "data";
- } else if (real.display !== correct.display) {
- good = false;
- diff = "display";
- }
- if (!good) {
- message.pass = false;
- message.message = () => "Difference at split " +
- (i + 1) + ": " + JSON.stringify(real) +
- " vs. " + JSON.stringify(correct) +
- " (" + diff + " differs)";
- break;
- }
- }
- return message;
- },
- });
- });
- describe("A delimiter splitter", function() {
- it("doesn't split when there are no delimiters", function() {
- expect("hello").toSplitInto(
- [
- {type: "text", data: "hello"},
- ],
- [
- {left: "(", right: ")", display: false},
- ]);
- });
- it("doesn't create a math node with only one left delimiter", function() {
- expect("hello ( world").toSplitInto(
- [
- {type: "text", data: "hello "},
- {type: "text", data: "( world"},
- ],
- [
- {left: "(", right: ")", display: false},
- ]);
- });
- it("doesn't split when there's only a right delimiter", function() {
- expect("hello ) world").toSplitInto(
- [
- {type: "text", data: "hello ) world"},
- ],
- [
- {left: "(", right: ")", display: false},
- ]);
- });
- it("splits when there are both delimiters", function() {
- expect("hello ( world ) boo").toSplitInto(
- [
- {type: "text", data: "hello "},
- {type: "math", data: " world ",
- rawData: "( world )", display: false},
- {type: "text", data: " boo"},
- ],
- [
- {left: "(", right: ")", display: false},
- ]);
- });
- it("splits on multi-character delimiters", function() {
- expect("hello [[ world ]] boo").toSplitInto(
- [
- {type: "text", data: "hello "},
- {type: "math", data: " world ",
- rawData: "[[ world ]]", display: false},
- {type: "text", data: " boo"},
- ],
- [
- {left: "[[", right: "]]", display: false},
- ]);
- expect("hello \\begin{equation} world \\end{equation} boo").toSplitInto(
- [
- {type: "text", data: "hello "},
- {type: "math", data: "\\begin{equation} world \\end{equation}",
- rawData: "\\begin{equation} world \\end{equation}",
- display: false},
- {type: "text", data: " boo"},
- ],
- [
- {left: "\\begin{equation}", right: "\\end{equation}",
- display: false},
- ]);
- });
- it("splits multiple times", function() {
- expect("hello ( world ) boo ( more ) stuff").toSplitInto(
- [
- {type: "text", data: "hello "},
- {type: "math", data: " world ",
- rawData: "( world )", display: false},
- {type: "text", data: " boo "},
- {type: "math", data: " more ",
- rawData: "( more )", display: false},
- {type: "text", data: " stuff"},
- ],
- [
- {left: "(", right: ")", display: false},
- ]);
- });
- it("leaves the ending when there's only a left delimiter", function() {
- expect("hello ( world ) boo ( left").toSplitInto(
- [
- {type: "text", data: "hello "},
- {type: "math", data: " world ",
- rawData: "( world )", display: false},
- {type: "text", data: " boo "},
- {type: "text", data: "( left"},
- ],
- [
- {left: "(", right: ")", display: false},
- ]);
- });
- it("doesn't split when close delimiters are in {}s", function() {
- expect("hello ( world { ) } ) boo").toSplitInto(
- [
- {type: "text", data: "hello "},
- {type: "math", data: " world { ) } ",
- rawData: "( world { ) } )", display: false},
- {type: "text", data: " boo"},
- ],
- [
- {left: "(", right: ")", display: false},
- ]);
- expect("hello ( world { { } ) } ) boo").toSplitInto(
- [
- {type: "text", data: "hello "},
- {type: "math", data: " world { { } ) } ",
- rawData: "( world { { } ) } )", display: false},
- {type: "text", data: " boo"},
- ],
- [
- {left: "(", right: ")", display: false},
- ]);
- });
- it("correctly processes sequences of $..$", function() {
- expect("$hello$$world$$boo$").toSplitInto(
- [
- {type: "math", data: "hello",
- rawData: "$hello$", display: false},
- {type: "math", data: "world",
- rawData: "$world$", display: false},
- {type: "math", data: "boo",
- rawData: "$boo$", display: false},
- ],
- [
- {left: "$", right: "$", display: false},
- ]);
- });
- it("doesn't split at escaped delimiters", function() {
- expect("hello ( world \\) ) boo").toSplitInto(
- [
- {type: "text", data: "hello "},
- {type: "math", data: " world \\) ",
- rawData: "( world \\) )", display: false},
- {type: "text", data: " boo"},
- ],
- [
- {left: "(", right: ")", display: false},
- ]);
- /* TODO(emily): make this work maybe?
- expect("hello \\( ( world ) boo").toSplitInto(
- "(", ")",
- [
- {type: "text", data: "hello \\( "},
- {type: "math", data: " world ",
- rawData: "( world )", display: false},
- {type: "text", data: " boo"},
- ]);
- */
- });
- it("splits when the right and left delimiters are the same", function() {
- expect("hello $ world $ boo").toSplitInto(
- [
- {type: "text", data: "hello "},
- {type: "math", data: " world ",
- rawData: "$ world $", display: false},
- {type: "text", data: " boo"},
- ],
- [
- {left: "$", right: "$", display: false},
- ]);
- });
- it("ignores \\$", function() {
- expect("$x = \\$5$").toSplitInto(
- [
- {type: "math", data: "x = \\$5",
- rawData: "$x = \\$5$", display: false},
- ],
- [
- {left: "$", right: "$", display: false},
- ]);
- });
- it("remembers which delimiters are display-mode", function() {
- const startData = "hello ( world ) boo";
- expect(splitAtDelimiters(startData,
- [{left:"(", right:")", display:true}])).toEqual(
- [
- {type: "text", data: "hello "},
- {type: "math", data: " world ",
- rawData: "( world )", display: true},
- {type: "text", data: " boo"},
- ]);
- });
- it("handles nested delimiters irrespective of order", function() {
- expect(splitAtDelimiters("$\\fbox{\\(hi\\)}$",
- [
- {left:"\\(", right:"\\)", display:false},
- {left:"$", right:"$", display:false},
- ])).toEqual(
- [
- {type: "math", data: "\\fbox{\\(hi\\)}",
- rawData: "$\\fbox{\\(hi\\)}$", display: false},
- ]);
- expect(splitAtDelimiters("\\(\\fbox{$hi$}\\)",
- [
- {left:"\\(", right:"\\)", display:false},
- {left:"$", right:"$", display:false},
- ])).toEqual(
- [
- {type: "math", data: "\\fbox{$hi$}",
- rawData: "\\(\\fbox{$hi$}\\)", display: false},
- ]);
- });
- it("handles a mix of $ and $$", function() {
- expect(splitAtDelimiters("$hello$world$$boo$$",
- [
- {left:"$$", right:"$$", display:true},
- {left:"$", right:"$", display:false},
- ])).toEqual(
- [
- {type: "math", data: "hello",
- rawData: "$hello$", display: false},
- {type: "text", data: "world"},
- {type: "math", data: "boo",
- rawData: "$$boo$$", display: true},
- ]);
- expect(splitAtDelimiters("$hello$$world$$$boo$$",
- [
- {left:"$$", right:"$$", display:true},
- {left:"$", right:"$", display:false},
- ])).toEqual(
- [
- {type: "math", data: "hello",
- rawData: "$hello$", display: false},
- {type: "math", data: "world",
- rawData: "$world$", display: false},
- {type: "math", data: "boo",
- rawData: "$$boo$$", display: true},
- ]);
- });
- });
- describe("Pre-process callback", function() {
- it("replace `-squared` with `^2 `", function() {
- const el1 = document.createElement('div');
- el1.textContent = 'Circle equation: $x-squared + y-squared = r-squared$.';
- const el2 = document.createElement('div');
- el2.textContent = 'Circle equation: $x^2 + y^2 = r^2$.';
- const delimiters = [{left: "$", right: "$", display: false}];
- renderMathInElement(el1, {
- delimiters,
- preProcess: math => math.replace(/-squared/g, '^2'),
- });
- renderMathInElement(el2, {delimiters});
- expect(el1.innerHTML).toEqual(el2.innerHTML);
- });
- });
- describe("Parse adjacent text nodes", function() {
- it("parse adjacent text nodes with math", function() {
- const textNodes = ['\\[',
- 'x^2 + y^2 = r^2',
- '\\]'];
- const el = document.createElement('div');
- for (let i = 0; i < textNodes.length; i++) {
- const txt = document.createTextNode(textNodes[i]);
- el.appendChild(txt);
- }
- const el2 = document.createElement('div');
- const txt = document.createTextNode(textNodes.join(''));
- el2.appendChild(txt);
- const delimiters = [{left: "\\[", right: "\\]", display: true}];
- renderMathInElement(el, {delimiters});
- renderMathInElement(el2, {delimiters});
- expect(el).toStrictEqual(el2);
- });
- it("parse adjacent text nodes without math", function() {
- const textNodes = ['Lorem ipsum dolor',
- 'sit amet',
- 'consectetur adipiscing elit'];
- const el = document.createElement('div');
- for (let i = 0; i < textNodes.length; i++) {
- const txt = document.createTextNode(textNodes[i]);
- el.appendChild(txt);
- }
- const el2 = document.createElement('div');
- for (let i = 0; i < textNodes.length; i++) {
- const txt = document.createTextNode(textNodes[i]);
- el2.appendChild(txt);
- }
- const delimiters = [{left: "\\[", right: "\\]", display: true}];
- renderMathInElement(el, {delimiters});
- expect(el).toStrictEqual(el2);
- });
- });
|