| 
									
										
										
										
											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-07-21 17:12:00 -07:00
										 |  |  | import {fakeAsync, tick} from '@angular/core/testing'; | 
					
						
							| 
									
										
										
										
											2017-03-02 12:12:46 -08:00
										 |  |  | import {describe, expect, it} from '@angular/core/testing/src/testing_internal'; | 
					
						
							| 
									
										
										
										
											2017-02-23 20:53:29 +03:00
										 |  |  | import {AbstractControl, AsyncValidatorFn, FormArray, FormControl, Validators} from '@angular/forms'; | 
					
						
							| 
									
										
										
										
											2017-12-17 15:10:54 -08:00
										 |  |  | import {normalizeAsyncValidator} from '@angular/forms/src/directives/normalize_validator'; | 
					
						
							|  |  |  | import {AsyncValidator, ValidationErrors, ValidatorFn} from '@angular/forms/src/directives/validators'; | 
					
						
							| 
									
										
										
										
											2016-06-27 00:52:50 +02:00
										 |  |  | import {Observable} from 'rxjs/Observable'; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  | import {of } from 'rxjs/observable/of'; | 
					
						
							|  |  |  | import {timer} from 'rxjs/observable/timer'; | 
					
						
							|  |  |  | import {first} from 'rxjs/operator/first'; | 
					
						
							|  |  |  | import {map} from 'rxjs/operator/map'; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-17 15:10:54 -08:00
										 |  |  | (function() { | 
					
						
							| 
									
										
										
										
											2017-02-23 20:53:29 +03:00
										 |  |  |   function validator(key: string, error: any): ValidatorFn { | 
					
						
							|  |  |  |     return (c: AbstractControl) => { | 
					
						
							|  |  |  |       const r: ValidationErrors = {}; | 
					
						
							| 
									
										
										
										
											2016-09-09 12:04:38 -07:00
										 |  |  |       r[key] = error; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       return r; | 
					
						
							| 
									
										
										
										
											2016-07-21 17:12:00 -07:00
										 |  |  |     }; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-21 03:26:51 +03:00
										 |  |  |   class AsyncValidatorDirective implements AsyncValidator { | 
					
						
							| 
									
										
										
										
											2016-06-27 00:52:50 +02:00
										 |  |  |     constructor(private expected: string, private error: any) {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-23 20:53:29 +03:00
										 |  |  |     validate(c: any): Observable<ValidationErrors> { | 
					
						
							| 
									
										
										
										
											2016-06-27 00:52:50 +02:00
										 |  |  |       return Observable.create((obs: any) => { | 
					
						
							|  |  |  |         const error = this.expected !== c.value ? this.error : null; | 
					
						
							|  |  |  |         obs.next(error); | 
					
						
							|  |  |  |         obs.complete(); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |   describe('Validators', () => { | 
					
						
							| 
									
										
										
										
											2017-04-06 09:41:10 -06:00
										 |  |  |     describe('min', () => { | 
					
						
							|  |  |  |       it('should not error on an empty string', | 
					
						
							|  |  |  |          () => { expect(Validators.min(2)(new FormControl(''))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on null', | 
					
						
							|  |  |  |          () => { expect(Validators.min(2)(new FormControl(null))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on undefined', | 
					
						
							|  |  |  |          () => { expect(Validators.min(2)(new FormControl(undefined))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-07 20:22:23 -07:00
										 |  |  |       it('should return null if NaN after parsing', | 
					
						
							|  |  |  |          () => { expect(Validators.min(2)(new FormControl('a'))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2017-04-06 09:41:10 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-07 20:22:23 -07:00
										 |  |  |       it('should return a validation error on small values', () => { | 
					
						
							| 
									
										
										
										
											2017-04-06 09:41:10 -06:00
										 |  |  |         expect(Validators.min(2)(new FormControl(1))).toEqual({'min': {'min': 2, 'actual': 1}}); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-07 20:22:23 -07:00
										 |  |  |       it('should return a validation error on small values converted from strings', () => { | 
					
						
							|  |  |  |         expect(Validators.min(2)(new FormControl('1'))).toEqual({'min': {'min': 2, 'actual': '1'}}); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 09:41:10 -06:00
										 |  |  |       it('should not error on big values', | 
					
						
							|  |  |  |          () => { expect(Validators.min(2)(new FormControl(3))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on equal values', | 
					
						
							|  |  |  |          () => { expect(Validators.min(2)(new FormControl(2))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on equal values when value is string', | 
					
						
							|  |  |  |          () => { expect(Validators.min(2)(new FormControl('2'))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2017-06-07 20:22:23 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('should validate as expected when min value is a string', () => { | 
					
						
							|  |  |  |         expect(Validators.min('2' as any)(new FormControl(1))).toEqual({ | 
					
						
							|  |  |  |           'min': {'min': '2', 'actual': 1} | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return null if min value is undefined', | 
					
						
							|  |  |  |          () => { expect(Validators.min(undefined as any)(new FormControl(3))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return null if min value is null', | 
					
						
							|  |  |  |          () => { expect(Validators.min(null as any)(new FormControl(3))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2017-04-06 09:41:10 -06:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('max', () => { | 
					
						
							|  |  |  |       it('should not error on an empty string', | 
					
						
							|  |  |  |          () => { expect(Validators.max(2)(new FormControl(''))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on null', | 
					
						
							|  |  |  |          () => { expect(Validators.max(2)(new FormControl(null))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on undefined', | 
					
						
							|  |  |  |          () => { expect(Validators.max(2)(new FormControl(undefined))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-07 20:22:23 -07:00
										 |  |  |       it('should return null if NaN after parsing', | 
					
						
							|  |  |  |          () => { expect(Validators.max(2)(new FormControl('aaa'))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2017-04-06 09:41:10 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-07 20:22:23 -07:00
										 |  |  |       it('should return a validation error on big values', () => { | 
					
						
							| 
									
										
										
										
											2017-04-06 09:41:10 -06:00
										 |  |  |         expect(Validators.max(2)(new FormControl(3))).toEqual({'max': {'max': 2, 'actual': 3}}); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-07 20:22:23 -07:00
										 |  |  |       it('should return a validation error on big values converted from strings', () => { | 
					
						
							|  |  |  |         expect(Validators.max(2)(new FormControl('3'))).toEqual({'max': {'max': 2, 'actual': '3'}}); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-06 09:41:10 -06:00
										 |  |  |       it('should not error on small values', | 
					
						
							|  |  |  |          () => { expect(Validators.max(2)(new FormControl(1))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on equal values', | 
					
						
							|  |  |  |          () => { expect(Validators.max(2)(new FormControl(2))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on equal values when value is string', | 
					
						
							|  |  |  |          () => { expect(Validators.max(2)(new FormControl('2'))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2017-06-07 20:22:23 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('should validate as expected when max value is a string', () => { | 
					
						
							|  |  |  |         expect(Validators.max('2' as any)(new FormControl(3))).toEqual({ | 
					
						
							|  |  |  |           'max': {'max': '2', 'actual': 3} | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return null if max value is undefined', | 
					
						
							|  |  |  |          () => { expect(Validators.max(undefined as any)(new FormControl(3))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should return null if max value is null', | 
					
						
							|  |  |  |          () => { expect(Validators.max(null as any)(new FormControl(3))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2017-04-06 09:41:10 -06:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('required', () => { | 
					
						
							|  |  |  |       it('should error on an empty string', | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |          () => { expect(Validators.required(new FormControl(''))).toEqual({'required': true}); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should error on null', | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |          () => { expect(Validators.required(new FormControl(null))).toEqual({'required': true}); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-30 13:28:38 +01:00
										 |  |  |       it('should not error on undefined', () => { | 
					
						
							|  |  |  |         expect(Validators.required(new FormControl(undefined))).toEqual({'required': true}); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should not error on a non-empty string', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.required(new FormControl('not empty'))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should accept zero as valid', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.required(new FormControl(0))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2017-01-05 20:25:20 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('should error on an empty array', | 
					
						
							|  |  |  |          () => expect(Validators.required(new FormControl([]))).toEqual({'required': true})); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on a non-empty array', | 
					
						
							|  |  |  |          () => expect(Validators.required(new FormControl([1, 2]))).toBeNull()); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-10 13:44:04 +03:00
										 |  |  |     describe('requiredTrue', () => { | 
					
						
							|  |  |  |       it('should error on false', | 
					
						
							|  |  |  |          () => expect(Validators.requiredTrue(new FormControl(false))).toEqual({'required': true})); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on true', | 
					
						
							|  |  |  |          () => expect(Validators.requiredTrue(new FormControl(true))).toBeNull()); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-29 20:07:02 +03:00
										 |  |  |     describe('email', () => { | 
					
						
							| 
									
										
										
										
											2017-12-07 17:24:49 +11:00
										 |  |  |       it('should not error on an empty string', | 
					
						
							|  |  |  |          () => expect(Validators.email(new FormControl(''))).toBeNull()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on null', | 
					
						
							|  |  |  |          () => expect(Validators.email(new FormControl(null))).toBeNull()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-29 20:07:02 +03:00
										 |  |  |       it('should error on invalid email', | 
					
						
							|  |  |  |          () => expect(Validators.email(new FormControl('some text'))).toEqual({'email': true})); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on valid email', | 
					
						
							|  |  |  |          () => expect(Validators.email(new FormControl('test@gmail.com'))).toBeNull()); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('minLength', () => { | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |       it('should not error on an empty string', | 
					
						
							|  |  |  |          () => { expect(Validators.minLength(2)(new FormControl(''))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-10-07 00:12:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |       it('should not error on null', | 
					
						
							|  |  |  |          () => { expect(Validators.minLength(2)(new FormControl(null))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |       it('should not error on undefined', | 
					
						
							| 
									
										
										
										
											2016-12-30 13:28:38 +01:00
										 |  |  |          () => { expect(Validators.minLength(2)(new FormControl(undefined))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should not error on valid strings', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.minLength(2)(new FormControl('aa'))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should error on short strings', () => { | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(Validators.minLength(2)(new FormControl('a'))).toEqual({ | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           'minlength': {'requiredLength': 2, 'actualLength': 1} | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-12-12 22:17:12 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('should not error when FormArray has valid length', () => { | 
					
						
							|  |  |  |         const fa = new FormArray([new FormControl(''), new FormControl('')]); | 
					
						
							|  |  |  |         expect(Validators.minLength(2)(fa)).toBeNull(); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should error when FormArray has invalid length', () => { | 
					
						
							|  |  |  |         const fa = new FormArray([new FormControl('')]); | 
					
						
							|  |  |  |         expect(Validators.minLength(2)(fa)).toEqual({ | 
					
						
							|  |  |  |           'minlength': {'requiredLength': 2, 'actualLength': 1} | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('maxLength', () => { | 
					
						
							|  |  |  |       it('should not error on an empty string', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.maxLength(2)(new FormControl(''))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should not error on null', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.maxLength(2)(new FormControl(null))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-30 13:28:38 +01:00
										 |  |  |       it('should not error on undefined', | 
					
						
							|  |  |  |          () => { expect(Validators.maxLength(2)(new FormControl(undefined))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should not error on valid strings', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.maxLength(2)(new FormControl('aa'))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should error on long strings', () => { | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(Validators.maxLength(2)(new FormControl('aaa'))).toEqual({ | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           'maxlength': {'requiredLength': 2, 'actualLength': 3} | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-12-12 22:17:12 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('should not error when FormArray has valid length', () => { | 
					
						
							|  |  |  |         const fa = new FormArray([new FormControl(''), new FormControl('')]); | 
					
						
							|  |  |  |         expect(Validators.maxLength(2)(fa)).toBeNull(); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should error when FormArray has invalid length', () => { | 
					
						
							|  |  |  |         const fa = new FormArray([new FormControl(''), new FormControl('')]); | 
					
						
							|  |  |  |         expect(Validators.maxLength(1)(fa)).toEqual({ | 
					
						
							|  |  |  |           'maxlength': {'requiredLength': 1, 'actualLength': 2} | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('pattern', () => { | 
					
						
							|  |  |  |       it('should not error on an empty string', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.pattern('[a-zA-Z ]+')(new FormControl(''))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should not error on null', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.pattern('[a-zA-Z ]+')(new FormControl(null))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-30 13:28:38 +01:00
										 |  |  |       it('should not error on undefined', () => { | 
					
						
							|  |  |  |         expect(Validators.pattern('[a-zA-Z ]+')(new FormControl(undefined))).toBeNull(); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-05 01:14:23 +02:00
										 |  |  |       it('should not error on null value and "null" pattern', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.pattern('null')(new FormControl(null))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-10-05 01:14:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |       it('should not error on valid strings', | 
					
						
							| 
									
										
										
										
											2016-10-19 19:37:54 +03:00
										 |  |  |          () => expect(Validators.pattern('[a-zA-Z ]*')(new FormControl('aaAA'))).toBeNull()); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should error on failure to match string', () => { | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(Validators.pattern('[a-zA-Z ]*')(new FormControl('aaa0'))).toEqual({ | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           'pattern': {'requiredPattern': '^[a-zA-Z ]*$', 'actualValue': 'aaa0'} | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-10-19 19:37:54 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('should accept RegExp object', () => { | 
					
						
							|  |  |  |         const pattern: RegExp = new RegExp('[a-zA-Z ]+'); | 
					
						
							|  |  |  |         expect(Validators.pattern(pattern)(new FormControl('aaAA'))).toBeNull(); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should error on failure to match RegExp object', () => { | 
					
						
							|  |  |  |         const pattern: RegExp = new RegExp('^[a-zA-Z ]*$'); | 
					
						
							|  |  |  |         expect(Validators.pattern(pattern)(new FormControl('aaa0'))).toEqual({ | 
					
						
							|  |  |  |           'pattern': {'requiredPattern': '/^[a-zA-Z ]*$/', 'actualValue': 'aaa0'} | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on "null" pattern', | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |          () => expect(Validators.pattern(null !)(new FormControl('aaAA'))).toBeNull()); | 
					
						
							| 
									
										
										
										
											2016-10-19 19:37:54 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on "undefined" pattern', | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |          () => expect(Validators.pattern(undefined !)(new FormControl('aaAA'))).toBeNull()); | 
					
						
							| 
									
										
										
										
											2017-09-18 22:28:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-18 23:58:03 +01:00
										 |  |  |       it('should work with pattern string containing both boundary symbols', | 
					
						
							| 
									
										
										
										
											2017-09-18 22:28:36 +02:00
										 |  |  |          () => expect(Validators.pattern('^[aA]*$')(new FormControl('aaAA'))).toBeNull()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-18 23:58:03 +01:00
										 |  |  |       it('should work with pattern string containing only start boundary symbols', | 
					
						
							|  |  |  |          () => expect(Validators.pattern('^[aA]*')(new FormControl('aaAA'))).toBeNull()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should work with pattern string containing only end boundary symbols', | 
					
						
							|  |  |  |          () => expect(Validators.pattern('[aA]*$')(new FormControl('aaAA'))).toBeNull()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should work with pattern string not containing any boundary symbols', | 
					
						
							| 
									
										
										
										
											2017-09-18 22:28:36 +02:00
										 |  |  |          () => expect(Validators.pattern('[aA]*')(new FormControl('aaAA'))).toBeNull()); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('compose', () => { | 
					
						
							|  |  |  |       it('should return null when given null', | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |          () => { expect(Validators.compose(null !)).toBe(null); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should collect errors from all the validators', () => { | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |         const c = Validators.compose([validator('a', true), validator('b', true)]) !; | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(c(new FormControl(''))).toEqual({'a': true, 'b': true}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should run validators left to right', () => { | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |         const c = Validators.compose([validator('a', 1), validator('a', 2)]) !; | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(c(new FormControl(''))).toEqual({'a': 2}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should return null when no errors', () => { | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |         const c = Validators.compose([Validators.nullValidator, Validators.nullValidator]) !; | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |         expect(c(new FormControl(''))).toBeNull(); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should ignore nulls', () => { | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |         const c = Validators.compose([null !, Validators.required]) !; | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(c(new FormControl(''))).toEqual({'required': true}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('composeAsync', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |       describe('promises', () => { | 
					
						
							|  |  |  |         function promiseValidator(response: {[key: string]: any}): AsyncValidatorFn { | 
					
						
							|  |  |  |           return (c: AbstractControl) => { | 
					
						
							|  |  |  |             const res = c.value != 'expected' ? response : null; | 
					
						
							|  |  |  |             return Promise.resolve(res); | 
					
						
							|  |  |  |           }; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should return null when given null', | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |            () => { expect(Validators.composeAsync(null !)).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it('should collect errors from all the validators', fakeAsync(() => { | 
					
						
							|  |  |  |              const v = Validators.composeAsync( | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |                  [promiseValidator({'one': true}), promiseValidator({'two': true})]) !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |              let errorMap: {[key: string]: any} = undefined !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |              first.call(v(new FormControl('invalid'))) | 
					
						
							|  |  |  |                  .subscribe((errors: {[key: string]: any}) => errorMap = errors); | 
					
						
							|  |  |  |              tick(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              expect(errorMap).toEqual({'one': true, 'two': true}); | 
					
						
							|  |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should normalize and evaluate async validator-directives correctly', fakeAsync(() => { | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |              const v = Validators.composeAsync([normalizeAsyncValidator( | 
					
						
							|  |  |  |                  new AsyncValidatorDirective('expected', {'one': true}))]) !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |              let errorMap: {[key: string]: any} = undefined !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |              first.call(v(new FormControl('invalid'))) | 
					
						
							|  |  |  |                  .subscribe((errors: {[key: string]: any}) => errorMap = errors); | 
					
						
							|  |  |  |              tick(); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |              expect(errorMap).toEqual({'one': true}); | 
					
						
							|  |  |  |            })); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |         it('should return null when no errors', fakeAsync(() => { | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |              const v = Validators.composeAsync([promiseValidator({'one': true})]) !; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |              let errorMap: {[key: string]: any} = undefined !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |              first.call(v(new FormControl('expected'))) | 
					
						
							|  |  |  |                  .subscribe((errors: {[key: string]: any}) => errorMap = errors); | 
					
						
							|  |  |  |              tick(); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |              expect(errorMap).toBeNull(); | 
					
						
							|  |  |  |            })); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |         it('should ignore nulls', fakeAsync(() => { | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |              const v = Validators.composeAsync([promiseValidator({'one': true}), null !]) !; | 
					
						
							| 
									
										
										
										
											2016-06-27 00:52:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |              let errorMap: {[key: string]: any} = undefined !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |              first.call(v(new FormControl('invalid'))) | 
					
						
							|  |  |  |                  .subscribe((errors: {[key: string]: any}) => errorMap = errors); | 
					
						
							|  |  |  |              tick(); | 
					
						
							| 
									
										
										
										
											2016-06-27 00:52:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |              expect(errorMap).toEqual({'one': true}); | 
					
						
							|  |  |  |            })); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('observables', () => { | 
					
						
							|  |  |  |         function observableValidator(response: {[key: string]: any}): AsyncValidatorFn { | 
					
						
							|  |  |  |           return (c: AbstractControl) => { | 
					
						
							|  |  |  |             const res = c.value != 'expected' ? response : null; | 
					
						
							|  |  |  |             return of (res); | 
					
						
							|  |  |  |           }; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-06-27 00:52:50 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |         it('should return null when given null', | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |            () => { expect(Validators.composeAsync(null !)).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |         it('should collect errors from all the validators', () => { | 
					
						
							|  |  |  |           const v = Validators.composeAsync( | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |               [observableValidator({'one': true}), observableValidator({'two': true})]) !; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |           let errorMap: {[key: string]: any} = undefined !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |           first.call(v(new FormControl('invalid'))) | 
					
						
							|  |  |  |               .subscribe((errors: {[key: string]: any}) => errorMap = errors); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(errorMap).toEqual({'one': true, 'two': true}); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |         it('should normalize and evaluate async validator-directives correctly', () => { | 
					
						
							|  |  |  |           const v = Validators.composeAsync( | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |               [normalizeAsyncValidator(new AsyncValidatorDirective('expected', {'one': true}))]) !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |           let errorMap: {[key: string]: any} = undefined !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |           first.call(v(new FormControl('invalid'))) | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |               .subscribe((errors: {[key: string]: any}) => errorMap = errors) !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |           expect(errorMap).toEqual({'one': true}); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |         it('should return null when no errors', () => { | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |           const v = Validators.composeAsync([observableValidator({'one': true})]) !; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |           let errorMap: {[key: string]: any} = undefined !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |           first.call(v(new FormControl('expected'))) | 
					
						
							|  |  |  |               .subscribe((errors: {[key: string]: any}) => errorMap = errors); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(errorMap).toBeNull(); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should ignore nulls', () => { | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |           const v = Validators.composeAsync([observableValidator({'one': true}), null !]) !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |           let errorMap: {[key: string]: any} = undefined !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |           first.call(v(new FormControl('invalid'))) | 
					
						
							|  |  |  |               .subscribe((errors: {[key: string]: any}) => errorMap = errors); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(errorMap).toEqual({'one': true}); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should wait for all validators before setting errors', fakeAsync(() => { | 
					
						
							|  |  |  |              function getTimerObs(time: number, errorMap: {[key: string]: any}): AsyncValidatorFn { | 
					
						
							|  |  |  |                return (c: AbstractControl) => { return map.call(timer(time), () => errorMap); }; | 
					
						
							|  |  |  |              } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              const v = Validators.composeAsync( | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |                  [getTimerObs(100, {one: true}), getTimerObs(200, {two: true})]) !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-04-17 11:13:30 -07:00
										 |  |  |              let errorMap: {[key: string]: any} = undefined !; | 
					
						
							| 
									
										
										
										
											2017-03-16 10:15:17 -07:00
										 |  |  |              first.call(v(new FormControl('invalid'))) | 
					
						
							|  |  |  |                  .subscribe((errors: {[key: string]: any}) => errorMap = errors); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              tick(100); | 
					
						
							|  |  |  |              expect(errorMap).not.toBeDefined( | 
					
						
							|  |  |  |                  `Expected errors not to be set until all validators came back.`); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              tick(100); | 
					
						
							|  |  |  |              expect(errorMap).toEqual( | 
					
						
							|  |  |  |                  {one: true, two: true}, `Expected errors to merge once all validators resolved.`); | 
					
						
							|  |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2017-12-16 14:42:55 -08:00
										 |  |  | })(); |