| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   it, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   xit, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							|  |  |  |   afterEach | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | } from '@angular/core/testing/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {I18nPluralPipe} from '@angular/common'; | 
					
						
							|  |  |  | import {PipeResolver} from '@angular/compiler/src/pipe_resolver'; | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |   describe("I18nPluralPipe", () => { | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |     var pipe; | 
					
						
							|  |  |  |     var mapping = {'=0': 'No messages.', '=1': 'One message.', 'other': 'There are some messages.'}; | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |     var interpolatedMapping = | 
					
						
							|  |  |  |         {'=0': 'No messages.', '=1': 'One message.', 'other': 'There are # messages, that is #.'}; | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     beforeEach(() => { pipe = new I18nPluralPipe(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should be marked as pure', | 
					
						
							|  |  |  |        () => { expect(new PipeResolver().resolve(I18nPluralPipe).pure).toEqual(true); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -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-04-12 09:40:37 -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-04-12 09:40:37 -07:00
										 |  |  |       it("should return other text if value is anything other than 0 or 1", () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |         var val = pipe.transform(6, mapping); | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |         expect(val).toEqual('There are some messages.'); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |       it("should interpolate the value into the text where indicated", () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |         var val = pipe.transform(6, interpolatedMapping); | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |         expect(val).toEqual('There are 6 messages, that is 6.'); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |       it("should use 'other' if value is undefined", () => { | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |         var messageLength; | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |         var val = pipe.transform(messageLength, interpolatedMapping); | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |         expect(val).toEqual('There are  messages, that is .'); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-12 09:40:37 -07:00
										 |  |  |       it("should not support bad arguments", | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |          () => { expect(() => pipe.transform(0, 'hey')).toThrowError(); }); | 
					
						
							| 
									
										
										
										
											2016-02-26 10:02:52 -08:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } |