| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481 |
- import {
- baseParse as parse,
- NodeTypes,
- ElementNode,
- TextNode,
- ErrorCodes,
- ElementTypes,
- InterpolationNode,
- AttributeNode,
- ConstantTypes
- } from '@vue/compiler-core'
- import { parserOptions, DOMNamespaces } from '../src/parserOptions'
- describe('DOM parser', () => {
- describe('Text', () => {
- test('textarea handles comments/elements as just text', () => {
- const ast = parse(
- '<textarea>some<div>text</div>and<!--comment--></textarea>',
- parserOptions
- )
- const element = ast.children[0] as ElementNode
- const text = element.children[0] as TextNode
- expect(text).toStrictEqual({
- type: NodeTypes.TEXT,
- content: 'some<div>text</div>and<!--comment-->',
- loc: {
- start: { offset: 10, line: 1, column: 11 },
- end: { offset: 46, line: 1, column: 47 },
- source: 'some<div>text</div>and<!--comment-->'
- }
- })
- })
- test('textarea handles character references', () => {
- const ast = parse('<textarea>&</textarea>', parserOptions)
- const element = ast.children[0] as ElementNode
- const text = element.children[0] as TextNode
- expect(text).toStrictEqual({
- type: NodeTypes.TEXT,
- content: '&',
- loc: {
- start: { offset: 10, line: 1, column: 11 },
- end: { offset: 15, line: 1, column: 16 },
- source: '&'
- }
- })
- })
- test('textarea support interpolation', () => {
- const ast = parse('<textarea><div>{{ foo }}</textarea>', parserOptions)
- const element = ast.children[0] as ElementNode
- expect(element.children).toMatchObject([
- { type: NodeTypes.TEXT, content: `<div>` },
- {
- type: NodeTypes.INTERPOLATION,
- content: {
- type: NodeTypes.SIMPLE_EXPRESSION,
- content: `foo`,
- isStatic: false
- }
- }
- ])
- })
- test('style handles comments/elements as just a text', () => {
- const ast = parse(
- '<style>some<div>text</div>and<!--comment--></style>',
- parserOptions
- )
- const element = ast.children[0] as ElementNode
- const text = element.children[0] as TextNode
- expect(text).toStrictEqual({
- type: NodeTypes.TEXT,
- content: 'some<div>text</div>and<!--comment-->',
- loc: {
- start: { offset: 7, line: 1, column: 8 },
- end: { offset: 43, line: 1, column: 44 },
- source: 'some<div>text</div>and<!--comment-->'
- }
- })
- })
- test("style doesn't handle character references", () => {
- const ast = parse('<style>&</style>', parserOptions)
- const element = ast.children[0] as ElementNode
- const text = element.children[0] as TextNode
- expect(text).toStrictEqual({
- type: NodeTypes.TEXT,
- content: '&',
- loc: {
- start: { offset: 7, line: 1, column: 8 },
- end: { offset: 12, line: 1, column: 13 },
- source: '&'
- }
- })
- })
- test('CDATA', () => {
- const ast = parse('<svg><![CDATA[some text]]></svg>', parserOptions)
- const text = (ast.children[0] as ElementNode).children![0] as TextNode
- expect(text).toStrictEqual({
- type: NodeTypes.TEXT,
- content: 'some text',
- loc: {
- start: { offset: 14, line: 1, column: 15 },
- end: { offset: 23, line: 1, column: 24 },
- source: 'some text'
- }
- })
- })
- test('<pre> tag should preserve raw whitespace', () => {
- const rawText = ` \na <div>foo \n bar</div> \n c`
- const ast = parse(`<pre>${rawText}</pre>`, parserOptions)
- expect((ast.children[0] as ElementNode).children).toMatchObject([
- {
- type: NodeTypes.TEXT,
- content: ` \na `
- },
- {
- type: NodeTypes.ELEMENT,
- children: [
- {
- type: NodeTypes.TEXT,
- content: `foo \n bar`
- }
- ]
- },
- {
- type: NodeTypes.TEXT,
- content: ` \n c`
- }
- ])
- })
- // #908
- test('<pre> tag should remove leading newline', () => {
- const rawText = `\nhello<div>\nbye</div>`
- const ast = parse(`<pre>${rawText}</pre>`, parserOptions)
- expect((ast.children[0] as ElementNode).children).toMatchObject([
- {
- type: NodeTypes.TEXT,
- content: `hello`
- },
- {
- type: NodeTypes.ELEMENT,
- children: [
- {
- type: NodeTypes.TEXT,
- // should not remove the leading newline for nested elements
- content: `\nbye`
- }
- ]
- }
- ])
- })
- // #945
- test(' should not be condensed', () => {
- const nbsp = String.fromCharCode(160)
- const ast = parse(`foo bar`, parserOptions)
- expect(ast.children[0]).toMatchObject({
- type: NodeTypes.TEXT,
- content: `foo${nbsp}${nbsp}bar`
- })
- })
- // https://html.spec.whatwg.org/multipage/parsing.html#named-character-reference-state
- test('HTML entities compatibility in text', () => {
- const ast = parse('&ersand;', parserOptions)
- const text = ast.children[0] as TextNode
- expect(text).toStrictEqual({
- type: NodeTypes.TEXT,
- content: '&ersand;',
- loc: {
- start: { offset: 0, line: 1, column: 1 },
- end: { offset: 11, line: 1, column: 12 },
- source: '&ersand;'
- }
- })
- })
- // https://html.spec.whatwg.org/multipage/parsing.html#named-character-reference-state
- test('HTML entities compatibility in attribute', () => {
- const ast = parse(
- '<div a="&ersand;" b="&ersand;" c="&!"></div>',
- parserOptions
- )
- const element = ast.children[0] as ElementNode
- const text1 = (element.props[0] as AttributeNode).value
- const text2 = (element.props[1] as AttributeNode).value
- const text3 = (element.props[2] as AttributeNode).value
- expect(text1).toStrictEqual({
- type: NodeTypes.TEXT,
- content: '&ersand;',
- loc: {
- start: { offset: 7, line: 1, column: 8 },
- end: { offset: 20, line: 1, column: 21 },
- source: '"&ersand;"'
- }
- })
- expect(text2).toStrictEqual({
- type: NodeTypes.TEXT,
- content: '&ersand;',
- loc: {
- start: { offset: 23, line: 1, column: 24 },
- end: { offset: 37, line: 1, column: 38 },
- source: '"&ersand;"'
- }
- })
- expect(text3).toStrictEqual({
- type: NodeTypes.TEXT,
- content: '&!',
- loc: {
- start: { offset: 40, line: 1, column: 41 },
- end: { offset: 47, line: 1, column: 48 },
- source: '"&!"'
- }
- })
- })
- test('Some control character reference should be replaced.', () => {
- const ast = parse('†', parserOptions)
- const text = ast.children[0] as TextNode
- expect(text).toStrictEqual({
- type: NodeTypes.TEXT,
- content: '†',
- loc: {
- start: { offset: 0, line: 1, column: 1 },
- end: { offset: 6, line: 1, column: 7 },
- source: '†'
- }
- })
- })
- })
- describe('Interpolation', () => {
- test('HTML entities in interpolation should be translated for backward compatibility.', () => {
- const ast = parse('<div>{{ a < b }}</div>', parserOptions)
- const element = ast.children[0] as ElementNode
- const interpolation = element.children[0] as InterpolationNode
- expect(interpolation).toStrictEqual({
- type: NodeTypes.INTERPOLATION,
- content: {
- type: NodeTypes.SIMPLE_EXPRESSION,
- content: `a < b`,
- isStatic: false,
- constType: ConstantTypes.NOT_CONSTANT,
- loc: {
- start: { offset: 8, line: 1, column: 9 },
- end: { offset: 16, line: 1, column: 17 },
- source: 'a < b'
- }
- },
- loc: {
- start: { offset: 5, line: 1, column: 6 },
- end: { offset: 19, line: 1, column: 20 },
- source: '{{ a < b }}'
- }
- })
- })
- })
- describe('Element', () => {
- test('void element', () => {
- const ast = parse('<img>after', parserOptions)
- const element = ast.children[0] as ElementNode
- expect(element).toStrictEqual({
- type: NodeTypes.ELEMENT,
- ns: DOMNamespaces.HTML,
- tag: 'img',
- tagType: ElementTypes.ELEMENT,
- props: [],
- isSelfClosing: false,
- children: [],
- loc: {
- start: { offset: 0, line: 1, column: 1 },
- end: { offset: 5, line: 1, column: 6 },
- source: '<img>'
- },
- codegenNode: undefined
- })
- })
- test('native element', () => {
- const ast = parse('<div></div><comp></comp><Comp></Comp>', parserOptions)
- expect(ast.children[0]).toMatchObject({
- type: NodeTypes.ELEMENT,
- tag: 'div',
- tagType: ElementTypes.ELEMENT
- })
- expect(ast.children[1]).toMatchObject({
- type: NodeTypes.ELEMENT,
- tag: 'comp',
- tagType: ElementTypes.COMPONENT
- })
- expect(ast.children[2]).toMatchObject({
- type: NodeTypes.ELEMENT,
- tag: 'Comp',
- tagType: ElementTypes.COMPONENT
- })
- })
- test('Strict end tag detection for textarea.', () => {
- const ast = parse(
- '<textarea>hello</textarea</textarea0></texTArea a="<>">',
- {
- ...parserOptions,
- onError: err => {
- if (err.code !== ErrorCodes.END_TAG_WITH_ATTRIBUTES) {
- throw err
- }
- }
- }
- )
- const element = ast.children[0] as ElementNode
- const text = element.children[0] as TextNode
- expect(ast.children.length).toBe(1)
- expect(text).toStrictEqual({
- type: NodeTypes.TEXT,
- content: 'hello</textarea</textarea0>',
- loc: {
- start: { offset: 10, line: 1, column: 11 },
- end: { offset: 37, line: 1, column: 38 },
- source: 'hello</textarea</textarea0>'
- }
- })
- })
- })
- describe('Namespaces', () => {
- test('HTML namespace', () => {
- const ast = parse('<html>test</html>', parserOptions)
- const element = ast.children[0] as ElementNode
- expect(element.ns).toBe(DOMNamespaces.HTML)
- })
- test('SVG namespace', () => {
- const ast = parse('<svg>test</svg>', parserOptions)
- const element = ast.children[0] as ElementNode
- expect(element.ns).toBe(DOMNamespaces.SVG)
- })
- test('MATH_ML namespace', () => {
- const ast = parse('<math>test</math>', parserOptions)
- const element = ast.children[0] as ElementNode
- expect(element.ns).toBe(DOMNamespaces.MATH_ML)
- })
- test('SVG in MATH_ML namespace', () => {
- const ast = parse(
- '<math><annotation-xml><svg></svg></annotation-xml></math>',
- parserOptions
- )
- const elementMath = ast.children[0] as ElementNode
- const elementAnnotation = elementMath.children[0] as ElementNode
- const elementSvg = elementAnnotation.children[0] as ElementNode
- expect(elementMath.ns).toBe(DOMNamespaces.MATH_ML)
- expect(elementSvg.ns).toBe(DOMNamespaces.SVG)
- })
- test('html text/html in MATH_ML namespace', () => {
- const ast = parse(
- '<math><annotation-xml encoding="text/html"><test/></annotation-xml></math>',
- parserOptions
- )
- const elementMath = ast.children[0] as ElementNode
- const elementAnnotation = elementMath.children[0] as ElementNode
- const element = elementAnnotation.children[0] as ElementNode
- expect(elementMath.ns).toBe(DOMNamespaces.MATH_ML)
- expect(element.ns).toBe(DOMNamespaces.HTML)
- })
- test('html application/xhtml+xml in MATH_ML namespace', () => {
- const ast = parse(
- '<math><annotation-xml encoding="application/xhtml+xml"><test/></annotation-xml></math>',
- parserOptions
- )
- const elementMath = ast.children[0] as ElementNode
- const elementAnnotation = elementMath.children[0] as ElementNode
- const element = elementAnnotation.children[0] as ElementNode
- expect(elementMath.ns).toBe(DOMNamespaces.MATH_ML)
- expect(element.ns).toBe(DOMNamespaces.HTML)
- })
- test('mtext malignmark in MATH_ML namespace', () => {
- const ast = parse(
- '<math><mtext><malignmark/></mtext></math>',
- parserOptions
- )
- const elementMath = ast.children[0] as ElementNode
- const elementText = elementMath.children[0] as ElementNode
- const element = elementText.children[0] as ElementNode
- expect(elementMath.ns).toBe(DOMNamespaces.MATH_ML)
- expect(element.ns).toBe(DOMNamespaces.MATH_ML)
- })
- test('mtext and not malignmark tag in MATH_ML namespace', () => {
- const ast = parse('<math><mtext><test/></mtext></math>', parserOptions)
- const elementMath = ast.children[0] as ElementNode
- const elementText = elementMath.children[0] as ElementNode
- const element = elementText.children[0] as ElementNode
- expect(elementMath.ns).toBe(DOMNamespaces.MATH_ML)
- expect(element.ns).toBe(DOMNamespaces.HTML)
- })
- test('foreignObject tag in SVG namespace', () => {
- const ast = parse(
- '<svg><foreignObject><test/></foreignObject></svg>',
- parserOptions
- )
- const elementSvg = ast.children[0] as ElementNode
- const elementForeignObject = elementSvg.children[0] as ElementNode
- const element = elementForeignObject.children[0] as ElementNode
- expect(elementSvg.ns).toBe(DOMNamespaces.SVG)
- expect(element.ns).toBe(DOMNamespaces.HTML)
- })
- test('desc tag in SVG namespace', () => {
- const ast = parse('<svg><desc><test/></desc></svg>', parserOptions)
- const elementSvg = ast.children[0] as ElementNode
- const elementDesc = elementSvg.children[0] as ElementNode
- const element = elementDesc.children[0] as ElementNode
- expect(elementSvg.ns).toBe(DOMNamespaces.SVG)
- expect(element.ns).toBe(DOMNamespaces.HTML)
- })
- test('title tag in SVG namespace', () => {
- const ast = parse('<svg><title><test/></title></svg>', parserOptions)
- const elementSvg = ast.children[0] as ElementNode
- const elementTitle = elementSvg.children[0] as ElementNode
- const element = elementTitle.children[0] as ElementNode
- expect(elementSvg.ns).toBe(DOMNamespaces.SVG)
- expect(element.ns).toBe(DOMNamespaces.HTML)
- })
- test('SVG in HTML namespace', () => {
- const ast = parse('<html><svg></svg></html>', parserOptions)
- const elementHtml = ast.children[0] as ElementNode
- const element = elementHtml.children[0] as ElementNode
- expect(elementHtml.ns).toBe(DOMNamespaces.HTML)
- expect(element.ns).toBe(DOMNamespaces.SVG)
- })
- test('MATH in HTML namespace', () => {
- const ast = parse('<html><math></math></html>', parserOptions)
- const elementHtml = ast.children[0] as ElementNode
- const element = elementHtml.children[0] as ElementNode
- expect(elementHtml.ns).toBe(DOMNamespaces.HTML)
- expect(element.ns).toBe(DOMNamespaces.MATH_ML)
- })
- })
- })
|