| 
									
										
										
										
											2015-05-06 18:28:24 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   AsyncTestCompleter, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   proxy, | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  |   it, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   inject, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							|  |  |  |   beforeEachBindings, | 
					
						
							|  |  |  |   SpyObject | 
					
						
							|  |  |  | } from 'angular2/test_lib'; | 
					
						
							| 
									
										
										
										
											2015-05-06 18:28:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  | import {Injector, bind} from 'angular2/di'; | 
					
						
							|  |  |  | import {CONST_EXPR} from 'angular2/src/facade/lang'; | 
					
						
							|  |  |  | import {Location, appBaseHrefToken} from 'angular2/src/router/location'; | 
					
						
							| 
									
										
										
										
											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-06 18:28:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							|  |  |  |   describe('Location', () => { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |     var locationStrategy, location; | 
					
						
							| 
									
										
										
										
											2015-05-06 18:28:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  |     function makeLocation(baseHref: string = '/my/app', binding: any = CONST_EXPR([])): Location { | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |       locationStrategy = new MockLocationStrategy(); | 
					
						
							|  |  |  |       locationStrategy.internalBaseHref = baseHref; | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  |       let injector = Injector.resolveAndCreate( | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |           [Location, bind(LocationStrategy).toValue(locationStrategy), binding]); | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  |       return location = injector.get(Location); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     beforeEach(makeLocation); | 
					
						
							| 
									
										
										
										
											2015-05-06 18:28:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 14:49:55 -07:00
										 |  |  |     it('should normalize relative urls on navigate', () => { | 
					
						
							|  |  |  |       location.go('user/btford'); | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |       expect(locationStrategy.path()).toEqual('/my/app/user/btford'); | 
					
						
							| 
									
										
										
										
											2015-05-11 14:49:55 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 11:29:31 -07:00
										 |  |  |     it('should not prepend urls with starting slash when an empty URL is provided', | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |        () => { expect(location.normalizeAbsolutely('')).toEqual(locationStrategy.getBaseHref()); }); | 
					
						
							| 
									
										
										
										
											2015-06-12 11:29:31 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 12:57:35 -07:00
										 |  |  |     it('should not prepend path with an extra slash when a baseHref has a trailing slash', () => { | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  |       let location = makeLocation('/my/slashed/app/'); | 
					
						
							| 
									
										
										
										
											2015-06-12 12:57:35 -07:00
										 |  |  |       expect(location.normalizeAbsolutely('/page')).toEqual('/my/slashed/app/page'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-11 14:49:55 -07:00
										 |  |  |     it('should not append urls with leading slash on navigate', () => { | 
					
						
							| 
									
										
										
										
											2015-05-06 18:28:24 -07:00
										 |  |  |       location.go('/my/app/user/btford'); | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |       expect(locationStrategy.path()).toEqual('/my/app/user/btford'); | 
					
						
							| 
									
										
										
										
											2015-05-06 18:28:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should remove index.html from base href', () => { | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  |       let location = makeLocation('/my/app/index.html'); | 
					
						
							| 
									
										
										
										
											2015-05-11 14:49:55 -07:00
										 |  |  |       location.go('user/btford'); | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |       expect(locationStrategy.path()).toEqual('/my/app/user/btford'); | 
					
						
							| 
									
										
										
										
											2015-05-06 18:28:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should normalize urls on popstate', inject([AsyncTestCompleter], (async) => { | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |          locationStrategy.simulatePopState('/my/app/user/btford'); | 
					
						
							| 
									
										
										
										
											2015-05-29 14:58:41 -07:00
										 |  |  |          location.subscribe((ev) => { | 
					
						
							|  |  |  |            expect(ev['url']).toEqual('/user/btford'); | 
					
						
							|  |  |  |            async.done(); | 
					
						
							|  |  |  |          }) | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2015-05-06 18:28:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should normalize location path', () => { | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |       locationStrategy.internalPath = '/my/app/user/btford'; | 
					
						
							| 
									
										
										
										
											2015-05-06 18:28:24 -07:00
										 |  |  |       expect(location.path()).toEqual('/user/btford'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  |     it('should use optional base href param', () => { | 
					
						
							|  |  |  |       let location = makeLocation('/', bind(appBaseHrefToken).toValue('/my/custom/href')); | 
					
						
							|  |  |  |       location.go('user/btford'); | 
					
						
							| 
									
										
										
										
											2015-06-22 12:14:19 -07:00
										 |  |  |       expect(locationStrategy.path()).toEqual('/my/custom/href/user/btford'); | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2015-07-17 12:14:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should throw when no base href is provided', () => { | 
					
						
							|  |  |  |       var locationStrategy = new MockLocationStrategy(); | 
					
						
							|  |  |  |       locationStrategy.internalBaseHref = null; | 
					
						
							|  |  |  |       expect(() => new Location(locationStrategy)) | 
					
						
							|  |  |  |           .toThrowError( | 
					
						
							|  |  |  |               `No base href set. Either provide a binding to "appBaseHrefToken" or add a base element.`); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2015-06-15 15:41:09 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2015-05-06 18:28:24 -07:00
										 |  |  | } |