| 
									
										
										
										
											2016-06-23 09:47:54 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-09 14:53:03 -07:00
										 |  |  | import {HtmlAttrAst, HtmlCommentAst, HtmlElementAst, HtmlExpansionAst, HtmlExpansionCaseAst, HtmlTextAst} from '@angular/compiler/src/html_ast'; | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {HtmlTokenType} from '@angular/compiler/src/html_lexer'; | 
					
						
							| 
									
										
										
										
											2016-06-09 14:53:03 -07:00
										 |  |  | import {HtmlParseTreeResult, HtmlParser, HtmlTreeError} from '@angular/compiler/src/html_parser'; | 
					
						
							| 
									
										
										
										
											2016-06-09 13:48:53 -07:00
										 |  |  | import {ParseError} from '@angular/compiler/src/parse_util'; | 
					
						
							| 
									
										
										
										
											2016-06-15 09:37:33 -07:00
										 |  |  | import {afterEach, beforeEach, ddescribe, describe, expect, iit, it, xit} from '@angular/core/testing/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-06-09 14:53:03 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-23 13:43:28 -07:00
										 |  |  | import {humanizeDom, humanizeDomSourceSpans, humanizeLineColumn} from './html_ast_spec_utils'; | 
					
						
							| 
									
										
										
										
											2015-08-25 15:36:02 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							| 
									
										
										
										
											2015-10-07 09:34:21 -07:00
										 |  |  |   describe('HtmlParser', () => { | 
					
						
							| 
									
										
										
										
											2015-08-25 15:36:02 -07:00
										 |  |  |     var parser: HtmlParser; | 
					
						
							|  |  |  |     beforeEach(() => { parser = new HtmlParser(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-07 09:34:21 -07:00
										 |  |  |     describe('parse', () => { | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |       describe('text nodes', () => { | 
					
						
							|  |  |  |         it('should parse root level text nodes', () => { | 
					
						
							| 
									
										
										
										
											2015-12-01 13:01:05 -08:00
										 |  |  |           expect(humanizeDom(parser.parse('a', 'TestComp'))).toEqual([[HtmlTextAst, 'a', 0]]); | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should parse text nodes inside regular elements', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<div>a</div>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'div', 0], [HtmlTextAst, 'a', 1] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-08-25 15:36:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |         it('should parse text nodes inside template elements', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<template>a</template>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'template', 0], [HtmlTextAst, 'a', 1] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should parse CDATA', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<![CDATA[text]]>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlTextAst, 'text', 0] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-08-25 15:36:02 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |       describe('elements', () => { | 
					
						
							|  |  |  |         it('should parse root level elements', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<div></div>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'div', 0] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should parse elements inside of regular elements', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<div><span></span></div>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'div', 0], [HtmlElementAst, 'span', 1] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should parse elements inside of template elements', () => { | 
					
						
							|  |  |  |           expect(humanizeDom(parser.parse('<template><span></span></template>', 'TestComp'))) | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |               .toEqual([[HtmlElementAst, 'template', 0], [HtmlElementAst, 'span', 1]]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should support void elements', () => { | 
					
						
							|  |  |  |           expect(humanizeDom(parser.parse('<link rel="author license" href="/about">', 'TestComp'))) | 
					
						
							|  |  |  |               .toEqual([ | 
					
						
							|  |  |  |                 [HtmlElementAst, 'link', 0], | 
					
						
							|  |  |  |                 [HtmlAttrAst, 'rel', 'author license'], | 
					
						
							|  |  |  |                 [HtmlAttrAst, 'href', '/about'], | 
					
						
							|  |  |  |               ]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-07 18:06:03 +01:00
										 |  |  |         it('should not error on void elements from HTML5 spec', | 
					
						
							|  |  |  |            () => {  // http://www.w3.org/TR/html-markup/syntax.html#syntax-elements without:
 | 
					
						
							|  |  |  |              // <base> - it can be present in head only
 | 
					
						
							|  |  |  |              // <meta> - it can be present in head only
 | 
					
						
							|  |  |  |              // <command> - obsolete
 | 
					
						
							|  |  |  |              // <keygen> - obsolete
 | 
					
						
							|  |  |  |              ['<map><area></map>', '<div><br></div>', '<colgroup><col></colgroup>', | 
					
						
							|  |  |  |               '<div><embed></div>', '<div><hr></div>', '<div><img></div>', '<div><input></div>', | 
					
						
							|  |  |  |               '<object><param>/<object>', '<audio><source></audio>', '<audio><track></audio>', | 
					
						
							|  |  |  |               '<p><wbr></p>', | 
					
						
							|  |  |  |              ].forEach((html) => { expect(parser.parse(html, 'TestComp').errors).toEqual([]); }); | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-01 13:01:05 -08:00
										 |  |  |         it('should close void elements on text nodes', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<p>before<br>after</p>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'p', 0], | 
					
						
							|  |  |  |             [HtmlTextAst, 'before', 1], | 
					
						
							|  |  |  |             [HtmlElementAst, 'br', 1], | 
					
						
							|  |  |  |             [HtmlTextAst, 'after', 1], | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-12-01 13:01:05 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         it('should support optional end tags', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<div><p>1<p>2</div>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'div', 0], | 
					
						
							|  |  |  |             [HtmlElementAst, 'p', 1], | 
					
						
							|  |  |  |             [HtmlTextAst, '1', 2], | 
					
						
							|  |  |  |             [HtmlElementAst, 'p', 1], | 
					
						
							|  |  |  |             [HtmlTextAst, '2', 2], | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should support nested elements', () => { | 
					
						
							|  |  |  |           expect(humanizeDom(parser.parse('<ul><li><ul><li></li></ul></li></ul>', 'TestComp'))) | 
					
						
							|  |  |  |               .toEqual([ | 
					
						
							|  |  |  |                 [HtmlElementAst, 'ul', 0], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'li', 1], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'ul', 2], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'li', 3], | 
					
						
							|  |  |  |               ]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should add the requiredParent', () => { | 
					
						
							| 
									
										
										
										
											2015-11-20 13:13:48 -08:00
										 |  |  |           expect( | 
					
						
							|  |  |  |               humanizeDom(parser.parse( | 
					
						
							|  |  |  |                   '<table><thead><tr head></tr></thead><tr noparent></tr><tbody><tr body></tr></tbody><tfoot><tr foot></tr></tfoot></table>', | 
					
						
							|  |  |  |                   'TestComp'))) | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |               .toEqual([ | 
					
						
							| 
									
										
										
										
											2016-06-15 09:37:33 -07:00
										 |  |  |                 [HtmlElementAst, 'table', 0], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'thead', 1], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'tr', 2], | 
					
						
							|  |  |  |                 [HtmlAttrAst, 'head', ''], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'tbody', 1], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'tr', 2], | 
					
						
							|  |  |  |                 [HtmlAttrAst, 'noparent', ''], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'tbody', 1], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'tr', 2], | 
					
						
							|  |  |  |                 [HtmlAttrAst, 'body', ''], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'tfoot', 1], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'tr', 2], | 
					
						
							|  |  |  |                 [HtmlAttrAst, 'foot', ''], | 
					
						
							|  |  |  |               ]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should append the required parent considering ng-container', () => { | 
					
						
							|  |  |  |           expect(humanizeDom(parser.parse( | 
					
						
							|  |  |  |                      '<table><ng-container><tr></tr></ng-container></table>', 'TestComp'))) | 
					
						
							|  |  |  |               .toEqual([ | 
					
						
							|  |  |  |                 [HtmlElementAst, 'table', 0], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'tbody', 1], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'ng-container', 2], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'tr', 3], | 
					
						
							|  |  |  |               ]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should special case ng-container when adding a required parent', () => { | 
					
						
							|  |  |  |           expect(humanizeDom(parser.parse( | 
					
						
							|  |  |  |                      '<table><thead><ng-container><tr></tr></ng-container></thead></table>', | 
					
						
							|  |  |  |                      'TestComp'))) | 
					
						
							|  |  |  |               .toEqual([ | 
					
						
							|  |  |  |                 [HtmlElementAst, 'table', 0], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'thead', 1], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'ng-container', 2], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'tr', 3], | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |               ]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-07 09:41:01 -08:00
										 |  |  |         it('should not add the requiredParent when the parent is a template', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<template><tr></tr></template>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'template', 0], | 
					
						
							|  |  |  |             [HtmlElementAst, 'tr', 1], | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-12-07 09:41:01 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-15 09:45:19 -07:00
										 |  |  |         // https://github.com/angular/angular/issues/5967
 | 
					
						
							|  |  |  |         it('should not add the requiredParent to a template root element', () => { | 
					
						
							|  |  |  |           expect(humanizeDom(parser.parse('<tr></tr>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'tr', 0], | 
					
						
							|  |  |  |           ]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         it('should support explicit mamespace', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<myns:div></myns:div>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, ':myns:div', 0] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should support implicit mamespace', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<svg></svg>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, ':svg:svg', 0] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should propagate the namespace', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<myns:div><p></p></myns:div>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, ':myns:div', 0], [HtmlElementAst, ':myns:p', 1] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-23 16:02:19 -08:00
										 |  |  |         it('should match closing tags case sensitive', () => { | 
					
						
							|  |  |  |           let errors = parser.parse('<DiV><P></p></dIv>', 'TestComp').errors; | 
					
						
							|  |  |  |           expect(errors.length).toEqual(2); | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeErrors(errors)).toEqual([ | 
					
						
							|  |  |  |             ['p', 'Unexpected closing tag "p"', '0:8'], | 
					
						
							|  |  |  |             ['dIv', 'Unexpected closing tag "dIv"', '0:12'], | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-12-03 16:10:20 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it('should support self closing void elements', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<input />', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'input', 0] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-12-03 16:10:20 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should support self closing foreign elements', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<math />', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, ':math:math', 0] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-12-03 16:10:20 -08:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-12-05 00:15:18 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it('should ignore LF immediately after textarea, pre and listing', () => { | 
					
						
							|  |  |  |           expect(humanizeDom(parser.parse( | 
					
						
							|  |  |  |                      '<p>\n</p><textarea>\n</textarea><pre>\n\n</pre><listing>\n\n</listing>', | 
					
						
							|  |  |  |                      'TestComp'))) | 
					
						
							|  |  |  |               .toEqual([ | 
					
						
							|  |  |  |                 [HtmlElementAst, 'p', 0], | 
					
						
							|  |  |  |                 [HtmlTextAst, '\n', 1], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'textarea', 0], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'pre', 0], | 
					
						
							|  |  |  |                 [HtmlTextAst, '\n', 1], | 
					
						
							|  |  |  |                 [HtmlElementAst, 'listing', 0], | 
					
						
							|  |  |  |                 [HtmlTextAst, '\n', 1], | 
					
						
							|  |  |  |               ]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-25 15:36:02 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |       describe('attributes', () => { | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         it('should parse attributes on regular elements case sensitive', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<div kEy="v" key2=v2></div>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'div', 0], | 
					
						
							|  |  |  |             [HtmlAttrAst, 'kEy', 'v'], | 
					
						
							|  |  |  |             [HtmlAttrAst, 'key2', 'v2'], | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-07 09:34:21 -07:00
										 |  |  |         it('should parse attributes without values', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<div k></div>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'div', 0], [HtmlAttrAst, 'k', ''] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-10-07 09:34:21 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-06 11:31:03 -08:00
										 |  |  |         it('should parse attributes on svg elements case sensitive', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<svg viewBox="0"></svg>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, ':svg:svg', 0], [HtmlAttrAst, 'viewBox', '0'] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-10-14 18:04:38 +02:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |         it('should parse attributes on template elements', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<template k="v"></template>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'template', 0], [HtmlAttrAst, 'k', 'v'] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-09-11 13:35:46 -07:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-08-25 15:36:02 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 11:46:39 -07:00
										 |  |  |         it('should support namespace', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<svg:use xlink:href="Port" />', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, ':svg:use', 0], [HtmlAttrAst, ':xlink:href', 'Port'] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('comments', () => { | 
					
						
							| 
									
										
										
										
											2016-03-06 20:21:20 -08:00
										 |  |  |         it('should preserve comments', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(parser.parse('<!-- comment --><div></div>', 'TestComp'))).toEqual([ | 
					
						
							|  |  |  |             [HtmlCommentAst, 'comment', 0], [HtmlElementAst, 'div', 0] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       describe('expansion forms', () => { | 
					
						
							|  |  |  |         it('should parse out expansion forms', () => { | 
					
						
							|  |  |  |           let parsed = parser.parse( | 
					
						
							|  |  |  |               `<div>before{messages.length, plural, =0 {You have <b>no</b> messages} =1 {One {{message}}}}after</div>`, | 
					
						
							|  |  |  |               'TestComp', true); | 
					
						
							| 
									
										
										
										
											2016-04-12 11:46:39 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-09 14:53:03 -07:00
										 |  |  |           expect(humanizeDom(parsed)).toEqual([ | 
					
						
							|  |  |  |             [HtmlElementAst, 'div', 0], | 
					
						
							|  |  |  |             [HtmlTextAst, 'before', 1], | 
					
						
							| 
									
										
										
										
											2016-06-14 17:50:23 -07:00
										 |  |  |             [HtmlExpansionAst, 'messages.length', 'plural', 1], | 
					
						
							|  |  |  |             [HtmlExpansionCaseAst, '=0', 2], | 
					
						
							|  |  |  |             [HtmlExpansionCaseAst, '=1', 2], | 
					
						
							| 
									
										
										
										
											2016-06-09 14:53:03 -07:00
										 |  |  |             [HtmlTextAst, 'after', 1], | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2016-04-12 11:46:39 -07:00
										 |  |  |           let cases = (<any>parsed.rootNodes[0]).children[1].cases; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(new HtmlParseTreeResult(cases[0].expression, []))).toEqual([ | 
					
						
							|  |  |  |             [HtmlTextAst, 'You have ', 0], | 
					
						
							|  |  |  |             [HtmlElementAst, 'b', 0], | 
					
						
							|  |  |  |             [HtmlTextAst, 'no', 1], | 
					
						
							|  |  |  |             [HtmlTextAst, ' messages', 0], | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2016-04-12 11:46:39 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeDom(new HtmlParseTreeResult(cases[1].expression, [ | 
					
						
							|  |  |  |           ]))).toEqual([[HtmlTextAst, 'One {{message}}', 0]]); | 
					
						
							| 
									
										
										
										
											2016-04-12 11:46:39 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |         it('should parse out nested expansion forms', () => { | 
					
						
							|  |  |  |           let parsed = parser.parse( | 
					
						
							|  |  |  |               `{messages.length, plural, =0 { {p.gender, gender, =m {m}} }}`, 'TestComp', true); | 
					
						
							| 
									
										
										
										
											2016-06-09 14:53:03 -07:00
										 |  |  |           expect(humanizeDom(parsed)).toEqual([ | 
					
						
							| 
									
										
										
										
											2016-06-14 17:50:23 -07:00
										 |  |  |             [HtmlExpansionAst, 'messages.length', 'plural', 0], | 
					
						
							|  |  |  |             [HtmlExpansionCaseAst, '=0', 1], | 
					
						
							| 
									
										
										
										
											2016-06-09 14:53:03 -07:00
										 |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2016-04-13 16:01:25 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |           let firstCase = (<any>parsed.rootNodes[0]).cases[0]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-09 14:53:03 -07:00
										 |  |  |           expect(humanizeDom(new HtmlParseTreeResult(firstCase.expression, []))).toEqual([ | 
					
						
							| 
									
										
										
										
											2016-06-14 17:50:23 -07:00
										 |  |  |             [HtmlExpansionAst, 'p.gender', 'gender', 0], | 
					
						
							|  |  |  |             [HtmlExpansionCaseAst, '=m', 1], | 
					
						
							| 
									
										
										
										
											2016-06-09 14:53:03 -07:00
										 |  |  |             [HtmlTextAst, ' ', 0], | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2016-04-13 16:01:25 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |         it('should error when expansion form is not closed', () => { | 
					
						
							| 
									
										
										
										
											2016-04-12 11:46:39 -07:00
										 |  |  |           let p = parser.parse(`{messages.length, plural, =0 {one}`, 'TestComp', true); | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeErrors(p.errors)).toEqual([ | 
					
						
							|  |  |  |             [null, 'Invalid expansion form. Missing \'}\'.', '0:34'] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2016-04-12 11:46:39 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |         it('should error when expansion case is not closed', () => { | 
					
						
							| 
									
										
										
										
											2016-04-12 11:46:39 -07:00
										 |  |  |           let p = parser.parse(`{messages.length, plural, =0 {one`, 'TestComp', true); | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeErrors(p.errors)).toEqual([ | 
					
						
							|  |  |  |             [null, 'Invalid expansion form. Missing \'}\'.', '0:29'] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2016-04-12 11:46:39 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |         it('should error when invalid html in the case', () => { | 
					
						
							| 
									
										
										
										
											2016-04-12 11:46:39 -07:00
										 |  |  |           let p = parser.parse(`{messages.length, plural, =0 {<b/>}`, 'TestComp', true); | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeErrors(p.errors)).toEqual([ | 
					
						
							|  |  |  |             ['b', 'Only void and foreign elements can be self closed "b"', '0:30'] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2016-04-12 11:46:39 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |       describe('source spans', () => { | 
					
						
							|  |  |  |         it('should store the location', () => { | 
					
						
							|  |  |  |           expect(humanizeDomSourceSpans(parser.parse( | 
					
						
							|  |  |  |                      '<div [prop]="v1" (e)="do()" attr="v2" noValue>\na\n</div>', 'TestComp'))) | 
					
						
							|  |  |  |               .toEqual([ | 
					
						
							|  |  |  |                 [HtmlElementAst, 'div', 0, '<div [prop]="v1" (e)="do()" attr="v2" noValue>'], | 
					
						
							|  |  |  |                 [HtmlAttrAst, '[prop]', 'v1', '[prop]="v1"'], | 
					
						
							|  |  |  |                 [HtmlAttrAst, '(e)', 'do()', '(e)="do()"'], | 
					
						
							|  |  |  |                 [HtmlAttrAst, 'attr', 'v2', 'attr="v2"'], | 
					
						
							|  |  |  |                 [HtmlAttrAst, 'noValue', '', 'noValue'], | 
					
						
							| 
									
										
										
										
											2015-12-01 13:01:05 -08:00
										 |  |  |                 [HtmlTextAst, '\na\n', 1, '\na\n'], | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |               ]); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-03-23 13:43:28 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it('should set the start and end source spans', () => { | 
					
						
							|  |  |  |           let node = <HtmlElementAst>parser.parse('<div>a</div>', '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); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('errors', () => { | 
					
						
							|  |  |  |         it('should report unexpected closing tags', () => { | 
					
						
							|  |  |  |           let errors = parser.parse('<div></p></div>', 'TestComp').errors; | 
					
						
							|  |  |  |           expect(errors.length).toEqual(1); | 
					
						
							|  |  |  |           expect(humanizeErrors(errors)).toEqual([['p', 'Unexpected closing tag "p"', '0:5']]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-03 19:49:17 +02:00
										 |  |  |         it('should report subsequent open tags without proper close tag', () => { | 
					
						
							|  |  |  |           let errors = parser.parse('<div</div>', 'TestComp').errors; | 
					
						
							|  |  |  |           expect(errors.length).toEqual(1); | 
					
						
							|  |  |  |           expect(humanizeErrors(errors)).toEqual([['div', 'Unexpected closing tag "div"', '0:4']]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-03 15:53:44 -08:00
										 |  |  |         it('should report closing tag for void elements', () => { | 
					
						
							|  |  |  |           let errors = parser.parse('<input></input>', 'TestComp').errors; | 
					
						
							| 
									
										
										
										
											2015-12-02 10:11:01 -08:00
										 |  |  |           expect(errors.length).toEqual(1); | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeErrors(errors)).toEqual([ | 
					
						
							|  |  |  |             ['input', 'Void elements do not have end tags "input"', '0:7'] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-12-02 10:11:01 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-03 16:10:20 -08:00
										 |  |  |         it('should report self closing html element', () => { | 
					
						
							|  |  |  |           let errors = parser.parse('<p />', 'TestComp').errors; | 
					
						
							|  |  |  |           expect(errors.length).toEqual(1); | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeErrors(errors)).toEqual([ | 
					
						
							|  |  |  |             ['p', 'Only void and foreign elements can be self closed "p"', '0:0'] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-12-03 16:10:20 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should report self closing custom element', () => { | 
					
						
							|  |  |  |           let errors = parser.parse('<my-cmp />', 'TestComp').errors; | 
					
						
							|  |  |  |           expect(errors.length).toEqual(1); | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeErrors(errors)).toEqual([ | 
					
						
							|  |  |  |             ['my-cmp', 'Only void and foreign elements can be self closed "my-cmp"', '0:0'] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-12-03 16:10:20 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         it('should also report lexer errors', () => { | 
					
						
							|  |  |  |           let errors = parser.parse('<!-err--><div></p></div>', 'TestComp').errors; | 
					
						
							|  |  |  |           expect(errors.length).toEqual(2); | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           expect(humanizeErrors(errors)).toEqual([ | 
					
						
							|  |  |  |             [HtmlTokenType.COMMENT_START, 'Unexpected character "e"', '0:3'], | 
					
						
							|  |  |  |             ['p', 'Unexpected closing tag "p"', '0:14'] | 
					
						
							|  |  |  |           ]); | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-08-25 15:36:02 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-03-23 13:43:28 -07:00
										 |  |  | export function humanizeErrors(errors: ParseError[]): any[] { | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |   return errors.map(error => { | 
					
						
							|  |  |  |     if (error instanceof HtmlTreeError) { | 
					
						
							|  |  |  |       // Parser errors
 | 
					
						
							| 
									
										
										
										
											2016-02-16 16:46:51 -08:00
										 |  |  |       return [<any>error.elementName, error.msg, humanizeLineColumn(error.span.start)]; | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |     } | 
					
						
							|  |  |  |     // Tokenizer errors
 | 
					
						
							| 
									
										
										
										
											2016-02-16 16:46:51 -08:00
										 |  |  |     return [(<any>error).tokenType, error.msg, humanizeLineColumn(error.span.start)]; | 
					
						
							| 
									
										
										
										
											2015-11-10 15:56:25 -08:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | } |