| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- import {
- parse,
- NodeTypes,
- ElementNode,
- TextNode,
- ErrorCodes,
- ElementTypes,
- InterpolationNode
- } from '@vue/compiler-core'
- import {
- parserOptionsMinimal as parserOptions,
- DOMNamespaces
- } from '../src/parserOptionsMinimal'
- 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-->',
- isEmpty: false,
- 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: '&',
- isEmpty: false,
- loc: {
- start: { offset: 10, line: 1, column: 11 },
- end: { offset: 15, line: 1, column: 16 },
- source: '&'
- }
- })
- })
- 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-->',
- isEmpty: false,
- 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: '&',
- isEmpty: false,
- 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',
- isEmpty: false,
- loc: {
- start: { offset: 14, line: 1, column: 15 },
- end: { offset: 23, line: 1, column: 24 },
- source: 'some text'
- }
- })
- })
- })
- 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,
- 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>',
- isEmpty: false,
- loc: {
- start: { offset: 10, line: 1, column: 11 },
- end: { offset: 37, line: 1, column: 38 },
- source: 'hello</textarea</textarea0>'
- }
- })
- })
- })
- })
|