| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   AsyncTestCompleter, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   inject, | 
					
						
							|  |  |  |   it, | 
					
						
							|  |  |  |   xdescribe, | 
					
						
							|  |  |  |   xit, | 
					
						
							|  |  |  |   IS_DARTIUM | 
					
						
							|  |  |  | } from 'angular2/test_lib'; | 
					
						
							|  |  |  | import {isPresent, stringify} from 'angular2/src/facade/lang'; | 
					
						
							| 
									
										
										
										
											2015-06-12 15:49:34 -07:00
										 |  |  | import {bootstrap, ApplicationRef} from 'angular2/src/core/application'; | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  | import {Component, Directive, View} from 'angular2/annotations'; | 
					
						
							|  |  |  | import {DOM} from 'angular2/src/dom/dom_adapter'; | 
					
						
							|  |  |  | import {PromiseWrapper} from 'angular2/src/facade/async'; | 
					
						
							| 
									
										
										
										
											2015-06-11 18:50:41 -07:00
										 |  |  | import {bind, Inject, Injector} from 'angular2/di'; | 
					
						
							| 
									
										
										
										
											2015-07-30 10:01:31 -07:00
										 |  |  | import {LifeCycle} from 'angular2/core'; | 
					
						
							| 
									
										
										
										
											2015-07-23 18:00:19 -07:00
										 |  |  | import {ExceptionHandler} from 'angular2/src/core/exception_handler'; | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  | import {Testability, TestabilityRegistry} from 'angular2/src/core/testability/testability'; | 
					
						
							| 
									
										
										
										
											2015-07-24 15:28:44 -07:00
										 |  |  | import {DOCUMENT_TOKEN} from 'angular2/src/render/render'; | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'hello-app'}) | 
					
						
							|  |  |  | @View({template: '{{greeting}} world!'}) | 
					
						
							|  |  |  | class HelloRootCmp { | 
					
						
							|  |  |  |   greeting: string; | 
					
						
							|  |  |  |   constructor() { this.greeting = 'hello'; } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'hello-app'}) | 
					
						
							| 
									
										
										
										
											2015-06-24 13:46:39 -07:00
										 |  |  | @View({template: 'before: <ng-content></ng-content> after: done'}) | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  | class HelloRootCmpContent { | 
					
						
							|  |  |  |   constructor() {} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'hello-app-2'}) | 
					
						
							|  |  |  | @View({template: '{{greeting}} world, again!'}) | 
					
						
							|  |  |  | class HelloRootCmp2 { | 
					
						
							|  |  |  |   greeting: string; | 
					
						
							|  |  |  |   constructor() { this.greeting = 'hello'; } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'hello-app'}) | 
					
						
							|  |  |  | @View({template: ''}) | 
					
						
							|  |  |  | class HelloRootCmp3 { | 
					
						
							|  |  |  |   appBinding; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   constructor(@Inject("appBinding") appBinding) { this.appBinding = appBinding; } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'hello-app'}) | 
					
						
							|  |  |  | @View({template: ''}) | 
					
						
							|  |  |  | class HelloRootCmp4 { | 
					
						
							|  |  |  |   lc; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   constructor(@Inject(LifeCycle) lc) { this.lc = lc; } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'hello-app'}) | 
					
						
							|  |  |  | class HelloRootMissingTemplate { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Directive({selector: 'hello-app'}) | 
					
						
							|  |  |  | class HelloRootDirectiveIsNotCmp { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-27 15:47:42 -07:00
										 |  |  | class _ArrayLogger { | 
					
						
							|  |  |  |   res: any[] = []; | 
					
						
							|  |  |  |   log(s: any): void { this.res.push(s); } | 
					
						
							|  |  |  |   logGroup(s: any): void { this.res.push(s); } | 
					
						
							| 
									
										
										
										
											2015-07-23 18:00:19 -07:00
										 |  |  |   logGroupEnd(){}; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-27 15:47:42 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  | export function main() { | 
					
						
							|  |  |  |   var fakeDoc, el, el2, testBindings, lightDom; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('bootstrap factory method', () => { | 
					
						
							| 
									
										
										
										
											2015-06-24 13:46:39 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       fakeDoc = DOM.createHtmlDocument(); | 
					
						
							|  |  |  |       el = DOM.createElement('hello-app', fakeDoc); | 
					
						
							|  |  |  |       el2 = DOM.createElement('hello-app-2', fakeDoc); | 
					
						
							|  |  |  |       lightDom = DOM.createElement('light-dom-el', fakeDoc); | 
					
						
							|  |  |  |       DOM.appendChild(fakeDoc.body, el); | 
					
						
							|  |  |  |       DOM.appendChild(fakeDoc.body, el2); | 
					
						
							|  |  |  |       DOM.appendChild(el, lightDom); | 
					
						
							|  |  |  |       DOM.setText(lightDom, 'loading'); | 
					
						
							|  |  |  |       testBindings = [bind(DOCUMENT_TOKEN).toValue(fakeDoc)]; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  |     it('should throw if bootstrapped Directive is not a Component', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-08-05 10:37:11 -07:00
										 |  |  |          var logger = new _ArrayLogger(); | 
					
						
							|  |  |  |          var exceptionHandler = new ExceptionHandler(logger, false); | 
					
						
							|  |  |  |          var refPromise = | 
					
						
							|  |  |  |              bootstrap(HelloRootDirectiveIsNotCmp, | 
					
						
							|  |  |  |                        [testBindings, bind(ExceptionHandler).toValue(exceptionHandler)]); | 
					
						
							| 
									
										
										
										
											2015-06-26 15:59:18 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-23 18:00:19 -07:00
										 |  |  |          PromiseWrapper.then(refPromise, null, (exception) => { | 
					
						
							|  |  |  |            expect(exception).toContainError( | 
					
						
							|  |  |  |                `Could not load '${stringify(HelloRootDirectiveIsNotCmp)}' because it is not a component.`); | 
					
						
							| 
									
										
										
										
											2015-08-05 10:37:11 -07:00
										 |  |  |            expect(logger.res.join("")).toContain("Could not load"); | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  |            async.done(); | 
					
						
							|  |  |  |            return null; | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should throw if no element is found', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-07-27 15:47:42 -07:00
										 |  |  |          var logger = new _ArrayLogger(); | 
					
						
							|  |  |  |          var exceptionHandler = new ExceptionHandler(logger, IS_DARTIUM ? false : true); | 
					
						
							| 
									
										
										
										
											2015-07-23 18:00:19 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-27 15:47:42 -07:00
										 |  |  |          var refPromise = | 
					
						
							|  |  |  |              bootstrap(HelloRootCmp, [bind(ExceptionHandler).toValue(exceptionHandler)]); | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  |          PromiseWrapper.then(refPromise, null, (reason) => { | 
					
						
							|  |  |  |            expect(reason.message).toContain('The selector "hello-app" did not match any elements'); | 
					
						
							|  |  |  |            async.done(); | 
					
						
							|  |  |  |            return null; | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-27 15:47:42 -07:00
										 |  |  |     if (DOM.supportsDOMEvents()) { | 
					
						
							|  |  |  |       it('should invoke the default exception handler when bootstrap fails', | 
					
						
							|  |  |  |          inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |            var logger = new _ArrayLogger(); | 
					
						
							|  |  |  |            var exceptionHandler = new ExceptionHandler(logger, IS_DARTIUM ? false : true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            var refPromise = | 
					
						
							|  |  |  |                bootstrap(HelloRootCmp, [bind(ExceptionHandler).toValue(exceptionHandler)]); | 
					
						
							|  |  |  |            PromiseWrapper.then(refPromise, null, (reason) => { | 
					
						
							|  |  |  |              expect(logger.res.join("")) | 
					
						
							|  |  |  |                  .toContain('The selector "hello-app" did not match any elements'); | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |              return null; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  |     it('should create an injector promise', () => { | 
					
						
							|  |  |  |       var refPromise = bootstrap(HelloRootCmp, testBindings); | 
					
						
							|  |  |  |       expect(refPromise).not.toBe(null); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should display hello world', inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          var refPromise = bootstrap(HelloRootCmp, testBindings); | 
					
						
							|  |  |  |          refPromise.then((ref) => { | 
					
						
							|  |  |  |            expect(el).toHaveText('hello world!'); | 
					
						
							|  |  |  |            async.done(); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should support multiple calls to bootstrap', inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          var refPromise1 = bootstrap(HelloRootCmp, testBindings); | 
					
						
							|  |  |  |          var refPromise2 = bootstrap(HelloRootCmp2, testBindings); | 
					
						
							|  |  |  |          PromiseWrapper.all([refPromise1, refPromise2]) | 
					
						
							|  |  |  |              .then((refs) => { | 
					
						
							|  |  |  |                expect(el).toHaveText('hello world!'); | 
					
						
							|  |  |  |                expect(el2).toHaveText('hello world, again!'); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it("should make the provided bindings available to the application component", | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          var refPromise = | 
					
						
							|  |  |  |              bootstrap(HelloRootCmp3, [testBindings, bind("appBinding").toValue("BoundValue")]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          refPromise.then((ref) => { | 
					
						
							| 
									
										
										
										
											2015-06-26 15:59:18 -07:00
										 |  |  |            expect(ref.hostComponent.appBinding).toEqual("BoundValue"); | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  |            async.done(); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it("should avoid cyclic dependencies when root component requires Lifecycle through DI", | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          var refPromise = bootstrap(HelloRootCmp4, testBindings); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          refPromise.then((ref) => { | 
					
						
							| 
									
										
										
										
											2015-06-26 15:59:18 -07:00
										 |  |  |            expect(ref.hostComponent.lc).toBe(ref.injector.get(LifeCycle)); | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  |            async.done(); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should register each application with the testability registry', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          var refPromise1 = bootstrap(HelloRootCmp, testBindings); | 
					
						
							|  |  |  |          var refPromise2 = bootstrap(HelloRootCmp2, testBindings); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          PromiseWrapper.all([refPromise1, refPromise2]) | 
					
						
							| 
									
										
										
										
											2015-06-12 15:49:34 -07:00
										 |  |  |              .then((refs: ApplicationRef[]) => { | 
					
						
							|  |  |  |                var registry = refs[0].injector.get(TestabilityRegistry); | 
					
						
							|  |  |  |                var testabilities = | 
					
						
							| 
									
										
										
										
											2015-06-26 15:59:18 -07:00
										 |  |  |                    [refs[0].injector.get(Testability), refs[1].injector.get(Testability)]; | 
					
						
							| 
									
										
										
										
											2015-06-12 15:49:34 -07:00
										 |  |  |                PromiseWrapper.all(testabilities) | 
					
						
							|  |  |  |                    .then((testabilities: Testability[]) => { | 
					
						
							| 
									
										
										
										
											2015-05-26 09:45:15 -07:00
										 |  |  |                      expect(registry.findTestabilityInTree(el)).toEqual(testabilities[0]); | 
					
						
							|  |  |  |                      expect(registry.findTestabilityInTree(el2)).toEqual(testabilities[1]); | 
					
						
							|  |  |  |                      async.done(); | 
					
						
							|  |  |  |                    }); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } |