/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ 'use strict'; import {testTokenization} from './testRunner'; testTokenization('xml', [ // Complete Start Tag with Whitespace [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-person.xml' }, { startIndex: 7, type: 'delimiter.start.xml' } ]}], [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-person.xml' }, { startIndex: 8, type: 'delimiter.start.xml' } ]}], [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-person.xml' }, { startIndex: 7, type: '' }, { startIndex: 8, type: 'delimiter.start.xml' } ]}], [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-person.xml' }, { startIndex: 7, type: '' }, { startIndex: 8, type: 'tag.tag-person.xml' }, { startIndex: 9, type: 'delimiter.start.xml' } ]}], // Incomplete Start Tag [{ line: '<', tokens: [ { startIndex: 0, type: '' } ]}], [{ line: '', tokens: [ { startIndex: 0, type: '' } ]}], [{ line: 'i ', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-tool.xml' }, { startIndex: 5, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 10, type: '' }, { startIndex: 11, type: 'attribute.value.xml' }, { startIndex: 13, type: 'delimiter.start.xml' } ]}], [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-tool.xml' }, { startIndex: 5, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 10, type: '' }, { startIndex: 11, type: 'attribute.value.xml' }, { startIndex: 19, type: 'delimiter.start.xml' } ]}], [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-tool.xml' }, { startIndex: 5, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 10, type: '' }, { startIndex: 11, type: 'attribute.value.xml' }, { startIndex: 19, type: 'delimiter.start.xml' } ]}], // Tag with Attributes [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-tool.xml' }, { startIndex: 5, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 10, type: '' }, { startIndex: 11, type: 'attribute.value.xml' }, { startIndex: 19, type: '' }, { startIndex: 20, type: 'attribute.name.xml' }, { startIndex: 27, type: '' }, { startIndex: 28, type: 'attribute.value.xml' }, { startIndex: 33, type: 'delimiter.start.xml' } ]}], // Tag with Name-Only-Attribute [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-tool.xml' }, { startIndex: 5, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 10, type: 'delimiter.start.xml' } ]}], [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-tool.xml' }, { startIndex: 5, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 10, type: '' }, { startIndex: 11, type: 'attribute.name.xml' }, { startIndex: 18, type: 'delimiter.start.xml' } ]}], // Tag with Attribute And Whitespace [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-tool.xml' }, { startIndex: 5, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 10, type: '' }, { startIndex: 13, type: 'attribute.value.xml' }, { startIndex: 21, type: 'delimiter.start.xml' } ]}], [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-tool.xml' }, { startIndex: 5, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 10, type: '' }, { startIndex: 13, type: 'attribute.value.xml' }, { startIndex: 21, type: 'delimiter.start.xml' } ]}], // Tag with Invalid Attribute Name [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-tool.xml' }, { startIndex: 5, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 10, type: '' }, { startIndex: 15, type: 'attribute.name.xml' }, { startIndex: 18, type: '' }, { startIndex: 19, type: 'delimiter.start.xml' } ]}], // Tag with Invalid Attribute Value [{ line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 2, type: 'metatag.instruction.xml' }, { startIndex: 5, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 13, type: '' }, { startIndex: 14, type: 'attribute.value.xml' }, { startIndex: 19, type: 'delimiter.start.xml' } ]}, { line: '', tokens: [ { startIndex: 0, type: 'delimiter.start.xml' }, { startIndex: 1, type: 'tag.tag-configuration.xml' }, { startIndex: 14, type: '' }, { startIndex: 15, type: 'attribute.name.xml' }, { startIndex: 24, type: '' }, { startIndex: 25, type: 'attribute.value.xml' }, { startIndex: 78, type: 'delimiter.start.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 2, type: 'delimiter.start.xml' }, { startIndex: 3, type: 'tag.tag-connectionstrings.xml' }, { startIndex: 20, type: 'delimiter.start.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 19, type: '' }, { startIndex: 20, type: 'attribute.value.xml' }, { startIndex: 35, type: '' }, { startIndex: 36, type: 'attribute.name.xml' }, { startIndex: 47, type: '' }, { startIndex: 48, type: 'attribute.value.xml' }, { startIndex: 61, type: 'tag.tag-add.xml' }, { startIndex: 62, type: 'delimiter.start.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 2, type: 'delimiter.end.xml' }, { startIndex: 4, type: 'tag.tag-connectionstrings.xml' }, { startIndex: 21, type: 'delimiter.end.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 2, type: 'delimiter.start.xml' }, { startIndex: 3, type: 'tag.tag-system.web.xml' }, { startIndex: 13, type: 'delimiter.start.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 6, type: 'attribute.name.xml' }, { startIndex: 10, type: '' }, { startIndex: 11, type: 'attribute.value.xml' }, { startIndex: 23, type: '' }, { startIndex: 24, type: 'attribute.name.xml' }, { startIndex: 37, type: '' }, { startIndex: 38, type: 'attribute.value.xml' }, { startIndex: 47, type: 'delimiter.start.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 6, type: 'delimiter.start.xml' }, { startIndex: 7, type: 'tag.tag-error.xml' }, { startIndex: 12, type: '' }, { startIndex: 13, type: 'attribute.name.xml' }, { startIndex: 23, type: '' }, { startIndex: 24, type: 'attribute.value.xml' }, { startIndex: 29, type: '' }, { startIndex: 30, type: 'attribute.name.xml' }, { startIndex: 38, type: '' }, { startIndex: 39, type: 'attribute.value.xml' }, { startIndex: 58, type: 'tag.tag-error.xml' }, { startIndex: 59, type: 'delimiter.start.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 4, type: 'delimiter.end.xml' }, { startIndex: 6, type: 'tag.tag-customerrors.xml' }, { startIndex: 18, type: 'delimiter.end.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 2, type: 'delimiter.end.xml' }, { startIndex: 4, type: 'tag.tag-system.web.xml' }, { startIndex: 14, type: 'delimiter.end.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 1, type: 'comment.xml' }, { startIndex: 5, type: 'comment.content.xml' }, { startIndex: 60, type: 'comment.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: 'comment.content.xml' }, { startIndex: 5, type: 'comment.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 1, type: 'delimiter.start.xml' }, { startIndex: 3, type: 'metatag.declaration.xml' }, { startIndex: 10, type: '' }, { startIndex: 11, type: 'attribute.name.xml' }, { startIndex: 18, type: '' }, { startIndex: 19, type: 'attribute.name.xml' }, { startIndex: 23, type: '' }, { startIndex: 24, type: 'attribute.name.xml' }, { startIndex: 27, type: 'delimiter.start.xml' } ]}, { line: ' ]]>', tokens: [ { startIndex: 0, type: '' }, { startIndex: 1, type: 'delimiter.start.xml' }, { startIndex: 2, type: 'tag.tag-tools.xml' }, { startIndex: 7, type: 'delimiter.start.xml' }, { startIndex: 8, type: 'delimiter.cdata.xml' }, { startIndex: 17, type: '' }, { startIndex: 45, type: 'delimiter.cdata.xml' }, { startIndex: 48, type: 'delimiter.end.xml' }, { startIndex: 50, type: 'tag.tag-tools.xml' }, { startIndex: 55, type: 'delimiter.end.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 1, type: 'delimiter.start.xml' }, { startIndex: 2, type: 'tag.tag-aselfclosingtag.xml' }, { startIndex: 17, type: '' }, { startIndex: 18, type: 'attribute.name.xml' }, { startIndex: 22, type: '' }, { startIndex: 23, type: 'attribute.value.xml' }, { startIndex: 34, type: '' }, { startIndex: 35, type: 'tag.tag-aselfclosingtag.xml' }, { startIndex: 36, type: 'delimiter.start.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 1, type: 'delimiter.start.xml' }, { startIndex: 2, type: 'tag.tag-aselfclosingtag.xml' }, { startIndex: 17, type: '' }, { startIndex: 18, type: 'attribute.name.xml' }, { startIndex: 22, type: '' }, { startIndex: 23, type: 'attribute.value.xml' }, { startIndex: 34, type: 'tag.tag-aselfclosingtag.xml' }, { startIndex: 35, type: 'delimiter.start.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 1, type: 'delimiter.start.xml' }, { startIndex: 2, type: 'tag.tag-namespace:aselfclosingtag.xml' }, { startIndex: 27, type: '' }, { startIndex: 28, type: 'attribute.name.xml' }, { startIndex: 43, type: '' }, { startIndex: 44, type: 'attribute.value.xml' }, { startIndex: 55, type: 'tag.tag-namespace:aselfclosingtag.xml' }, { startIndex: 56, type: 'delimiter.start.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 1, type: 'delimiter.start.xml' }, { startIndex: 2, type: 'tag.tag-valid-name.xml' }, { startIndex: 12, type: '' }, { startIndex: 13, type: 'attribute.name.xml' }, { startIndex: 23, type: '' }, { startIndex: 24, type: 'attribute.name.xml' }, { startIndex: 32, type: '' }, { startIndex: 33, type: 'attribute.value.xml' }, { startIndex: 47, type: 'tag.tag-valid-name.xml' }, { startIndex: 48, type: 'delimiter.start.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 1, type: 'delimiter.start.xml' }, { startIndex: 2, type: 'tag.tag-asimpleselfclosingtag.xml' }, { startIndex: 23, type: '' }, { startIndex: 24, type: 'tag.tag-asimpleselfclosingtag.xml' }, { startIndex: 25, type: 'delimiter.start.xml' } ]}, { line: ' ', tokens: [ { startIndex: 0, type: '' }, { startIndex: 1, type: 'delimiter.start.xml' }, { startIndex: 2, type: 'tag.tag-asimpleselfclosingtag.xml' }, { startIndex: 24, type: 'delimiter.start.xml' } ]}, { line: '', tokens: [ { startIndex: 0, type: 'delimiter.end.xml' }, { startIndex: 2, type: 'tag.tag-configuration.xml' }, { startIndex: 15, type: 'delimiter.end.xml' } ]}] ]);