| 
									
										
										
										
											2016-06-23 09:47:54 -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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-23 11:44:05 -07:00
										 |  |  | import {I18nPluralPipe, NgLocalization} from '@angular/common'; | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {PipeResolver} from '@angular/compiler/src/pipe_resolver'; | 
					
						
							| 
									
										
										
										
											2016-09-27 17:12:25 -07:00
										 |  |  | import {beforeEach, describe, expect, it} from '@angular/core/testing/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |   describe('I18nPluralPipe', () => { | 
					
						
							| 
									
										
										
										
											2016-06-23 11:44:05 -07:00
										 |  |  |     var localization: NgLocalization; | 
					
						
							| 
									
										
										
										
											2016-06-17 10:57:32 -07:00
										 |  |  |     var pipe: I18nPluralPipe; | 
					
						
							| 
									
										
										
										
											2016-06-23 11:44:05 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     var mapping = { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       '=0': 'No messages.', | 
					
						
							|  |  |  |       '=1': 'One message.', | 
					
						
							| 
									
										
										
										
											2016-06-23 11:44:05 -07:00
										 |  |  |       'many': 'Many messages.', | 
					
						
							|  |  |  |       'other': 'There are # messages, that is #.', | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     }; | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-23 11:44:05 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       localization = new TestLocalization(); | 
					
						
							|  |  |  |       pipe = new I18nPluralPipe(localization); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     it('should be marked as pure', | 
					
						
							|  |  |  |        () => { expect(new PipeResolver().resolve(I18nPluralPipe).pure).toEqual(true); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('transform', () => { | 
					
						
							|  |  |  |       it('should return 0 text if value is 0', () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |         var val = pipe.transform(0, mapping); | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |         expect(val).toEqual('No messages.'); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should return 1 text if value is 1', () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |         var val = pipe.transform(1, mapping); | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |         expect(val).toEqual('One message.'); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-23 11:44:05 -07:00
										 |  |  |       it('should return category messages', () => { | 
					
						
							|  |  |  |         var val = pipe.transform(4, mapping); | 
					
						
							|  |  |  |         expect(val).toEqual('Many messages.'); | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should interpolate the value into the text where indicated', () => { | 
					
						
							| 
									
										
										
										
											2016-06-23 11:44:05 -07:00
										 |  |  |         var val = pipe.transform(6, mapping); | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |         expect(val).toEqual('There are 6 messages, that is 6.'); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-23 11:44:05 -07:00
										 |  |  |       it('should use "" if value is undefined', () => { | 
					
						
							|  |  |  |         var val = pipe.transform(void(0), mapping); | 
					
						
							|  |  |  |         expect(val).toEqual(''); | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should not support bad arguments', | 
					
						
							| 
									
										
										
										
											2016-06-17 10:57:32 -07:00
										 |  |  |          () => { expect(() => pipe.transform(0, <any>'hey')).toThrowError(); }); | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-06-23 11:44:05 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | class TestLocalization extends NgLocalization { | 
					
						
							|  |  |  |   getPluralCategory(value: number): string { return value > 1 && value < 6 ? 'many' : 'other'; } | 
					
						
							|  |  |  | } |