import {describe, beforeEach, it, xit, expect, iit, ddescribe, el} from 'angular2/test_lib'; import {isPresent, assertionsEnabled} from 'angular2/src/facade/lang'; import {ListWrapper, MapWrapper, StringMapWrapper} from 'angular2/src/facade/collection'; import {DirectiveParser} from 'angular2/src/render/dom/compiler/directive_parser'; import {CompilePipeline} from 'angular2/src/render/dom/compiler/compile_pipeline'; import {CompileStep} from 'angular2/src/render/dom/compiler/compile_step'; import {CompileElement} from 'angular2/src/render/dom/compiler/compile_element'; import {CompileControl} from 'angular2/src/render/dom/compiler/compile_control'; import {ViewDefinition, DirectiveMetadata} from 'angular2/src/render/api'; import {Lexer, Parser} from 'angular2/change_detection'; export function main() { describe('DirectiveParser', () => { var parser, annotatedDirectives; beforeEach( () => { annotatedDirectives = [ someComponent, someComponent2, someComponent3, someViewport, someViewport2, someDecorator, someDecoratorIgnoringChildren, someDecoratorWithProps, someDecoratorWithEvents, someDecoratorWithGlobalEvents ]; parser = new Parser(new Lexer()); }); function createPipeline(propertyBindings = null) { return new CompilePipeline([ new MockStep( (parent, current, control) => { if (isPresent(propertyBindings)) { StringMapWrapper.forEach(propertyBindings, (ast, name) => { current.bindElement().bindProperty(name, ast); }); } }), new DirectiveParser(parser, annotatedDirectives) ]); } function process(el, propertyBindings = null) { var pipeline = createPipeline(propertyBindings); return ListWrapper.map(pipeline.process(el), (ce) => ce.inheritedElementBinder ); } it('should not add directives if they are not used', () => { var results = process(el('
')); expect(results[0]).toBe(null); }); it('should detect directives in attributes', () => { var results = process(el('
')); expect(results[0].directives[0].directiveIndex).toBe( annotatedDirectives.indexOf(someDecorator) ); }); it('should detect directives with multiple attributes', () => { var results = process(el('')); expect(results[0].directives[0].directiveIndex).toBe( annotatedDirectives.indexOf(someComponent3) ); }); it('should compile children by default', () => { var results = createPipeline().process(el('
')); expect(results[0].compileChildren).toEqual(true); }); it('should stop compiling children when specified in the directive config', () => { var results = createPipeline().process(el('
')); expect(results[0].compileChildren).toEqual(false); }); it('should bind directive properties from bound properties', () => { var results = process( el('
'), { 'elProp': parser.parseBinding('someExpr', '') } ); var directiveBinding = results[0].directives[0]; expect(MapWrapper.get(directiveBinding.propertyBindings, 'dirProp').source) .toEqual('someExpr'); }); it('should bind directive properties with pipes', () => { var results = process( el('
'), { 'elProp': parser.parseBinding('someExpr', '') } ); var directiveBinding = results[0].directives[0]; var pipedProp = MapWrapper.get(directiveBinding.propertyBindings, 'doubleProp'); var simpleProp = MapWrapper.get(directiveBinding.propertyBindings, 'dirProp'); expect(pipedProp.ast.name).toEqual('double'); expect(pipedProp.ast.exp).toEqual(simpleProp.ast); expect(simpleProp.source).toEqual('someExpr'); }); it('should bind directive properties from attribute values', () => { var results = process( el('
') ); var directiveBinding = results[0].directives[0]; var simpleProp = MapWrapper.get(directiveBinding.propertyBindings, 'dirProp'); expect(simpleProp.source).toEqual('someValue'); }); it('should store working property setters', () => { var element = el(''); var results = process(element); var setter = MapWrapper.get(results[0].propertySetters, 'value'); setter(element, 'abc'); expect(element.value).toEqual('abc'); }); it('should read attribute values', () => { var element = el(''); var results = process(element); expect(MapWrapper.get(results[0].readAttributes, 'some-attr')).toEqual('someValue'); }); it('should bind directive events', () => { var results = process( el('
') ); var directiveBinding = results[0].directives[0]; expect(directiveBinding.eventBindings.length).toEqual(1); var eventBinding = directiveBinding.eventBindings[0]; expect(eventBinding.fullName).toEqual('click'); expect(eventBinding.source.source).toEqual('doIt()'); }); it('should bind directive global events', () => { var results = process( el('
') ); var directiveBinding = results[0].directives[0]; expect(directiveBinding.eventBindings.length).toEqual(1); var eventBinding = directiveBinding.eventBindings[0]; expect(eventBinding.fullName).toEqual('window:resize'); expect(eventBinding.source.source).toEqual('doItGlobal()'); }); //TODO: assertions should be enabled when running tests: https://github.com/angular/angular/issues/1340 describe('viewport directives', () => { it('should not allow multiple viewport directives on the same element', () => { expect( () => { process( el('') ); }).toThrowError('Only one viewport directive is allowed per element - check ' + (assertionsEnabled() ? '