| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   AsyncTestCompleter, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   inject, | 
					
						
							|  |  |  |   it, | 
					
						
							|  |  |  |   xdescribe, | 
					
						
							|  |  |  |   xit, | 
					
						
							|  |  |  | } from 'angular2/test_lib'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {bootstrap} from 'angular2/src/core/application'; | 
					
						
							|  |  |  | import {Component, Directive, View} from 'angular2/src/core/annotations/decorators'; | 
					
						
							|  |  |  | import {DOM} from 'angular2/src/dom/dom_adapter'; | 
					
						
							|  |  |  | import {bind} from 'angular2/di'; | 
					
						
							|  |  |  | import {DOCUMENT_TOKEN} from 'angular2/src/render/dom/dom_renderer'; | 
					
						
							|  |  |  | import {RouteConfig} from 'angular2/src/router/route_config_decorator'; | 
					
						
							| 
									
										
										
										
											2015-06-08 18:04:13 -07:00
										 |  |  | import {PromiseWrapper} from 'angular2/src/facade/async'; | 
					
						
							|  |  |  | import {BaseException} from 'angular2/src/facade/lang'; | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  | import {routerInjectables, Router, appBaseHrefToken, routerDirectives} from 'angular2/router'; | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  | import {LocationStrategy} from 'angular2/src/router/location_strategy'; | 
					
						
							|  |  |  | import {MockLocationStrategy} from 'angular2/src/mock/mock_location_strategy'; | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							|  |  |  |   describe('router injectables', () => { | 
					
						
							|  |  |  |     var fakeDoc, el, testBindings; | 
					
						
							|  |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       fakeDoc = DOM.createHtmlDocument(); | 
					
						
							|  |  |  |       el = DOM.createElement('app-cmp', fakeDoc); | 
					
						
							|  |  |  |       DOM.appendChild(fakeDoc.body, el); | 
					
						
							|  |  |  |       testBindings = [ | 
					
						
							|  |  |  |         routerInjectables, | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |         bind(LocationStrategy).toClass(MockLocationStrategy), | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  |         bind(DOCUMENT_TOKEN).toValue(fakeDoc) | 
					
						
							|  |  |  |       ]; | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  |     it('should bootstrap a simple app', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  |          bootstrap(AppCmp, testBindings) | 
					
						
							|  |  |  |              .then((applicationRef) => { | 
					
						
							|  |  |  |                var router = applicationRef.hostComponent.router; | 
					
						
							|  |  |  |                router.subscribe((_) => { | 
					
						
							|  |  |  |                  expect(el).toHaveText('outer { hello }'); | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |                  expect(applicationRef.hostComponent.location.path()).toEqual(''); | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  |                  async.done(); | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 18:04:13 -07:00
										 |  |  |     it('should rethrow exceptions from component constructors', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          bootstrap(BrokenAppCmp, testBindings) | 
					
						
							|  |  |  |              .then((applicationRef) => { | 
					
						
							|  |  |  |                var router = applicationRef.hostComponent.router; | 
					
						
							|  |  |  |                PromiseWrapper.catchError(router.navigate('/cause-error'), (error) => { | 
					
						
							|  |  |  |                  expect(el).toHaveText('outer { oh no }'); | 
					
						
							| 
									
										
										
										
											2015-06-26 15:59:18 -07:00
										 |  |  |                  expect(error.message).toContain('oops!'); | 
					
						
							| 
									
										
										
										
											2015-06-08 18:04:13 -07:00
										 |  |  |                  async.done(); | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  |     it('should bootstrap an app with a hierarchy', inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          bootstrap(HierarchyAppCmp, testBindings) | 
					
						
							|  |  |  |              .then((applicationRef) => { | 
					
						
							|  |  |  |                var router = applicationRef.hostComponent.router; | 
					
						
							|  |  |  |                router.subscribe((_) => { | 
					
						
							|  |  |  |                  expect(el).toHaveText('root { parent { hello } }'); | 
					
						
							|  |  |  |                  expect(applicationRef.hostComponent.location.path()).toEqual('/parent/child'); | 
					
						
							|  |  |  |                  async.done(); | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  |                router.navigate('/parent/child'); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should bootstrap an app with a custom app base href', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          bootstrap(HierarchyAppCmp, [testBindings, bind(appBaseHrefToken).toValue('/my/app')]) | 
					
						
							|  |  |  |              .then((applicationRef) => { | 
					
						
							|  |  |  |                var router = applicationRef.hostComponent.router; | 
					
						
							|  |  |  |                router.subscribe((_) => { | 
					
						
							|  |  |  |                  expect(el).toHaveText('root { parent { hello } }'); | 
					
						
							|  |  |  |                  expect(applicationRef.hostComponent.location.path()) | 
					
						
							|  |  |  |                      .toEqual('/my/app/parent/child'); | 
					
						
							|  |  |  |                  async.done(); | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  |                router.navigate('/parent/child'); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  |     // TODO: add a test in which the child component has bindings
 | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'hello-cmp'}) | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  | @View({template: 'hello'}) | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  | class HelloCmp { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'app-cmp'}) | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  | @View({template: "outer { <router-outlet></router-outlet> }", directives: routerDirectives}) | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  | @RouteConfig([{path: '/', component: HelloCmp}]) | 
					
						
							|  |  |  | class AppCmp { | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |   constructor(public router: Router, public location: LocationStrategy) {} | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'parent-cmp'}) | 
					
						
							|  |  |  | @View({template: `parent { <router-outlet></router-outlet> }`, directives: routerDirectives}) | 
					
						
							|  |  |  | @RouteConfig([{path: '/child', component: HelloCmp}]) | 
					
						
							|  |  |  | class ParentCmp { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'app-cmp'}) | 
					
						
							|  |  |  | @View({template: `root { <router-outlet></router-outlet> }`, directives: routerDirectives}) | 
					
						
							| 
									
										
										
										
											2015-06-17 11:57:38 -07:00
										 |  |  | @RouteConfig([{path: '/parent/...', component: ParentCmp}]) | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  | class HierarchyAppCmp { | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |   constructor(public router: Router, public location: LocationStrategy) {} | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-06-08 18:04:13 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'oops-cmp'}) | 
					
						
							|  |  |  | @View({template: "oh no"}) | 
					
						
							|  |  |  | class BrokenCmp { | 
					
						
							|  |  |  |   constructor() { throw new BaseException('oops!'); } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'app-cmp'}) | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  | @View({template: "outer { <router-outlet></router-outlet> }", directives: routerDirectives}) | 
					
						
							| 
									
										
										
										
											2015-06-08 18:04:13 -07:00
										 |  |  | @RouteConfig([{path: '/cause-error', component: BrokenCmp}]) | 
					
						
							|  |  |  | class BrokenAppCmp { | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |   constructor(public router: Router, public location: LocationStrategy) {} | 
					
						
							| 
									
										
										
										
											2015-06-08 18:04:13 -07:00
										 |  |  | } |