| 
									
										
										
										
											2017-03-17 10:09:42 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {ParamMap, convertToParamMap} from '../src/shared'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | describe('ParamsMap', () => { | 
					
						
							|  |  |  |   it('should returns whether a parameter is present', () => { | 
					
						
							|  |  |  |     const map = convertToParamMap({single: 's', multiple: ['m1', 'm2']}); | 
					
						
							|  |  |  |     expect(map.has('single')).toEqual(true); | 
					
						
							|  |  |  |     expect(map.has('multiple')).toEqual(true); | 
					
						
							|  |  |  |     expect(map.has('not here')).toEqual(false); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-20 09:19:25 -07:00
										 |  |  |   it('should returns the name of the parameters', () => { | 
					
						
							|  |  |  |     const map = convertToParamMap({single: 's', multiple: ['m1', 'm2']}); | 
					
						
							|  |  |  |     expect(map.keys).toEqual(['single', 'multiple']); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-17 10:09:42 -07:00
										 |  |  |   it('should support single valued parameters', () => { | 
					
						
							|  |  |  |     const map = convertToParamMap({single: 's', multiple: ['m1', 'm2']}); | 
					
						
							|  |  |  |     expect(map.get('single')).toEqual('s'); | 
					
						
							|  |  |  |     expect(map.get('multiple')).toEqual('m1'); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should support multiple valued parameters', () => { | 
					
						
							|  |  |  |     const map = convertToParamMap({single: 's', multiple: ['m1', 'm2']}); | 
					
						
							|  |  |  |     expect(map.getAll('single')).toEqual(['s']); | 
					
						
							|  |  |  |     expect(map.getAll('multiple')).toEqual(['m1', 'm2']); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   it('should return `null` when a single valued element is absent', () => { | 
					
						
							|  |  |  |     const map = convertToParamMap({}); | 
					
						
							|  |  |  |     expect(map.get('name')).toEqual(null); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-03-10 17:14:58 +00:00
										 |  |  |   it('should return `[]` when a multiple valued element is absent', () => { | 
					
						
							| 
									
										
										
										
											2017-03-17 10:09:42 -07:00
										 |  |  |     const map = convertToParamMap({}); | 
					
						
							|  |  |  |     expect(map.getAll('name')).toEqual([]); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | }); |