import {describe, xit, it, expect, beforeEach, ddescribe, iit} from 'test_lib/test_lib'; import {ProtoView, ElementPropertyMemento, DirectivePropertyMemento} from 'core/compiler/view'; import {ProtoElementInjector, ElementInjector} from 'core/compiler/element_injector'; import {Reflector} from 'core/compiler/reflector'; import {Component} from 'core/annotations/component'; import {Decorator} from 'core/annotations/decorator'; import {ProtoWatchGroup} from 'change_detection/watch_group'; import {ChangeDetector} from 'change_detection/change_detector'; import {TemplateConfig} from 'core/annotations/template_config'; import {Parser} from 'change_detection/parser/parser'; import {ClosureMap} from 'change_detection/parser/closure_map'; import {Lexer} from 'change_detection/parser/lexer'; import {DOM, Element} from 'facade/dom'; import {FIELD} from 'facade/lang'; import {Injector} from 'di/di'; import {View} from 'core/compiler/view'; export function main() { describe('view', function() { var parser, closureMap, someComponentDirective; beforeEach(() => { closureMap = new ClosureMap(); parser = new Parser(new Lexer(), closureMap); someComponentDirective = new Reflector().annotatedType(SomeComponent); }); describe('ProtoView.instantiate', function() { function createCollectDomNodesTestCases(useTemplateElement:boolean) { function templateAwareCreateElement(html) { return createElement(useTemplateElement ? `` : html); } it('should collect the root node in the ProtoView element', () => { var pv = new ProtoView(templateAwareCreateElement('
'), new ProtoWatchGroup()); var view = pv.instantiate(null, null, null); expect(view.nodes.length).toBe(1); expect(view.nodes[0].getAttribute('id')).toEqual('1'); }); describe('collect elements with property bindings', () => { it('should collect property bindings on the root element if it has the ng-binding class', () => { var pv = new ProtoView(templateAwareCreateElement('
'), new ProtoWatchGroup()); pv.bindElement(null); pv.bindElementProperty('prop', parser.parseBinding('a')); var view = pv.instantiate(null, null, null); expect(view.bindElements.length).toEqual(1); expect(view.bindElements[0]).toBe(view.nodes[0]); }); it('should collect property bindings on child elements with ng-binding class', () => { var pv = new ProtoView(templateAwareCreateElement('
'), new ProtoWatchGroup()); pv.bindElement(null); pv.bindElementProperty('a', parser.parseBinding('b')); var view = pv.instantiate(null, null, null); expect(view.bindElements.length).toEqual(1); expect(view.bindElements[0]).toBe(view.nodes[0].childNodes[1]); }); }); describe('collect text nodes with bindings', () => { it('should collect text nodes under the root element', () => { var pv = new ProtoView(templateAwareCreateElement('
{{}}{{}}
'), new ProtoWatchGroup()); pv.bindElement(null); pv.bindTextNode(0, parser.parseBinding('a')); pv.bindTextNode(2, parser.parseBinding('b')); var view = pv.instantiate(null, null, null); expect(view.textNodes.length).toEqual(2); expect(view.textNodes[0]).toBe(view.nodes[0].childNodes[0]); expect(view.textNodes[1]).toBe(view.nodes[0].childNodes[2]); }); it('should collect text nodes with bindings on child elements with ng-binding class', () => { var pv = new ProtoView(templateAwareCreateElement('
{{}}
'), new ProtoWatchGroup()); pv.bindElement(null); pv.bindTextNode(0, parser.parseBinding('b')); var view = pv.instantiate(null, null, null); expect(view.textNodes.length).toEqual(1); expect(view.textNodes[0]).toBe(view.nodes[0].childNodes[1].childNodes[0]); }); }); } describe('inplace instantiation', () => { it('should be supported.', () => { var template = createElement('
') var view = new ProtoView(template, new ProtoWatchGroup()) .instantiate(null, null, null, true); expect(view.nodes[0]).toBe(template); }); it('should be off by default.', () => { var template = createElement('
') var view = new ProtoView(template, new ProtoWatchGroup()) .instantiate(null, null, null); expect(view.nodes[0]).not.toBe(template); }); }); describe('collect dom nodes with a regular element as root', () => { createCollectDomNodesTestCases(false); }); describe('collect dom nodes with a template element as root', () => { createCollectDomNodesTestCases(true); }); describe('create ElementInjectors', () => { it('should use the directives of the ProtoElementInjector', () => { var pv = new ProtoView(createElement('
'), new ProtoWatchGroup()); pv.bindElement(new ProtoElementInjector(null, 1, [SomeDirective])); var view = pv.instantiate(null, null, null); expect(view.elementInjectors.length).toBe(1); expect(view.elementInjectors[0].get(SomeDirective) instanceof SomeDirective).toBe(true); }); it('should use the correct parent', () => { var pv = new ProtoView(createElement('
'), new ProtoWatchGroup()); var protoParent = new ProtoElementInjector(null, 0, [SomeDirective]); pv.bindElement(protoParent); pv.bindElement(new ProtoElementInjector(protoParent, 1, [AnotherDirective])); var view = pv.instantiate(null, null, null); expect(view.elementInjectors.length).toBe(2); expect(view.elementInjectors[0].get(SomeDirective) instanceof SomeDirective).toBe(true); expect(view.elementInjectors[1].parent).toBe(view.elementInjectors[0]); }); }); describe('collect root element injectors', () => { it('should collect a single root element injector', () => { var pv = new ProtoView(createElement('
'), new ProtoWatchGroup()); var protoParent = new ProtoElementInjector(null, 0, [SomeDirective]); pv.bindElement(protoParent); pv.bindElement(new ProtoElementInjector(protoParent, 1, [AnotherDirective])); var view = pv.instantiate(null, null, null); expect(view.rootElementInjectors.length).toBe(1); expect(view.rootElementInjectors[0].get(SomeDirective) instanceof SomeDirective).toBe(true); }); it('should collect multiple root element injectors', () => { var pv = new ProtoView(createElement('
'), new ProtoWatchGroup()); pv.bindElement(new ProtoElementInjector(null, 1, [SomeDirective])); pv.bindElement(new ProtoElementInjector(null, 2, [AnotherDirective])); var view = pv.instantiate(null, null, null); expect(view.rootElementInjectors.length).toBe(2) expect(view.rootElementInjectors[0].get(SomeDirective) instanceof SomeDirective).toBe(true); expect(view.rootElementInjectors[1].get(AnotherDirective) instanceof AnotherDirective).toBe(true); }); }); describe('recurse over child component views', () => { var view, ctx; function createComponentWithSubPV(subProtoView) { var pv = new ProtoView(createElement(''), new ProtoWatchGroup()); var binder = pv.bindElement(new ProtoElementInjector(null, 0, [SomeComponent], true)); binder.componentDirective = someComponentDirective; binder.nestedProtoView = subProtoView; return pv; } function createNestedView(protoView) { ctx = new MyEvaluationContext(); return protoView.instantiate(ctx, new Injector([]), null); } it('should create shadow dom', () => { var subpv = new ProtoView(createElement('hello shadow dom'), new ProtoWatchGroup()); var pv = createComponentWithSubPV(subpv); var view = createNestedView(pv); expect(view.nodes[0].shadowRoot.childNodes[0].childNodes[0].nodeValue).toEqual('hello shadow dom'); }); it('should expose component services to the component', () => { var subpv = new ProtoView(createElement(''), new ProtoWatchGroup()); var pv = createComponentWithSubPV(subpv); var view = createNestedView(pv); var comp = view.rootElementInjectors[0].get(SomeComponent); expect(comp.service).toBeAnInstanceOf(SomeService); }); it('should expose component services and component instance to directives in the shadow Dom', () => { var subpv = new ProtoView( createElement('
hello shadow dom
'), new ProtoWatchGroup()); var subBinder = subpv.bindElement( new ProtoElementInjector(null, 0, [ServiceDependentDecorator])); var pv = createComponentWithSubPV(subpv); var view = createNestedView(pv); var subView = view.childViews[0]; var subInj = subView.rootElementInjectors[0]; var subDecorator = subInj.get(ServiceDependentDecorator); var comp = view.rootElementInjectors[0].get(SomeComponent); expect(subDecorator).toBeAnInstanceOf(ServiceDependentDecorator); expect(subDecorator.service).toBe(comp.service); expect(subDecorator.component).toBe(comp); }); }); describe('react to watch group changes', () => { var view, cd, ctx; function createView(protoView) { ctx = new MyEvaluationContext(); view = protoView.instantiate(ctx, null, null); cd = new ChangeDetector(view.watchGroup); } it('should consume text node changes', () => { var pv = new ProtoView(createElement('
{{}}
'), new ProtoWatchGroup()); pv.bindElement(null); pv.bindTextNode(0, parser.parseBinding('foo')); createView(pv); ctx.foo = 'buz'; cd.detectChanges(); expect(view.textNodes[0].nodeValue).toEqual('buz'); }); it('should consume element binding changes', () => { var pv = new ProtoView(createElement('
'), new ProtoWatchGroup()); pv.bindElement(null); pv.bindElementProperty('id', parser.parseBinding('foo')); createView(pv); ctx.foo = 'buz'; cd.detectChanges(); expect(view.bindElements[0].id).toEqual('buz'); }); it('should consume directive watch expression change.', () => { var pv = new ProtoView(createElement('
'), new ProtoWatchGroup()); pv.bindElement(new ProtoElementInjector(null, 0, [SomeDirective])); pv.bindDirectiveProperty( 0, parser.parseBinding('foo'), 'prop', closureMap.setter('prop')); createView(pv); ctx.foo = 'buz'; cd.detectChanges(); expect(view.elementInjectors[0].get(SomeDirective).prop).toEqual('buz'); }); }); }); describe('protoView createRootProtoView', () => { var el, pv; beforeEach(() => { el = DOM.createElement('div'); pv = new ProtoView(createElement('
hi
'), new ProtoWatchGroup()); }); it('should create the root component when instantiated', () => { var rootProtoView = ProtoView.createRootProtoView(pv, el, someComponentDirective); var view = rootProtoView.instantiate(null, new Injector([]), null, true); expect(view.rootElementInjectors[0].get(SomeComponent)).not.toBe(null); }); it('should inject the protoView into the shadowDom', () => { var rootProtoView = ProtoView.createRootProtoView(pv, el, someComponentDirective); var view = rootProtoView.instantiate(null, new Injector([]), null, true); expect(el.shadowRoot.childNodes[0].childNodes[0].nodeValue).toEqual('hi'); }); }); }); } class SomeDirective { @FIELD('prop') constructor() { this.prop = 'foo'; } } class SomeService {} @Component({ componentServices: [SomeService] }) class SomeComponent { constructor(service: SomeService) { this.service = service; } } @Decorator({ selector: '[dec]' }) class ServiceDependentDecorator { constructor(component: SomeComponent, service: SomeService) { this.component = component; this.service = service; } } class AnotherDirective { @FIELD('prop') constructor() { this.prop = 'anotherFoo'; } } class MyEvaluationContext { @FIELD('foo') constructor() { this.foo = 'bar'; }; } function createElement(html) { return DOM.createTemplate(html).content.firstChild; }