| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  | import {ddescribe, describe, it, iit, xit, expect, beforeEach, afterEach, inject,} from '@angular/core/testing/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {} from '@angular/core/testing/testing_internal'; | 
					
						
							|  |  |  | import {browserDetection} from '@angular/platform-browser/testing'; | 
					
						
							|  |  |  | import {TestComponentBuilder, ComponentFixture} from '@angular/compiler/testing'; | 
					
						
							|  |  |  | import {AsyncTestCompleter} from '@angular/core/testing/testing_internal'; | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-28 17:50:03 -07:00
										 |  |  | import {Component} from '@angular/core'; | 
					
						
							|  |  |  | import {SlicePipe} from '@angular/common'; | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |   describe('SlicePipe', () => { | 
					
						
							| 
									
										
										
										
											2015-10-27 12:43:34 -07:00
										 |  |  |     var list: number[]; | 
					
						
							| 
									
										
										
										
											2016-06-17 10:57:32 -07:00
										 |  |  |     var str: string; | 
					
						
							|  |  |  |     var pipe: SlicePipe; | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       list = [1, 2, 3, 4, 5]; | 
					
						
							|  |  |  |       str = 'tuvwxyz'; | 
					
						
							|  |  |  |       pipe = new SlicePipe(); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('supports', () => { | 
					
						
							| 
									
										
										
										
											2016-06-17 10:57:32 -07:00
										 |  |  |       it('should support strings', () => { expect(() => pipe.transform(str, 0)).not.toThrow(); }); | 
					
						
							|  |  |  |       it('should support lists', () => { expect(() => pipe.transform(list, 0)).not.toThrow(); }); | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-17 10:57:32 -07:00
										 |  |  |       it('should not support other objects', | 
					
						
							|  |  |  |          () => { expect(() => pipe.transform({}, 0)).toThrow(); }); | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('transform', () => { | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-17 10:57:32 -07:00
										 |  |  |       it('should return null if the value is null', | 
					
						
							|  |  |  |          () => { expect(pipe.transform(null, 1)).toBe(null); }); | 
					
						
							| 
									
										
										
										
											2016-02-18 17:14:40 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  |       it('should return all items after START index when START is positive and END is omitted', | 
					
						
							|  |  |  |          () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |            expect(pipe.transform(list, 3)).toEqual([4, 5]); | 
					
						
							|  |  |  |            expect(pipe.transform(str, 3)).toEqual('wxyz'); | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return last START items when START is negative and END is omitted', () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |         expect(pipe.transform(list, -3)).toEqual([3, 4, 5]); | 
					
						
							|  |  |  |         expect(pipe.transform(str, -3)).toEqual('xyz'); | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return all items between START and END index when START and END are positive', | 
					
						
							|  |  |  |          () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |            expect(pipe.transform(list, 1, 3)).toEqual([2, 3]); | 
					
						
							|  |  |  |            expect(pipe.transform(str, 1, 3)).toEqual('uv'); | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return all items between START and END from the end when START and END are negative', | 
					
						
							|  |  |  |          () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |            expect(pipe.transform(list, -4, -2)).toEqual([2, 3]); | 
					
						
							|  |  |  |            expect(pipe.transform(str, -4, -2)).toEqual('wx'); | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return an empty value if START is greater than END', () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |         expect(pipe.transform(list, 4, 2)).toEqual([]); | 
					
						
							|  |  |  |         expect(pipe.transform(str, 4, 2)).toEqual(''); | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return an empty value if START greater than input length', () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |         expect(pipe.transform(list, 99)).toEqual([]); | 
					
						
							|  |  |  |         expect(pipe.transform(str, 99)).toEqual(''); | 
					
						
							| 
									
										
										
										
											2015-08-30 17:04:48 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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', () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |           expect(pipe.transform(list, -99)).toEqual([1, 2, 3, 4, 5]); | 
					
						
							|  |  |  |           expect(pipe.transform(str, -99)).toEqual('tuvwxyz'); | 
					
						
							| 
									
										
										
										
											2015-09-28 00:38:30 +02:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should not modify the input list', () => { | 
					
						
							| 
									
										
										
										
											2016-04-22 15:33:32 -07:00
										 |  |  |           expect(pipe.transform(list, 2)).toEqual([3, 4, 5]); | 
					
						
							| 
									
										
										
										
											2015-09-28 00:38:30 +02:00
										 |  |  |           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', | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |          inject( | 
					
						
							|  |  |  |              [TestComponentBuilder, AsyncTestCompleter], | 
					
						
							|  |  |  |              (tcb: TestComponentBuilder, async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |                tcb.createAsync(TestComp).then((fixture) => { | 
					
						
							|  |  |  |                  let mutable: number[] = [1, 2]; | 
					
						
							|  |  |  |                  fixture.debugElement.componentInstance.data = mutable; | 
					
						
							|  |  |  |                  fixture.detectChanges(); | 
					
						
							|  |  |  |                  expect(fixture.debugElement.nativeElement).toHaveText('2'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  mutable.push(3); | 
					
						
							|  |  |  |                  fixture.detectChanges(); | 
					
						
							|  |  |  |                  expect(fixture.debugElement.nativeElement).toHaveText('2,3'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  async.done(); | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  |              })); | 
					
						
							| 
									
										
										
										
											2015-10-27 12:43:34 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							|  |  |  | } |