2015-08-25 18:36:02 -04:00
|
|
|
import {ddescribe, describe, it, iit, xit, expect, beforeEach, afterEach} from 'angular2/test_lib';
|
|
|
|
|
|
|
|
import {HtmlParser} from 'angular2/src/compiler/html_parser';
|
|
|
|
import {
|
|
|
|
HtmlAst,
|
|
|
|
HtmlAstVisitor,
|
|
|
|
HtmlElementAst,
|
|
|
|
HtmlAttrAst,
|
|
|
|
HtmlTextAst,
|
|
|
|
htmlVisitAll
|
|
|
|
} from 'angular2/src/compiler/html_ast';
|
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('DomParser', () => {
|
|
|
|
var parser: HtmlParser;
|
|
|
|
beforeEach(() => { parser = new HtmlParser(); });
|
|
|
|
|
2015-09-11 16:35:46 -04:00
|
|
|
describe('parse', () => {
|
2015-08-25 18:36:02 -04:00
|
|
|
|
2015-09-11 16:35:46 -04:00
|
|
|
describe('text nodes', () => {
|
|
|
|
it('should parse root level text nodes', () => {
|
|
|
|
expect(humanizeDom(parser.parse('a', 'TestComp')))
|
|
|
|
.toEqual([[HtmlTextAst, 'a', 'TestComp > #text(a):nth-child(0)']]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should parse text nodes inside regular elements', () => {
|
|
|
|
expect(humanizeDom(parser.parse('<div>a</div>', 'TestComp')))
|
|
|
|
.toEqual([
|
|
|
|
[HtmlElementAst, 'div', 'TestComp > div:nth-child(0)'],
|
|
|
|
[HtmlTextAst, 'a', 'TestComp > div:nth-child(0) > #text(a):nth-child(0)']
|
|
|
|
]);
|
|
|
|
});
|
2015-08-25 18:36:02 -04:00
|
|
|
|
2015-09-11 16:35:46 -04:00
|
|
|
it('should parse text nodes inside template elements', () => {
|
|
|
|
expect(humanizeDom(parser.parse('<template>a</template>', 'TestComp')))
|
|
|
|
.toEqual([
|
|
|
|
[HtmlElementAst, 'template', 'TestComp > template:nth-child(0)'],
|
|
|
|
[HtmlTextAst, 'a', 'TestComp > template:nth-child(0) > #text(a):nth-child(0)']
|
|
|
|
]);
|
|
|
|
});
|
2015-08-25 18:36:02 -04:00
|
|
|
});
|
|
|
|
|
2015-09-11 16:35:46 -04:00
|
|
|
describe('elements', () => {
|
|
|
|
it('should parse root level elements', () => {
|
|
|
|
expect(humanizeDom(parser.parse('<div></div>', 'TestComp')))
|
|
|
|
.toEqual([[HtmlElementAst, 'div', 'TestComp > div:nth-child(0)']]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should parse elements inside of regular elements', () => {
|
|
|
|
expect(humanizeDom(parser.parse('<div><span></span></div>', 'TestComp')))
|
|
|
|
.toEqual([
|
|
|
|
[HtmlElementAst, 'div', 'TestComp > div:nth-child(0)'],
|
|
|
|
[HtmlElementAst, 'span', 'TestComp > div:nth-child(0) > span:nth-child(0)']
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should parse elements inside of template elements', () => {
|
|
|
|
expect(humanizeDom(parser.parse('<template><span></span></template>', 'TestComp')))
|
|
|
|
.toEqual([
|
|
|
|
[HtmlElementAst, 'template', 'TestComp > template:nth-child(0)'],
|
|
|
|
[HtmlElementAst, 'span', 'TestComp > template:nth-child(0) > span:nth-child(0)']
|
|
|
|
]);
|
|
|
|
});
|
2015-08-25 18:36:02 -04:00
|
|
|
});
|
|
|
|
|
2015-09-11 16:35:46 -04:00
|
|
|
describe('attributes', () => {
|
|
|
|
it('should parse attributes on regular elements', () => {
|
|
|
|
expect(humanizeDom(parser.parse('<div k="v"></div>', 'TestComp')))
|
|
|
|
.toEqual([
|
|
|
|
[HtmlElementAst, 'div', 'TestComp > div:nth-child(0)'],
|
|
|
|
[HtmlAttrAst, 'k', 'v', 'TestComp > div:nth-child(0)[k=v]']
|
|
|
|
]);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should parse attributes on template elements', () => {
|
|
|
|
expect(humanizeDom(parser.parse('<template k="v"></template>', 'TestComp')))
|
|
|
|
.toEqual([
|
|
|
|
[HtmlElementAst, 'template', 'TestComp > template:nth-child(0)'],
|
|
|
|
[HtmlAttrAst, 'k', 'v', 'TestComp > template:nth-child(0)[k=v]']
|
|
|
|
]);
|
|
|
|
});
|
2015-08-25 18:36:02 -04:00
|
|
|
});
|
|
|
|
|
2015-09-11 16:35:46 -04:00
|
|
|
describe('ng-non-bindable', () => {
|
|
|
|
it('should ignore text nodes and elements inside of elements with ng-non-bindable', () => {
|
|
|
|
expect(humanizeDom(
|
|
|
|
parser.parse('<div ng-non-bindable>hello<span></span></div>', 'TestComp')))
|
|
|
|
.toEqual([
|
|
|
|
[HtmlElementAst, 'div', 'TestComp > div:nth-child(0)'],
|
|
|
|
[
|
|
|
|
HtmlAttrAst,
|
|
|
|
'ng-non-bindable',
|
|
|
|
'',
|
|
|
|
'TestComp > div:nth-child(0)[ng-non-bindable=]'
|
|
|
|
]
|
|
|
|
]);
|
|
|
|
});
|
2015-08-25 18:36:02 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-09-11 16:35:46 -04:00
|
|
|
describe('unparse', () => {
|
|
|
|
it('should unparse text nodes',
|
|
|
|
() => { expect(parser.unparse(parser.parse('a', null))).toEqual('a'); });
|
|
|
|
|
|
|
|
it('should unparse elements',
|
|
|
|
() => { expect(parser.unparse(parser.parse('<a></a>', null))).toEqual('<a></a>'); });
|
|
|
|
|
|
|
|
it('should unparse attributes', () => {
|
|
|
|
expect(parser.unparse(parser.parse('<div a b="c"></div>', null)))
|
|
|
|
.toEqual('<div a="" b="c"></div>');
|
2015-08-25 18:36:02 -04:00
|
|
|
});
|
|
|
|
|
2015-09-11 16:35:46 -04:00
|
|
|
it('should unparse nested elements', () => {
|
|
|
|
expect(parser.unparse(parser.parse('<div><a></a></div>', null)))
|
|
|
|
.toEqual('<div><a></a></div>');
|
2015-08-25 18:36:02 -04:00
|
|
|
});
|
|
|
|
|
2015-09-11 16:35:46 -04:00
|
|
|
it('should unparse nested text nodes', () => {
|
|
|
|
expect(parser.unparse(parser.parse('<div>a</div>', null))).toEqual('<div>a</div>');
|
2015-08-25 18:36:02 -04:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-09-11 16:35:46 -04:00
|
|
|
function humanizeDom(asts: HtmlAst[]): any[] {
|
2015-08-25 18:36:02 -04:00
|
|
|
var humanizer = new Humanizer();
|
|
|
|
htmlVisitAll(humanizer, asts);
|
|
|
|
return humanizer.result;
|
|
|
|
}
|
|
|
|
|
|
|
|
class Humanizer implements HtmlAstVisitor {
|
|
|
|
result: any[] = [];
|
2015-09-11 16:35:46 -04:00
|
|
|
visitElement(ast: HtmlElementAst, context: any): any {
|
2015-08-25 18:36:02 -04:00
|
|
|
this.result.push([HtmlElementAst, ast.name, ast.sourceInfo]);
|
|
|
|
htmlVisitAll(this, ast.attrs);
|
|
|
|
htmlVisitAll(this, ast.children);
|
|
|
|
return null;
|
|
|
|
}
|
2015-09-11 16:35:46 -04:00
|
|
|
visitAttr(ast: HtmlAttrAst, context: any): any {
|
2015-08-25 18:36:02 -04:00
|
|
|
this.result.push([HtmlAttrAst, ast.name, ast.value, ast.sourceInfo]);
|
|
|
|
return null;
|
|
|
|
}
|
2015-09-11 16:35:46 -04:00
|
|
|
visitText(ast: HtmlTextAst, context: any): any {
|
2015-08-25 18:36:02 -04:00
|
|
|
this.result.push([HtmlTextAst, ast.value, ast.sourceInfo]);
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|