| 
									
										
										
										
											2015-10-13 00:29:13 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   it, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   xit, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							| 
									
										
										
										
											2015-09-28 00:38:30 +02:00
										 |  |  |   afterEach, | 
					
						
							| 
									
										
										
										
											2015-10-27 12:43:34 -07:00
										 |  |  |   browserDetection, | 
					
						
							|  |  |  |   inject, | 
					
						
							|  |  |  |   TestComponentBuilder, | 
					
						
							|  |  |  |   AsyncTestCompleter | 
					
						
							| 
									
										
										
										
											2015-10-13 00:29:13 -07:00
										 |  |  | } from 'angular2/testing_internal'; | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-18 15:55:43 -08:00
										 |  |  | import {Component} from 'angular2/core'; | 
					
						
							|  |  |  | import {SlicePipe} from 'angular2/common'; | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							|  |  |  |   describe("SlicePipe", () => { | 
					
						
							| 
									
										
										
										
											2015-10-27 12:43:34 -07:00
										 |  |  |     var list: number[]; | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  |     var str; | 
					
						
							|  |  |  |     var pipe; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       list = [1, 2, 3, 4, 5]; | 
					
						
							|  |  |  |       str = 'tuvwxyz'; | 
					
						
							|  |  |  |       pipe = new SlicePipe(); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe("supports", () => { | 
					
						
							|  |  |  |       it("should support strings", () => { expect(pipe.supports(str)).toBe(true); }); | 
					
						
							|  |  |  |       it("should support lists", () => { expect(pipe.supports(list)).toBe(true); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it("should not support other objects", () => { | 
					
						
							|  |  |  |         expect(pipe.supports(new Object())).toBe(false); | 
					
						
							|  |  |  |         expect(pipe.supports(null)).toBe(false); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe("transform", () => { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return all items after START index when START is positive and END is omitted', | 
					
						
							|  |  |  |          () => { | 
					
						
							|  |  |  |            expect(pipe.transform(list, [3])).toEqual([4, 5]); | 
					
						
							|  |  |  |            expect(pipe.transform(str, [3])).toEqual('wxyz'); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return last START items when START is negative and END is omitted', () => { | 
					
						
							|  |  |  |         expect(pipe.transform(list, [-3])).toEqual([3, 4, 5]); | 
					
						
							|  |  |  |         expect(pipe.transform(str, [-3])).toEqual('xyz'); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return all items between START and END index when START and END are positive', | 
					
						
							|  |  |  |          () => { | 
					
						
							|  |  |  |            expect(pipe.transform(list, [1, 3])).toEqual([2, 3]); | 
					
						
							|  |  |  |            expect(pipe.transform(str, [1, 3])).toEqual('uv'); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return all items between START and END from the end when START and END are negative', | 
					
						
							|  |  |  |          () => { | 
					
						
							|  |  |  |            expect(pipe.transform(list, [-4, -2])).toEqual([2, 3]); | 
					
						
							|  |  |  |            expect(pipe.transform(str, [-4, -2])).toEqual('wx'); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return an empty value if START is greater than END', () => { | 
					
						
							|  |  |  |         expect(pipe.transform(list, [4, 2])).toEqual([]); | 
					
						
							|  |  |  |         expect(pipe.transform(str, [4, 2])).toEqual(''); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return an empty value if START greater than input length', () => { | 
					
						
							|  |  |  |         expect(pipe.transform(list, [99])).toEqual([]); | 
					
						
							|  |  |  |         expect(pipe.transform(str, [99])).toEqual(''); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-28 00:38:30 +02:00
										 |  |  |       // Makes Edge to disconnect when running the full unit test campaign
 | 
					
						
							|  |  |  |       // TODO: remove when issue is solved: https://github.com/angular/angular/issues/4756
 | 
					
						
							|  |  |  |       if (!browserDetection.isEdge) { | 
					
						
							|  |  |  |         it('should return entire input if START is negative and greater than input length', () => { | 
					
						
							|  |  |  |           expect(pipe.transform(list, [-99])).toEqual([1, 2, 3, 4, 5]); | 
					
						
							|  |  |  |           expect(pipe.transform(str, [-99])).toEqual('tuvwxyz'); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should not modify the input list', () => { | 
					
						
							|  |  |  |           expect(pipe.transform(list, [2])).toEqual([3, 4, 5]); | 
					
						
							|  |  |  |           expect(list).toEqual([1, 2, 3, 4, 5]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-27 12:43:34 -07:00
										 |  |  |     describe('integration', () => { | 
					
						
							|  |  |  |       it('should work with mutable arrays', | 
					
						
							|  |  |  |          inject([TestComponentBuilder, AsyncTestCompleter], (tcb: TestComponentBuilder, async) => { | 
					
						
							| 
									
										
										
										
											2015-10-31 09:50:19 -07:00
										 |  |  |            tcb.createAsync(TestComp).then((fixture) => { | 
					
						
							| 
									
										
										
										
											2015-10-27 12:43:34 -07:00
										 |  |  |              let mutable: number[] = [1, 2]; | 
					
						
							| 
									
										
										
										
											2015-10-31 09:50:19 -07:00
										 |  |  |              fixture.debugElement.componentInstance.data = mutable; | 
					
						
							|  |  |  |              fixture.detectChanges(); | 
					
						
							|  |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('2'); | 
					
						
							| 
									
										
										
										
											2015-10-27 12:43:34 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              mutable.push(3); | 
					
						
							| 
									
										
										
										
											2015-10-31 09:50:19 -07:00
										 |  |  |              fixture.detectChanges(); | 
					
						
							|  |  |  |              expect(fixture.debugElement.nativeElement).toHaveText('2,3'); | 
					
						
							| 
									
										
										
										
											2015-10-27 12:43:34 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2015-10-27 12:43:34 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | @Component({selector: 'test-comp', template: '{{(data | slice:1).join(",") }}', pipes: [SlicePipe]}) | 
					
						
							|  |  |  | class TestComp { | 
					
						
							|  |  |  |   data: any; | 
					
						
							|  |  |  | } |