', null],
[html.Attribute, 'p', '{{ abc', [''], ['{{', ' abc'], [''], 'p="{{ abc"'],
[html.Element, 'span', 1, '
', '
', ' '],
]);
expect(humanizeErrors(errors)).toEqual([]);
});
describe('animate instructions', () => {
it('should parse animate.enter as a static attribute', () => {
expect(humanizeDom(parser.parse(`
`, 'TestComp'))).toEqual([
[html.Element, 'div', 0],
[html.Attribute, 'animate.enter', 'foo', ['foo']],
]);
});
it('should parse animate.leave as a static attribute', () => {
expect(humanizeDom(parser.parse(`
`, 'TestComp'))).toEqual([
[html.Element, 'div', 0],
[html.Attribute, 'animate.leave', 'bar', ['bar']],
]);
});
it('should parse both animate.enter and animate.leave as static attributes', () => {
expect(
humanizeDom(
parser.parse(`
`, 'TestComp'),
),
).toEqual([
[html.Element, 'div', 0],
[html.Attribute, 'animate.enter', 'foo', ['foo']],
[html.Attribute, 'animate.leave', 'bar', ['bar']],
]);
});
it('should parse animate.enter as a property binding', () => {
expect(
humanizeDom(parser.parse(`
`, 'TestComp')),
).toEqual([
[html.Element, 'div', 0],
[html.Attribute, '[animate.enter]', `'foo'`, [`'foo'`]],
]);
});
it('should parse animate.leave as a property binding with a string array', () => {
expect(
humanizeDom(parser.parse(`
`, 'TestComp')),
).toEqual([
[html.Element, 'div', 0],
[html.Attribute, '[animate.leave]', `['bar', 'baz']`, [`['bar', 'baz']`]],
]);
});
it('should parse animate.enter as an event binding', () => {
expect(
humanizeDom(
parser.parse(`
`, 'TestComp'),
),
).toEqual([
[html.Element, 'div', 0],
[html.Attribute, '(animate.enter)', 'onAnimation($event)', ['onAnimation($event)']],
]);
});
it('should parse animate.leave as an event binding', () => {
expect(
humanizeDom(
parser.parse(`
`, 'TestComp'),
),
).toEqual([
[html.Element, 'div', 0],
[html.Attribute, '(animate.leave)', 'onAnimation($event)', ['onAnimation($event)']],
]);
});
it('should parse a combination of animate property and event bindings', () => {
expect(
humanizeDom(
parser.parse(
`
`,
'TestComp',
),
),
).toEqual([
[html.Element, 'div', 0],
[html.Attribute, '[animate.enter]', `'foo'`, [`'foo'`]],
[html.Attribute, '(animate.leave)', 'onAnimation($event)', ['onAnimation($event)']],
]);
});
});
it('should parse square-bracketed attributes more permissively', () => {
expect(
humanizeDom(
parser.parse(
`
`,
'TestComp',
),
),
).toEqual([
[html.Element, 'foo', 0, '#selfClosing'],
[html.Attribute, '[class.text-primary/80]', 'expr', ['expr']],
[html.Attribute, '[class.data-active:text-green-300/80]', 'expr2', ['expr2']],
[html.Attribute, "[class.data-[size='large']:p-8]", 'expr3', ['expr3']],
[html.Attribute, 'some-attr', ''],
]);
});
});
describe('comments', () => {
it('should preserve comments', () => {
expect(humanizeDom(parser.parse('
', 'TestComp'))).toEqual([
[html.Comment, 'comment', 0],
[html.Element, 'div', 0],
]);
});
it('should normalize line endings within comments', () => {
expect(humanizeDom(parser.parse('', 'TestComp'))).toEqual([
[html.Comment, 'line 1 \n line 2', 0],
]);
});
});
describe('expansion forms', () => {
it('should parse out expansion forms', () => {
const parsed = parser.parse(
`
before{messages.length, plural, =0 {You have no messages} =1 {One {{message}}}}after
`,
'TestComp',
{tokenizeExpansionForms: true},
);
expect(humanizeDom(parsed)).toEqual([
[html.Element, 'div', 0],
[html.Text, 'before', 1, ['before']],
[html.Expansion, 'messages.length', 'plural', 1],
[html.ExpansionCase, '=0', 2],
[html.ExpansionCase, '=1', 2],
[html.Text, 'after', 1, ['after']],
]);
const cases = (
parsed.rootNodes[0]).children[1].cases;
expect(humanizeDom(new ParseTreeResult(cases[0].expression, []))).toEqual([
[html.Text, 'You have ', 0, ['You have ']],
[html.Element, 'b', 0],
[html.Text, 'no', 1, ['no']],
[html.Text, ' messages', 0, [' messages']],
]);
expect(humanizeDom(new ParseTreeResult(cases[1].expression, []))).toEqual([
[html.Text, 'One {{message}}', 0, ['One '], ['{{', 'message', '}}'], ['']],
]);
});
it('should normalize line-endings in expansion forms in inline templates if `i18nNormalizeLineEndingsInICUs` is true', () => {
const parsed = parser.parse(
`\r\n` +
` {\r\n` +
` messages.length,\r\n` +
` plural,\r\n` +
` =0 {You have \r\nno\r\n messages}\r\n` +
` =1 {One {{message}}}}\r\n` +
`
`,
'TestComp',
{
tokenizeExpansionForms: true,
escapedString: true,
i18nNormalizeLineEndingsInICUs: true,
},
);
expect(humanizeDom(parsed)).toEqual([
[html.Element, 'div', 0],
[html.Text, '\n ', 1, ['\n ']],
[html.Expansion, '\n messages.length', 'plural', 1],
[html.ExpansionCase, '=0', 2],
[html.ExpansionCase, '=1', 2],
[html.Text, '\n', 1, ['\n']],
]);
const cases = (parsed.rootNodes[0]).children[1].cases;
expect(humanizeDom(new ParseTreeResult(cases[0].expression, []))).toEqual([
[html.Text, 'You have \nno\n messages', 0, ['You have \nno\n messages']],
]);
expect(humanizeDom(new ParseTreeResult(cases[1].expression, []))).toEqual([
[html.Text, 'One {{message}}', 0, ['One '], ['{{', 'message', '}}'], ['']],
]);
expect(parsed.errors).toEqual([]);
});
it('should not normalize line-endings in ICU expressions in external templates when `i18nNormalizeLineEndingsInICUs` is not set', () => {
const parsed = parser.parse(
`\r\n` +
` {\r\n` +
` messages.length,\r\n` +
` plural,\r\n` +
` =0 {You have \r\nno\r\n messages}\r\n` +
` =1 {One {{message}}}}\r\n` +
`
`,
'TestComp',
{tokenizeExpansionForms: true, escapedString: true},
);
expect(humanizeDom(parsed)).toEqual([
[html.Element, 'div', 0],
[html.Text, '\n ', 1, ['\n ']],
[html.Expansion, '\r\n messages.length', 'plural', 1],
[html.ExpansionCase, '=0', 2],
[html.ExpansionCase, '=1', 2],
[html.Text, '\n', 1, ['\n']],
]);
const cases = (parsed.rootNodes[0]).children[1].cases;
expect(humanizeDom(new ParseTreeResult(cases[0].expression, []))).toEqual([
[html.Text, 'You have \nno\n messages', 0, ['You have \nno\n messages']],
]);
expect(humanizeDom(new ParseTreeResult(cases[1].expression, []))).toEqual([
[html.Text, 'One {{message}}', 0, ['One '], ['{{', 'message', '}}'], ['']],
]);
expect(parsed.errors).toEqual([]);
});
it('should normalize line-endings in expansion forms in external templates if `i18nNormalizeLineEndingsInICUs` is true', () => {
const parsed = parser.parse(
`\r\n` +
` {\r\n` +
` messages.length,\r\n` +
` plural,\r\n` +
` =0 {You have \r\nno\r\n messages}\r\n` +
` =1 {One {{message}}}}\r\n` +
`
`,
'TestComp',
{
tokenizeExpansionForms: true,
escapedString: false,
i18nNormalizeLineEndingsInICUs: true,
},
);
expect(humanizeDom(parsed)).toEqual([
[html.Element, 'div', 0],
[html.Text, '\n ', 1, ['\n ']],
[html.Expansion, '\n messages.length', 'plural', 1],
[html.ExpansionCase, '=0', 2],
[html.ExpansionCase, '=1', 2],
[html.Text, '\n', 1, ['\n']],
]);
const cases = (parsed.rootNodes[0]).children[1].cases;
expect(humanizeDom(new ParseTreeResult(cases[0].expression, []))).toEqual([
[html.Text, 'You have \nno\n messages', 0, ['You have \nno\n messages']],
]);
expect(humanizeDom(new ParseTreeResult(cases[1].expression, []))).toEqual([
[html.Text, 'One {{message}}', 0, ['One '], ['{{', 'message', '}}'], ['']],
]);
expect(parsed.errors).toEqual([]);
});
it('should not normalize line-endings in ICU expressions in external templates when `i18nNormalizeLineEndingsInICUs` is not set', () => {
const parsed = parser.parse(
`\r\n` +
` {\r\n` +
` messages.length,\r\n` +
` plural,\r\n` +
` =0 {You have \r\nno\r\n messages}\r\n` +
` =1 {One {{message}}}}\r\n` +
`
`,
'TestComp',
{tokenizeExpansionForms: true, escapedString: false},
);
expect(humanizeDom(parsed)).toEqual([
[html.Element, 'div', 0],
[html.Text, '\n ', 1, ['\n ']],
[html.Expansion, '\r\n messages.length', 'plural', 1],
[html.ExpansionCase, '=0', 2],
[html.ExpansionCase, '=1', 2],
[html.Text, '\n', 1, ['\n']],
]);
const cases = (parsed.rootNodes[0]).children[1].cases;
expect(humanizeDom(new ParseTreeResult(cases[0].expression, []))).toEqual([
[html.Text, 'You have \nno\n messages', 0, ['You have \nno\n messages']],
]);
expect(humanizeDom(new ParseTreeResult(cases[1].expression, []))).toEqual([
[html.Text, 'One {{message}}', 0, ['One '], ['{{', 'message', '}}'], ['']],
]);
expect(parsed.errors).toEqual([]);
});
it('should parse out expansion forms', () => {
const parsed = parser.parse(`{a, plural, =0 {b}}
`, 'TestComp', {
tokenizeExpansionForms: true,
});
expect(humanizeDom(parsed)).toEqual([
[html.Element, 'div', 0],
[html.Element, 'span', 1],
[html.Expansion, 'a', 'plural', 2],
[html.ExpansionCase, '=0', 3],
]);
});
it('should parse out nested expansion forms', () => {
const parsed = parser.parse(
`{messages.length, plural, =0 { {p.gender, select, male {m}} }}`,
'TestComp',
{tokenizeExpansionForms: true},
);
expect(humanizeDom(parsed)).toEqual([
[html.Expansion, 'messages.length', 'plural', 0],
[html.ExpansionCase, '=0', 1],
]);
const firstCase = (parsed.rootNodes[0]).cases[0];
expect(humanizeDom(new ParseTreeResult(firstCase.expression, []))).toEqual([
[html.Expansion, 'p.gender', 'select', 0],
[html.ExpansionCase, 'male', 1],
[html.Text, ' ', 0, [' ']],
]);
});
it('should normalize line endings in nested expansion forms for inline templates, when `i18nNormalizeLineEndingsInICUs` is true', () => {
const parsed = parser.parse(
`{\r\n` +
` messages.length, plural,\r\n` +
` =0 { zero \r\n` +
` {\r\n` +
` p.gender, select,\r\n` +
` male {m}\r\n` +
` }\r\n` +
` }\r\n` +
`}`,
'TestComp',
{
tokenizeExpansionForms: true,
escapedString: true,
i18nNormalizeLineEndingsInICUs: true,
},
);
expect(humanizeDom(parsed)).toEqual([
[html.Expansion, '\n messages.length', 'plural', 0],
[html.ExpansionCase, '=0', 1],
]);
const expansion = parsed.rootNodes[0] as html.Expansion;
expect(humanizeDom(new ParseTreeResult(expansion.cases[0].expression, []))).toEqual([
[html.Text, 'zero \n ', 0, ['zero \n ']],
[html.Expansion, '\n p.gender', 'select', 0],
[html.ExpansionCase, 'male', 1],
[html.Text, '\n ', 0, ['\n ']],
]);
expect(parsed.errors).toEqual([]);
});
it('should not normalize line endings in nested expansion forms for inline templates, when `i18nNormalizeLineEndingsInICUs` is not defined', () => {
const parsed = parser.parse(
`{\r\n` +
` messages.length, plural,\r\n` +
` =0 { zero \r\n` +
` {\r\n` +
` p.gender, select,\r\n` +
` male {m}\r\n` +
` }\r\n` +
` }\r\n` +
`}`,
'TestComp',
{tokenizeExpansionForms: true, escapedString: true},
);
expect(humanizeDom(parsed)).toEqual([
[html.Expansion, '\r\n messages.length', 'plural', 0],
[html.ExpansionCase, '=0', 1],
]);
const expansion = parsed.rootNodes[0] as html.Expansion;
expect(humanizeDom(new ParseTreeResult(expansion.cases[0].expression, []))).toEqual([
[html.Text, 'zero \n ', 0, ['zero \n ']],
[html.Expansion, '\r\n p.gender', 'select', 0],
[html.ExpansionCase, 'male', 1],
[html.Text, '\n ', 0, ['\n ']],
]);
expect(parsed.errors).toEqual([]);
});
it('should not normalize line endings in nested expansion forms for external templates, when `i18nNormalizeLineEndingsInICUs` is not set', () => {
const parsed = parser.parse(
`{\r\n` +
` messages.length, plural,\r\n` +
` =0 { zero \r\n` +
` {\r\n` +
` p.gender, select,\r\n` +
` male {m}\r\n` +
` }\r\n` +
` }\r\n` +
`}`,
'TestComp',
{tokenizeExpansionForms: true},
);
expect(humanizeDom(parsed)).toEqual([
[html.Expansion, '\r\n messages.length', 'plural', 0],
[html.ExpansionCase, '=0', 1],
]);
const expansion = parsed.rootNodes[0] as html.Expansion;
expect(humanizeDom(new ParseTreeResult(expansion.cases[0].expression, []))).toEqual([
[html.Text, 'zero \n ', 0, ['zero \n ']],
[html.Expansion, '\r\n p.gender', 'select', 0],
[html.ExpansionCase, 'male', 1],
[html.Text, '\n ', 0, ['\n ']],
]);
expect(parsed.errors).toEqual([]);
});
it('should error when expansion form is not closed', () => {
const p = parser.parse(`{messages.length, plural, =0 {one}`, 'TestComp', {
tokenizeExpansionForms: true,
});
expect(humanizeErrors(p.errors)).toEqual([
[null, "Invalid ICU message. Missing '}'.", '0:34'],
]);
});
it('should support ICU expressions with cases that contain numbers', () => {
const p = parser.parse(`{sex, select, male {m} female {f} 0 {other}}`, 'TestComp', {
tokenizeExpansionForms: true,
});
expect(p.errors.length).toEqual(0);
});
it(`should support ICU expressions with cases that contain any character except '}'`, () => {
const p = parser.parse(`{a, select, b {foo} % bar {% bar}}`, 'TestComp', {
tokenizeExpansionForms: true,
});
expect(p.errors.length).toEqual(0);
});
it('should error when expansion case is not properly closed', () => {
const p = parser.parse(`{a, select, b {foo} % { bar {% bar}}`, 'TestComp', {
tokenizeExpansionForms: true,
});
expect(humanizeErrors(p.errors)).toEqual([
[
'Unexpected character "EOF" (Do you have an unescaped "{" in your template? Use "{{ \'{\' }}") to escape it.)',
'0:36',
],
[null, "Invalid ICU message. Missing '}'.", '0:22'],
]);
});
it('should error when expansion case is not closed', () => {
const p = parser.parse(`{messages.length, plural, =0 {one`, 'TestComp', {
tokenizeExpansionForms: true,
});
expect(humanizeErrors(p.errors)).toEqual([
[null, "Invalid ICU message. Missing '}'.", '0:29'],
]);
});
it('should error when invalid html in the case', () => {
const p = parser.parse(`{messages.length, plural, =0 { }`, 'TestComp', {
tokenizeExpansionForms: true,
});
expect(humanizeErrors(p.errors)).toEqual([
['b', 'Only void, custom and foreign elements can be self closed "b"', '0:30'],
]);
});
});
describe('blocks', () => {
it('should parse a block', () => {
expect(humanizeDom(parser.parse('@defer (a b; c d){hello}', 'TestComp'))).toEqual([
[html.Block, 'defer', 0],
[html.BlockParameter, 'a b'],
[html.BlockParameter, 'c d'],
[html.Text, 'hello', 1, ['hello']],
]);
});
it('should parse a block with an HTML element', () => {
expect(humanizeDom(parser.parse('@defer { }', 'TestComp'))).toEqual([
[html.Block, 'defer', 0],
[html.Element, 'my-cmp', 1, '#selfClosing'],
]);
});
it('should parse a block containing mixed plain text and HTML', () => {
expect(
humanizeDom(
parser.parse(
'@switch (expr) {' +
'@case (1) {hello there}' +
'@case (two) {Two...
}' +
'@case (isThree(3)) {Thtre e !}' +
'}',
'TestComp',
),
),
).toEqual([
[html.Block, 'switch', 0],
[html.BlockParameter, 'expr'],
[html.Block, 'case', 1],
[html.BlockParameter, '1'],
[html.Text, 'hello', 2, ['hello']],
[html.Element, 'my-cmp', 2, '#selfClosing'],
[html.Text, 'there', 2, ['there']],
[html.Block, 'case', 1],
[html.BlockParameter, 'two'],
[html.Element, 'p', 2],
[html.Text, 'Two...', 3, ['Two...']],
[html.Block, 'case', 1],
[html.BlockParameter, 'isThree(3)'],
[html.Text, 'T', 2, ['T']],
[html.Element, 'strong', 2],
[html.Text, 'htr', 3, ['htr']],
[html.Element, 'i', 3],
[html.Text, 'e', 4, ['e']],
[html.Text, 'e', 3, ['e']],
[html.Text, '!', 2, ['!']],
]);
});
it('should parse nested blocks', () => {
const markup =
` ` +
`@if (root) {` +
` ` +
`` +
`@if (childParam === 1) {` +
`@if (innerChild1 === foo) {` +
` ` +
`@switch (grandChild) {` +
`@case (innerGrandChild) {` +
` ` +
`}` +
`@case (innerGrandChild) {` +
` ` +
`}` +
`}` +
`}` +
`@if (innerChild) {` +
` ` +
`}` +
`}` +
` ` +
`@for (outerChild1; outerChild2) {` +
` ` +
`}` +
`} `;
expect(humanizeDom(parser.parse(markup, 'TestComp'))).toEqual([
[html.Element, 'root-sibling-one', 0, '#selfClosing'],
[html.Block, 'if', 0],
[html.BlockParameter, 'root'],
[html.Element, 'outer-child-one', 1, '#selfClosing'],
[html.Element, 'outer-child-two', 1],
[html.Block, 'if', 2],
[html.BlockParameter, 'childParam === 1'],
[html.Block, 'if', 3],
[html.BlockParameter, 'innerChild1 === foo'],
[html.Element, 'inner-child-one', 4, '#selfClosing'],
[html.Block, 'switch', 4],
[html.BlockParameter, 'grandChild'],
[html.Block, 'case', 5],
[html.BlockParameter, 'innerGrandChild'],
[html.Element, 'inner-grand-child-one', 6, '#selfClosing'],
[html.Block, 'case', 5],
[html.BlockParameter, 'innerGrandChild'],
[html.Element, 'inner-grand-child-two', 6, '#selfClosing'],
[html.Block, 'if', 3],
[html.BlockParameter, 'innerChild'],
[html.Element, 'inner-child-two', 4, '#selfClosing'],
[html.Block, 'for', 1],
[html.BlockParameter, 'outerChild1'],
[html.BlockParameter, 'outerChild2'],
[html.Element, 'outer-child-three', 2, '#selfClosing'],
[html.Text, ' ', 0, [' ']],
[html.Element, 'root-sibling-two', 0, '#selfClosing'],
]);
});
it('should infer namespace through block boundary', () => {
expect(humanizeDom(parser.parse('@if (cond) { } ', 'TestComp'))).toEqual([
[html.Element, ':svg:svg', 0],
[html.Block, 'if', 1],
[html.BlockParameter, 'cond'],
[html.Element, ':svg:circle', 2, '#selfClosing'],
]);
});
it('should parse an empty block', () => {
expect(humanizeDom(parser.parse('@defer{}', 'TestComp'))).toEqual([
[html.Block, 'defer', 0],
]);
});
it('should parse a block with void elements', () => {
expect(humanizeDom(parser.parse('@defer { }', 'TestComp'))).toEqual([
[html.Block, 'defer', 0],
[html.Element, 'br', 1],
]);
});
it('should close void elements used right before a block', () => {
expect(humanizeDom(parser.parse(' @defer {hello}', 'TestComp'))).toEqual([
[html.Element, 'img', 0],
[html.Block, 'defer', 0],
[html.Text, 'hello', 1, ['hello']],
]);
});
it('should report an unclosed block', () => {
const errors = parser.parse('@defer {hello', 'TestComp').errors;
expect(errors.length).toEqual(1);
expect(humanizeErrors(errors)).toEqual([['defer', 'Unclosed block "defer"', '0:0']]);
});
it('should report an unexpected block close', () => {
const errors = parser.parse('hello}', 'TestComp').errors;
expect(errors.length).toEqual(1);
expect(humanizeErrors(errors)).toEqual([
[
null,
'Unexpected closing block. The block may have been closed earlier. If you meant to write the } character, you should use the "}" HTML entity instead.',
'0:5',
],
]);
});
it('should report unclosed tags inside of a block', () => {
const errors = parser.parse('@defer {hello}', 'TestComp').errors;
expect(errors.length).toEqual(1);
expect(humanizeErrors(errors)).toEqual([
[
null,
'Unexpected closing block. The block may have been closed earlier. If you meant to write the } character, you should use the "}" HTML entity instead.',
'0:21',
],
]);
});
it('should report an unexpected closing tag inside a block', () => {
const errors = parser.parse('@if (cond) {hello
}', 'TestComp').errors;
expect(errors.length).toEqual(2);
expect(humanizeErrors(errors)).toEqual([
[
'div',
'Unexpected closing tag "div". It may happen when the tag has already been closed by another tag. For more info see https://www.w3.org/TR/html5/syntax.html#closing-elements-that-have-implied-end-tags',
'0:22',
],
[
null,
'Unexpected closing block. The block may have been closed earlier. If you meant to write the } character, you should use the "}" HTML entity instead.',
'0:28',
],
]);
});
it('should store the source locations of blocks', () => {
const markup =
'@switch (expr) {' +
'@case (1) {hello
world}' +
'@case (two) {Two}' +
'@case (isThree(3)) {Placeholder }' +
'}';
expect(humanizeDomSourceSpans(parser.parse(markup, 'TestComp'))).toEqual([
[
html.Block,
'switch',
0,
'@switch (expr) {@case (1) {hello
world}@case (two) {Two}@case (isThree(3)) {Placeholder }}',
'@switch (expr) {',
'}',
],
[html.BlockParameter, 'expr', 'expr'],
[html.Block, 'case', 1, '@case (1) {hello
world}', '@case (1) {', '}'],
[html.BlockParameter, '1', '1'],
[html.Element, 'div', 2, 'hello
', '', '
'],
[html.Text, 'hello', 3, ['hello'], 'hello'],
[html.Text, 'world', 2, ['world'], 'world'],
[html.Block, 'case', 1, '@case (two) {Two}', '@case (two) {', '}'],
[html.BlockParameter, 'two', 'two'],
[html.Text, 'Two', 2, ['Two'], 'Two'],
[
html.Block,
'case',
1,
'@case (isThree(3)) {Placeholder }',
'@case (isThree(3)) {',
'}',
],
[html.BlockParameter, 'isThree(3)', 'isThree(3)'],
[html.Text, 'Placeholde', 2, ['Placeholde'], 'Placeholde'],
[html.Element, 'strong', 2, 'r ', '', ' '],
[html.Text, 'r', 3, ['r'], 'r'],
]);
});
it('should parse an incomplete block with no parameters', () => {
const result = parser.parse('This is the @if() block', 'TestComp');
expect(humanizeNodes(result.rootNodes, true)).toEqual([
[html.Text, 'This is the ', 0, ['This is the '], 'This is the '],
[html.Block, 'if', 0, '@if() ', '@if() ', null],
[html.Text, 'block', 0, ['block'], 'block'],
]);
expect(humanizeErrors(result.errors)).toEqual([
[
'if',
'Incomplete block "if". If you meant to write the @ character, you should use the "@" HTML entity instead.',
'0:12',
],
]);
});
it('should parse an incomplete block with no parameters', () => {
const result = parser.parse(
'This is the @if({alias: "foo"}) block with params',
'TestComp',
);
expect(humanizeNodes(result.rootNodes, true)).toEqual([
[html.Text, 'This is the ', 0, ['This is the '], 'This is the '],
[html.Block, 'if', 0, '@if({alias: "foo"}) ', '@if({alias: "foo"}) ', null],
[html.BlockParameter, '{alias: "foo"}', '{alias: "foo"}'],
[html.Text, 'block with params', 0, ['block with params'], 'block with params'],
]);
expect(humanizeErrors(result.errors)).toEqual([
[
'if',
'Incomplete block "if". If you meant to write the @ character, you should use the "@" HTML entity instead.',
'0:12',
],
]);
});
});
describe('let declaration', () => {
it('should parse a let declaration', () => {
expect(humanizeDom(parser.parse('@let foo = 123;', 'TestCmp'))).toEqual([
[html.LetDeclaration, 'foo', '123'],
]);
});
it('should parse a let declaration that is nested in a parent', () => {
expect(
humanizeDom(parser.parse('@defer {@if (true) {@let foo = 123;}}', 'TestCmp')),
).toEqual([
[html.Block, 'defer', 0],
[html.Block, 'if', 1],
[html.BlockParameter, 'true'],
[html.LetDeclaration, 'foo', '123'],
]);
});
it('should store the source location of a @let declaration', () => {
expect(humanizeDomSourceSpans(parser.parse('@let foo = 123 + 456;', 'TestCmp'))).toEqual([
[html.LetDeclaration, 'foo', '123 + 456', '@let foo = 123 + 456', 'foo', '123 + 456'],
]);
});
it('should report an error for an incomplete let declaration', () => {
expect(humanizeErrors(parser.parse('@let foo =', 'TestCmp').errors)).toEqual([
[
'foo',
'Incomplete @let declaration "foo". @let declarations must be written as `@let = ;`',
'0:0',
],
]);
});
it('should store the locations of an incomplete let declaration', () => {
const parseResult = parser.parse('@let foo =', 'TestCmp');
// It's expected that errors will be reported for the incomplete declaration,
// but we still want to check the spans since they're important even for broken templates.
parseResult.errors = [];
expect(humanizeDomSourceSpans(parseResult)).toEqual([
[html.LetDeclaration, 'foo', '', '@let foo =', 'foo =', ''],
]);
});
});
describe('directive nodes', () => {
const options: TokenizeOptions = {
selectorlessEnabled: true,
};
it('should parse a directive with no attributes', () => {
const parsed = humanizeDom(parser.parse('
', '', options));
expect(parsed).toEqual([
[html.Element, 'div', 0],
[html.Directive, 'Dir'],
]);
});
it('should parse a directive with attributes', () => {
const parsed = humanizeDom(
parser.parse('
', '', options),
);
expect(parsed).toEqual([
[html.Element, 'div', 0],
[html.Directive, 'Dir'],
[html.Attribute, 'a', '1', ['1']],
[html.Attribute, '[b]', 'two', ['two']],
[html.Attribute, '(c)', 'c()', ['c()']],
]);
});
it('should parse directives on a component node', () => {
const parsed = humanizeDom(
parser.parse(' ', '', options),
);
expect(parsed).toEqual([
[html.Component, 'MyComp', null, 'MyComp', 0],
[html.Directive, 'Dir'],
[html.Directive, 'OtherDir'],
[html.Attribute, 'a', '1', ['1']],
[html.Attribute, '[b]', 'two', ['two']],
[html.Attribute, '(c)', 'c()', ['c()']],
]);
});
it('should report a missing directive closing paren', () => {
expect(
humanizeErrors(parser.parse('
', '', options).errors),
).toEqual([[null, 'Unterminated directive definition', '0:5']]);
expect(
humanizeErrors(parser.parse(' ', '', options).errors),
).toEqual([[null, 'Unterminated directive definition', '0:8']]);
});
it('should parse a directive mixed with other attributes', () => {
const parsed = humanizeDom(
parser.parse(
'
',
'',
options,
),
);
expect(parsed).toEqual([
[html.Element, 'div', 0],
[html.Attribute, 'before', 'foo', ['foo']],
[html.Attribute, 'middle', ''],
[html.Attribute, 'after', '123', ['123']],
[html.Directive, 'Dir'],
[html.Directive, 'OtherDir'],
[html.Attribute, '[a]', 'a', ['a']],
[html.Attribute, '(b)', 'b()', ['b()']],
]);
});
it('should store the source locations of directives', () => {
const markup = '
';
expect(humanizeDomSourceSpans(parser.parse(markup, '', options))).toEqual([
[
html.Element,
'div',
0,
'
',
'',
'
',
],
[html.Directive, 'Dir', '@Dir', '@Dir', null],
[html.Directive, 'OtherDir', '@OtherDir(a="1" [b]="two" (c)="c()")', '@OtherDir(', ')'],
[html.Attribute, 'a', '1', ['1'], 'a="1"'],
[html.Attribute, '[b]', 'two', ['two'], '[b]="two"'],
[html.Attribute, '(c)', 'c()', ['c()'], '(c)="c()"'],
]);
});
});
describe('component nodes', () => {
const options: TokenizeOptions = {
selectorlessEnabled: true,
};
it('should parse a simple component node', () => {
const parsed = humanizeDom(parser.parse('Hello ', '', options));
expect(parsed).toEqual([
[html.Component, 'MyComp', null, 'MyComp', 0],
[html.Text, 'Hello', 1, ['Hello']],
]);
});
it('should parse a self-closing component node', () => {
const parsed = humanizeDom(parser.parse(' Hello', '', options));
expect(parsed).toEqual([
[html.Component, 'MyComp', null, 'MyComp', 0, '#selfClosing'],
[html.Text, 'Hello', 0, ['Hello']],
]);
});
it('should parse a component node with a tag name', () => {
const parsed = humanizeDom(
parser.parse('Hello ', '', options),
);
expect(parsed).toEqual([
[html.Component, 'MyComp', 'button', 'MyComp:button', 0],
[html.Text, 'Hello', 1, ['Hello']],
]);
});
it('should parse a component node with a tag name and namespace', () => {
const parsed = humanizeDom(
parser.parse('Hello ', '', options),
);
expect(parsed).toEqual([
[html.Component, 'MyComp', ':svg:title', 'MyComp:svg:title', 0],
[html.Text, 'Hello', 1, ['Hello']],
]);
});
it('should parse a component node with an inferred namespace and no tag name', () => {
const parsed = humanizeDom(parser.parse('Hello ', '', options));
expect(parsed).toEqual([
[html.Element, ':svg:svg', 0],
[html.Component, 'MyComp', ':svg:ng-component', 'MyComp:svg:ng-component', 1],
[html.Text, 'Hello', 2, ['Hello']],
]);
});
it('should parse a component node with an inferred namespace and a tag name', () => {
const parsed = humanizeDom(
parser.parse('Hello ', '', options),
);
expect(parsed).toEqual([
[html.Element, ':svg:svg', 0],
[html.Component, 'MyComp', ':svg:button', 'MyComp:svg:button', 1],
[html.Text, 'Hello', 2, ['Hello']],
]);
});
it('should parse a component node with an inferred namespace plus an explicit namespace and tag name', () => {
const parsed = humanizeDom(
parser.parse('Hello ', '', options),
);
expect(parsed).toEqual([
[html.Element, ':math:math', 0],
[html.Component, 'MyComp', ':svg:title', 'MyComp:svg:title', 1],
[html.Text, 'Hello', 2, ['Hello']],
]);
});
it('should distinguish components with tag names from ones without', () => {
const parsed = humanizeDom(
parser.parse('Hello ', '', options),
);
expect(parsed).toEqual([
[html.Component, 'MyComp', 'button', 'MyComp:button', 0],
[html.Component, 'MyComp', null, 'MyComp', 1],
[html.Text, 'Hello', 2, ['Hello']],
]);
});
it('should implicitly close a component', () => {
const parsed = humanizeDom(parser.parse('Hello', '', options));
expect(parsed).toEqual([
[html.Component, 'MyComp', null, 'MyComp', 0],
[html.Text, 'Hello', 1, ['Hello']],
]);
});
it('should parse a component tag nested within other markup', () => {
const parsed = humanizeDom(
parser.parse(
'@if (expr) {Hello:
}',
'',
options,
),
);
expect(parsed).toEqual([
[html.Block, 'if', 0],
[html.BlockParameter, 'expr'],
[html.Element, 'div', 1],
[html.Text, 'Hello: ', 2, ['Hello: ']],
[html.Component, 'MyComp', null, 'MyComp', 2],
[html.Element, 'span', 3],
[html.Component, 'OtherComp', null, 'OtherComp', 4, '#selfClosing'],
]);
});
it('should report closing tag whose tag name does not match the opening tag', () => {
expect(
humanizeErrors(parser.parse('Hello ', '', options).errors),
).toEqual([
['MyComp', 'Unexpected closing tag "MyComp", did you mean "MyComp:button"?', '0:20'],
]);
expect(
humanizeErrors(parser.parse('Hello', '', options).errors),
).toEqual([
[
'MyComp:button',
'Unexpected closing tag "MyComp:button", did you mean "MyComp"?',
'0:13',
],
]);
});
it('should parse a component node with attributes and directives', () => {
const parsed = humanizeDom(
parser.parse(
'Hello ',
'',
options,
),
);
expect(parsed).toEqual([
[html.Component, 'MyComp', null, 'MyComp', 0],
[html.Attribute, 'before', 'foo', ['foo']],
[html.Attribute, 'middle', ''],
[html.Attribute, 'after', '123', ['123']],
[html.Directive, 'Dir'],
[html.Directive, 'OtherDir'],
[html.Attribute, '[a]', 'a', ['a']],
[html.Attribute, '(b)', 'b()', ['b()']],
[html.Text, 'Hello', 1, ['Hello']],
]);
});
it('should store the source locations of a component with attributes and content', () => {
const markup = 'Hello ';
expect(humanizeDomSourceSpans(parser.parse(markup, '', options))).toEqual([
[
html.Component,
'MyComp',
null,
'MyComp',
0,
'Hello ',
'',
' ',
],
[html.Attribute, 'one', '1', ['1'], 'one="1"'],
[html.Attribute, 'two', '', 'two'],
[html.Attribute, '[three]', '3', ['3'], '[three]="3"'],
[html.Text, 'Hello', 1, ['Hello'], 'Hello'],
]);
});
it('should store the source locations of self-closing components', () => {
const markup = ' Hello ';
expect(humanizeDomSourceSpans(parser.parse(markup, '', options))).toEqual([
[
html.Component,
'MyComp',
null,
'MyComp',
0,
' ',
'#selfClosing',
' ',
' ',
],
[html.Attribute, 'one', '1', ['1'], 'one="1"'],
[html.Attribute, 'two', '', 'two'],
[html.Attribute, '[three]', '3', ['3'], '[three]="3"'],
[html.Text, 'Hello', 0, ['Hello'], 'Hello'],
[
html.Component,
'MyOtherComp',
null,
'MyOtherComp',
0,
' ',
'#selfClosing',
' ',
' ',
],
[
html.Component,
'MyThirdComp',
'button',
'MyThirdComp:button',
0,
' ',
'#selfClosing',
' ',
' ',
],
]);
});
});
describe('source spans', () => {
it('should store the location', () => {
expect(
humanizeDomSourceSpans(
parser.parse('\na\n
', ' TestComp'),
),
).toEqual([
[
html.Element,
'div',
0,
'\na\n
',
'',
'
',
],
[html.Attribute, '[prop]', 'v1', ['v1'], '[prop]="v1"'],
[html.Attribute, '(e)', 'do()', ['do()'], '(e)="do()"'],
[html.Attribute, 'attr', 'v2', ['v2'], 'attr="v2"'],
[html.Attribute, 'noValue', '', 'noValue'],
[html.Text, '\na\n', 1, ['\na\n'], '\na\n'],
]);
});
it('should set the start and end source spans', () => {
const node = parser.parse('a
', 'TestComp').rootNodes[0];
expect(node.startSourceSpan.start.offset).toEqual(0);
expect(node.startSourceSpan.end.offset).toEqual(5);
expect(node.endSourceSpan!.start.offset).toEqual(6);
expect(node.endSourceSpan!.end.offset).toEqual(12);
});
// This checks backward compatibility with a previous version of the lexer, which would
// treat interpolation expressions as regular HTML escapable text.
it('should decode HTML entities in interpolations', () => {
expect(
humanizeDomSourceSpans(
parser.parse(
'{{&}}' +
'{{▾}}' +
'{{▾}}' +
'{{&unknown;}}' +
'{{& (no semi-colon)}}' +
'{{yz; (invalid hex)}}' +
'{{BE; (invalid decimal)}}',
'TestComp',
),
),
).toEqual([
[
html.Text,
'{{&}}' +
'{{\u25BE}}' +
'{{\u25BE}}' +
'{{&unknown;}}' +
'{{& (no semi-colon)}}' +
'{{yz; (invalid hex)}}' +
'{{BE; (invalid decimal)}}',
0,
[''],
['{{', '&', '}}'],
[''],
['{{', '▾', '}}'],
[''],
['{{', '▾', '}}'],
[''],
['{{', '&unknown;', '}}'],
[''],
['{{', '& (no semi-colon)', '}}'],
[''],
['{{', 'yz; (invalid hex)', '}}'],
[''],
['{{', 'BE; (invalid decimal)', '}}'],
[''],
'{{&}}' +
'{{▾}}' +
'{{▾}}' +
'{{&unknown;}}' +
'{{& (no semi-colon)}}' +
'{{yz; (invalid hex)}}' +
'{{BE; (invalid decimal)}}',
],
]);
});
it('should support interpolations in text', () => {
expect(
humanizeDomSourceSpans(parser.parse(' pre {{ value }} post
', 'TestComp')),
).toEqual([
[html.Element, 'div', 0, ' pre {{ value }} post
', '', '
'],
[
html.Text,
' pre {{ value }} post ',
1,
[' pre '],
['{{', ' value ', '}}'],
[' post '],
' pre {{ value }} post ',
],
]);
});
it('should not set the end source span for void elements', () => {
expect(humanizeDomSourceSpans(parser.parse('
', 'TestComp'))).toEqual([
[html.Element, 'div', 0, '
', '', '
'],
[html.Element, 'br', 1, ' ', ' ', null],
]);
});
it('should not set the end source span for multiple void elements', () => {
expect(humanizeDomSourceSpans(parser.parse('
', 'TestComp'))).toEqual([
[html.Element, 'div', 0, '
', '', '
'],
[html.Element, 'br', 1, ' ', ' ', null],
[html.Element, 'hr', 1, ' ', ' ', null],
]);
});
it('should not set the end source span for standalone void elements', () => {
expect(humanizeDomSourceSpans(parser.parse(' ', 'TestComp'))).toEqual([
[html.Element, 'br', 0, ' ', ' ', null],
]);
});
it('should set the end source span for standalone self-closing elements', () => {
expect(humanizeDomSourceSpans(parser.parse(' ', 'TestComp'))).toEqual([
[html.Element, 'br', 0, ' ', '#selfClosing', ' ', ' '],
]);
});
it('should set the end source span for self-closing elements', () => {
expect(humanizeDomSourceSpans(parser.parse('
', 'TestComp'))).toEqual([
[html.Element, 'div', 0, '
', '', '
'],
[html.Element, 'br', 1, ' ', '#selfClosing', ' ', ' '],
]);
});
it('should not include leading trivia from the following node of an element in the end source', () => {
expect(
humanizeDomSourceSpans(
parser.parse(' \n\n\n \n ', 'TestComp', {
leadingTriviaChars: [' ', '\n', '\r', '\t'],
}),
),
).toEqual([
[
html.Element,
'input',
0,
' ',
'#selfClosing',
' ',
' ',
],
[html.Attribute, 'type', 'text', ['text'], 'type="text"'],
[html.Text, '\n\n\n ', 0, ['\n\n\n '], '', '\n\n\n '],
[html.Element, 'span', 0, '\n ', '', ' '],
[html.Text, '\n', 1, ['\n'], '', '\n'],
]);
});
it('should not set the end source span for elements that are implicitly closed', () => {
expect(humanizeDomSourceSpans(parser.parse('', 'TestComp'))).toEqual([
[html.Element, 'div', 0, '', '', '
'],
[html.Element, 'p', 1, '', '
', null],
]);
expect(humanizeDomSourceSpans(parser.parse('
A B ', 'TestComp'))).toEqual([
[html.Element, 'div', 0, '
A B ', '', '
'],
[html.Element, 'li', 1, '', ' ', null],
[html.Text, 'A', 2, ['A'], 'A'],
[html.Element, 'li', 1, ' ', ' ', null],
[html.Text, 'B', 2, ['B'], 'B'],
]);
});
it('should support expansion form', () => {
expect(
humanizeDomSourceSpans(
parser.parse('{count, plural, =0 {msg}}
', 'TestComp', {
tokenizeExpansionForms: true,
}),
),
).toEqual([
[html.Element, 'div', 0, '{count, plural, =0 {msg}}
', '', '
'],
[html.Expansion, 'count', 'plural', 1, '{count, plural, =0 {msg}}'],
[html.ExpansionCase, '=0', 2, '=0 {msg}'],
]);
});
it('should not report a value span for an attribute without a value', () => {
const ast = parser.parse('
', 'TestComp');
expect((ast.rootNodes[0] as html.Element).attrs[0].valueSpan).toBeUndefined();
});
it('should report a value span for an attribute with a value', () => {
const ast = parser.parse('
', 'TestComp');
const attr = (ast.rootNodes[0] as html.Element).attrs[0];
expect(attr.valueSpan!.start.offset).toEqual(10);
expect(attr.valueSpan!.end.offset).toEqual(12);
});
it('should report a value span for an unquoted attribute value', () => {
const ast = parser.parse('
', 'TestComp');
const attr = (ast.rootNodes[0] as html.Element).attrs[0];
expect(attr.valueSpan!.start.offset).toEqual(9);
expect(attr.valueSpan!.end.offset).toEqual(11);
});
});
describe('visitor', () => {
it('should visit text nodes', () => {
const result = humanizeDom(parser.parse('text', 'TestComp'));
expect(result).toEqual([[html.Text, 'text', 0, ['text']]]);
});
it('should visit element nodes', () => {
const result = humanizeDom(parser.parse('
', 'TestComp'));
expect(result).toEqual([[html.Element, 'div', 0]]);
});
it('should visit attribute nodes', () => {
const result = humanizeDom(parser.parse('
', 'TestComp'));
expect(result).toContain([html.Attribute, 'id', 'foo', ['foo']]);
});
it('should visit all nodes', () => {
const result = parser.parse(
'a b
',
'TestComp',
);
const accumulator: html.Node[] = [];
const visitor = new (class implements html.Visitor {
visit(node: html.Node, context: any) {
accumulator.push(node);
}
visitElement(element: html.Element, context: any): any {
html.visitAll(this, element.attrs);
html.visitAll(this, element.directives);
html.visitAll(this, element.children);
}
visitAttribute(attribute: html.Attribute, context: any): any {}
visitText(text: html.Text, context: any): any {}
visitComment(comment: html.Comment, context: any): any {}
visitExpansion(expansion: html.Expansion, context: any): any {
html.visitAll(this, expansion.cases);
}
visitExpansionCase(expansionCase: html.ExpansionCase, context: any): any {}
visitBlock(block: html.Block, context: any) {
html.visitAll(this, block.parameters);
html.visitAll(this, block.children);
}
visitBlockParameter(parameter: html.BlockParameter, context: any) {}
visitLetDeclaration(decl: html.LetDeclaration, context: any) {}
visitComponent(component: html.Component, context: any) {
html.visitAll(this, component.attrs);
html.visitAll(this, component.directives);
html.visitAll(this, component.children);
}
visitDirective(directive: html.Directive, context: any) {
html.visitAll(this, directive.attrs);
}
})();
html.visitAll(visitor, result.rootNodes);
expect(accumulator.map((n) => n.constructor)).toEqual([
html.Element,
html.Attribute,
html.Element,
html.Attribute,
html.Text,
html.Element,
html.Text,
]);
});
it('should skip typed visit if visit() returns a truthy value', () => {
const visitor = new (class implements html.Visitor {
visit(node: html.Node, context: any) {
return true;
}
visitElement(element: html.Element, context: any): any {
throw Error('Unexpected');
}
visitAttribute(attribute: html.Attribute, context: any): any {
throw Error('Unexpected');
}
visitText(text: html.Text, context: any): any {
throw Error('Unexpected');
}
visitComment(comment: html.Comment, context: any): any {
throw Error('Unexpected');
}
visitExpansion(expansion: html.Expansion, context: any): any {
throw Error('Unexpected');
}
visitExpansionCase(expansionCase: html.ExpansionCase, context: any): any {
throw Error('Unexpected');
}
visitBlock(block: html.Block, context: any) {
throw Error('Unexpected');
}
visitBlockParameter(parameter: html.BlockParameter, context: any) {
throw Error('Unexpected');
}
visitLetDeclaration(decl: html.LetDeclaration, context: any) {
throw Error('Unexpected');
}
visitComponent(component: html.Component, context: any) {
throw Error('Unexpected');
}
visitDirective(directive: html.Directive, context: any) {
throw Error('Unexpected');
}
})();
const result = parser.parse('
', 'TestComp');
const traversal = html.visitAll(visitor, result.rootNodes);
expect(traversal).toEqual([true, true]);
});
});
describe('errors', () => {
it('should report unexpected closing tags', () => {
const errors = parser.parse('
', 'TestComp').errors;
expect(errors.length).toEqual(1);
expect(humanizeErrors(errors)).toEqual([
[
'p',
'Unexpected closing tag "p". It may happen when the tag has already been closed by another tag. For more info see https://www.w3.org/TR/html5/syntax.html#closing-elements-that-have-implied-end-tags',
'0:5',
],
]);
});
it('gets correct close tag for parent when a child is not closed', () => {
const {errors, rootNodes} = parser.parse('
', 'TestComp');
expect(errors.length).toEqual(1);
expect(humanizeErrors(errors)).toEqual([
[
'div',
'Unexpected closing tag "div". It may happen when the tag has already been closed by another tag. For more info see https://www.w3.org/TR/html5/syntax.html#closing-elements-that-have-implied-end-tags',
'0:11',
],
]);
expect(humanizeNodes(rootNodes, true)).toEqual([
[html.Element, 'div', 0, '
', '', '
'],
[html.Element, 'span', 1, '', '', null],
]);
});
describe('incomplete element tag', () => {
it('should parse and report incomplete tags after the tag name', () => {
const {errors, rootNodes} = parser.parse('', 'TestComp');
expect(humanizeNodes(rootNodes, true)).toEqual([
[html.Element, 'div', 0, '
', '
', ' '],
[html.Element, 'div', 1, '
{
const {errors, rootNodes} = parser.parse('
', 'TestComp');
expect(humanizeNodes(rootNodes, true)).toEqual([
[html.Element, 'div', 0, '
', '
', ' '],
]);
expect(humanizeErrors(errors)).toEqual([
['div', 'Opening tag "div" not terminated.', '0:0'],
]);
});
it('should parse and report incomplete tags after quote', () => {
const {errors, rootNodes} = parser.parse('
', 'TestComp');
expect(humanizeNodes(rootNodes, true)).toEqual([
[html.Element, 'div', 0, '
', '
', ' '],
]);
expect(humanizeErrors(errors)).toEqual([
['div', 'Opening tag "div" not terminated.', '0:0'],
]);
});
it('should report subsequent open tags without proper close tag', () => {
const errors = parser.parse('
', 'TestComp').errors;
expect(errors.length).toEqual(2);
expect(humanizeErrors(errors)).toEqual([
['div', 'Opening tag "div" not terminated.', '0:0'],
// TODO(ayazhafiz): the following error is unnecessary and can be pruned if we keep
// track of the incomplete tag names.
[
'div',
'Unexpected closing tag "div". It may happen when the tag has already been closed by another tag. For more info see https://www.w3.org/TR/html5/syntax.html#closing-elements-that-have-implied-end-tags',
'0:4',
],
]);
});
});
it('should report closing tag for void elements', () => {
const errors = parser.parse('
', 'TestComp').errors;
expect(errors.length).toEqual(1);
expect(humanizeErrors(errors)).toEqual([
['input', 'Void elements do not have end tags "input"', '0:7'],
]);
});
it('should report self closing html element', () => {
const errors = parser.parse('
', 'TestComp').errors;
expect(errors.length).toEqual(1);
expect(humanizeErrors(errors)).toEqual([
['p', 'Only void, custom and foreign elements can be self closed "p"', '0:0'],
]);
});
it('should not report self closing custom element', () => {
expect(parser.parse('
', 'TestComp').errors).toEqual([]);
});
it('should also report lexer errors', () => {
const errors = parser.parse('
', 'TestComp').errors;
expect(errors.length).toEqual(2);
expect(humanizeErrors(errors)).toEqual([
['Unexpected character "e"', '0:3'],
[
'p',
'Unexpected closing tag "p". It may happen when the tag has already been closed by another tag. For more info see https://www.w3.org/TR/html5/syntax.html#closing-elements-that-have-implied-end-tags',
'0:14',
],
]);
});
});
});
});
export function humanizeErrors(errors: ParseError[]): any[] {
return errors.map((e) => {
if (e instanceof TreeError) {
// Parser errors
return [
e.elementName, e.msg, humanizeLineColumn(e.span.start)];
}
// Tokenizer errors
return [e.msg, humanizeLineColumn(e.span.start)];
});
}