| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   AsyncTestCompleter, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   proxy, | 
					
						
							|  |  |  |   it, iit, | 
					
						
							|  |  |  |   ddescribe, expect, | 
					
						
							| 
									
										
										
										
											2015-05-01 05:53:38 -07:00
										 |  |  |   inject, beforeEach, beforeEachBindings, | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  |   SpyObject} from 'angular2/test_lib'; | 
					
						
							|  |  |  | import {IMPLEMENTS} from 'angular2/src/facade/lang'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {Promise, PromiseWrapper} from 'angular2/src/facade/async'; | 
					
						
							| 
									
										
										
										
											2015-05-01 05:53:38 -07:00
										 |  |  | import {Router, RootRouter} from 'angular2/src/router/router'; | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | import {Pipeline} from 'angular2/src/router/pipeline'; | 
					
						
							|  |  |  | import {RouterOutlet} from 'angular2/src/router/router_outlet'; | 
					
						
							| 
									
										
										
										
											2015-05-01 15:43:54 -07:00
										 |  |  | import {SpyLocation} from 'angular2/src/mock/location_mock' | 
					
						
							| 
									
										
										
										
											2015-05-01 05:53:38 -07:00
										 |  |  | import {Location} from 'angular2/src/router/location'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {RouteRegistry} from 'angular2/src/router/route_registry'; | 
					
						
							| 
									
										
										
										
											2015-05-11 17:59:39 -07:00
										 |  |  | import {DirectiveResolver} from 'angular2/src/core/compiler/directive_resolver'; | 
					
						
							| 
									
										
										
										
											2015-05-01 05:53:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | import {bind} from 'angular2/di'; | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							|  |  |  |   describe('Router', () => { | 
					
						
							| 
									
										
										
										
											2015-04-21 11:23:23 -07:00
										 |  |  |     var router, | 
					
						
							|  |  |  |         location; | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-01 05:53:38 -07:00
										 |  |  |     beforeEachBindings(() => [ | 
					
						
							|  |  |  |       Pipeline, | 
					
						
							|  |  |  |       RouteRegistry, | 
					
						
							| 
									
										
										
										
											2015-05-11 17:59:39 -07:00
										 |  |  |       DirectiveResolver, | 
					
						
							| 
									
										
										
										
											2015-05-01 15:43:54 -07:00
										 |  |  |       bind(Location).toClass(SpyLocation), | 
					
						
							| 
									
										
										
										
											2015-05-01 05:53:38 -07:00
										 |  |  |       bind(Router).toFactory((registry, pipeline, location) => { | 
					
						
							|  |  |  |         return new RootRouter(registry, pipeline, location, AppCmp); | 
					
						
							|  |  |  |       }, [RouteRegistry, Pipeline, Location]) | 
					
						
							|  |  |  |     ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     beforeEach(inject([Router, Location], (rtr, loc) => { | 
					
						
							|  |  |  |       router = rtr; | 
					
						
							|  |  |  |       location = loc; | 
					
						
							|  |  |  |     })); | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 11:23:23 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should navigate based on the initial URL state', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-05-13 13:03:29 -07:00
										 |  |  |       var outlet = makeDummyOutlet(); | 
					
						
							| 
									
										
										
										
											2015-04-21 11:23:23 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-29 15:47:12 -07:00
										 |  |  |       router.config({'path': '/', 'component': 'Index' }) | 
					
						
							| 
									
										
										
										
											2015-04-21 11:23:23 -07:00
										 |  |  |         .then((_) => router.registerOutlet(outlet)) | 
					
						
							|  |  |  |         .then((_) => { | 
					
						
							|  |  |  |           expect(outlet.spy('activate')).toHaveBeenCalled(); | 
					
						
							| 
									
										
										
										
											2015-04-29 15:47:12 -07:00
										 |  |  |           expect(location.urlChanges).toEqual([]); | 
					
						
							| 
									
										
										
										
											2015-04-21 11:23:23 -07:00
										 |  |  |           async.done(); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |     })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should activate viewports and update URL on navigate', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-05-13 13:03:29 -07:00
										 |  |  |       var outlet = makeDummyOutlet(); | 
					
						
							| 
									
										
										
										
											2015-04-21 11:23:23 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       router.registerOutlet(outlet) | 
					
						
							|  |  |  |         .then((_) => { | 
					
						
							| 
									
										
										
										
											2015-04-29 15:47:12 -07:00
										 |  |  |           return router.config({'path': '/a', 'component': 'A' }); | 
					
						
							| 
									
										
										
										
											2015-04-21 11:23:23 -07:00
										 |  |  |         }) | 
					
						
							|  |  |  |         .then((_) => router.navigate('/a')) | 
					
						
							|  |  |  |         .then((_) => { | 
					
						
							|  |  |  |           expect(outlet.spy('activate')).toHaveBeenCalled(); | 
					
						
							|  |  |  |           expect(location.urlChanges).toEqual(['/a']); | 
					
						
							|  |  |  |           async.done(); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |     })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  |     it('should navigate after being configured', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-05-13 13:03:29 -07:00
										 |  |  |       var outlet = makeDummyOutlet(); | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       router.registerOutlet(outlet) | 
					
						
							|  |  |  |         .then((_) => router.navigate('/a')) | 
					
						
							|  |  |  |         .then((_) => { | 
					
						
							|  |  |  |           expect(outlet.spy('activate')).not.toHaveBeenCalled(); | 
					
						
							| 
									
										
										
										
											2015-04-29 15:47:12 -07:00
										 |  |  |           return router.config({'path': '/a', 'component': 'A' }); | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  |         }) | 
					
						
							|  |  |  |         .then((_) => { | 
					
						
							|  |  |  |           expect(outlet.spy('activate')).toHaveBeenCalled(); | 
					
						
							|  |  |  |           async.done(); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |     })); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @proxy | 
					
						
							|  |  |  | @IMPLEMENTS(RouterOutlet) | 
					
						
							| 
									
										
										
										
											2015-05-13 13:03:29 -07:00
										 |  |  | class DummyOutlet extends SpyObject {noSuchMethod(m){return super.noSuchMethod(m)}} | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-13 13:03:29 -07:00
										 |  |  | function makeDummyOutlet() { | 
					
						
							|  |  |  |   var ref = new DummyOutlet(); | 
					
						
							| 
									
										
										
										
											2015-04-17 09:59:56 -07:00
										 |  |  |   ref.spy('activate').andCallFake((_) => PromiseWrapper.resolve(true)); | 
					
						
							|  |  |  |   ref.spy('canActivate').andCallFake((_) => PromiseWrapper.resolve(true)); | 
					
						
							|  |  |  |   ref.spy('canDeactivate').andCallFake((_) => PromiseWrapper.resolve(true)); | 
					
						
							|  |  |  |   ref.spy('deactivate').andCallFake((_) => PromiseWrapper.resolve(true)); | 
					
						
							|  |  |  |   return ref; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-05-01 05:53:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | class AppCmp {} |