| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   AsyncTestCompleter, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   proxy, | 
					
						
							|  |  |  |   it, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   inject, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							|  |  |  |   beforeEachBindings, | 
					
						
							|  |  |  |   SpyObject | 
					
						
							|  |  |  | } from 'angular2/test_lib'; | 
					
						
							|  |  |  | import {IMPLEMENTS} from 'angular2/src/facade/lang'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {Promise, PromiseWrapper} from 'angular2/src/facade/async'; | 
					
						
							|  |  |  | import {Router, RootRouter} from 'angular2/src/router/router'; | 
					
						
							|  |  |  | import {Pipeline} from 'angular2/src/router/pipeline'; | 
					
						
							|  |  |  | import {RouterOutlet} from 'angular2/src/router/router_outlet'; | 
					
						
							|  |  |  | import {SpyLocation} from 'angular2/src/mock/location_mock'; | 
					
						
							|  |  |  | import {Location} from 'angular2/src/router/location'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {RouteRegistry} from 'angular2/src/router/route_registry'; | 
					
						
							|  |  |  | import {DirectiveResolver} from 'angular2/src/core/compiler/directive_resolver'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {bind} from 'angular2/di'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							|  |  |  |   describe('Router', () => { | 
					
						
							|  |  |  |     var router, location; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     beforeEachBindings(() => [ | 
					
						
							|  |  |  |       Pipeline, | 
					
						
							|  |  |  |       RouteRegistry, | 
					
						
							|  |  |  |       DirectiveResolver, | 
					
						
							|  |  |  |       bind(Location).toClass(SpyLocation), | 
					
						
							| 
									
										
										
										
											2015-06-03 13:42:57 -07:00
										 |  |  |       bind(Router) | 
					
						
							|  |  |  |           .toFactory((registry, pipeline, | 
					
						
							|  |  |  |                       location) => { return new RootRouter(registry, pipeline, location, AppCmp); }, | 
					
						
							|  |  |  |                      [RouteRegistry, Pipeline, Location]) | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  |     ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     beforeEach(inject([Router, Location], (rtr, loc) => { | 
					
						
							|  |  |  |       router = rtr; | 
					
						
							|  |  |  |       location = loc; | 
					
						
							|  |  |  |     })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should navigate based on the initial URL state', inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          var outlet = makeDummyOutlet(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  |          router.config({'path': '/', 'component': DummyComponent}) | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  |              .then((_) => router.registerOutlet(outlet)) | 
					
						
							|  |  |  |              .then((_) => { | 
					
						
							|  |  |  |                expect(outlet.spy('activate')).toHaveBeenCalled(); | 
					
						
							|  |  |  |                expect(location.urlChanges).toEqual([]); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should activate viewports and update URL on navigate', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          var outlet = makeDummyOutlet(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          router.registerOutlet(outlet) | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  |              .then((_) => router.config({'path': '/a', 'component': DummyComponent})) | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  |              .then((_) => router.navigate('/a')) | 
					
						
							|  |  |  |              .then((_) => { | 
					
						
							|  |  |  |                expect(outlet.spy('activate')).toHaveBeenCalled(); | 
					
						
							|  |  |  |                expect(location.urlChanges).toEqual(['/a']); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should navigate after being configured', inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |          var outlet = makeDummyOutlet(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          router.registerOutlet(outlet) | 
					
						
							|  |  |  |              .then((_) => router.navigate('/a')) | 
					
						
							| 
									
										
										
										
											2015-06-03 13:42:57 -07:00
										 |  |  |              .then((_) => { | 
					
						
							|  |  |  |                expect(outlet.spy('activate')).not.toHaveBeenCalled(); | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  |                return router.config({'path': '/a', 'component': DummyComponent}); | 
					
						
							| 
									
										
										
										
											2015-06-03 13:42:57 -07:00
										 |  |  |              }) | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  |              .then((_) => { | 
					
						
							|  |  |  |                expect(outlet.spy('activate')).toHaveBeenCalled(); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @proxy | 
					
						
							|  |  |  | @IMPLEMENTS(RouterOutlet) | 
					
						
							|  |  |  | class DummyOutlet extends SpyObject { | 
					
						
							|  |  |  |   noSuchMethod(m) { return super.noSuchMethod(m) } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-21 13:59:14 -07:00
										 |  |  | class DummyComponent {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  | function makeDummyOutlet() { | 
					
						
							|  |  |  |   var ref = new DummyOutlet(); | 
					
						
							|  |  |  |   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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class AppCmp {} |