| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							| 
									
										
										
										
											2020-05-19 12:08:49 -07:00
										 |  |  |  * Copyright Google LLC All Rights Reserved. | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * 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
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import {fakeAsync, tick} from '@angular/core/testing'; | 
					
						
							| 
									
										
										
										
											2017-03-02 12:12:46 -08:00
										 |  |  | import {AsyncTestCompleter, beforeEach, describe, inject, it} from '@angular/core/testing/src/testing_internal'; | 
					
						
							| 
									
										
										
										
											2020-07-13 01:35:09 +02:00
										 |  |  | import {FormControl, FormGroup, Validators} from '@angular/forms'; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-17 15:10:54 -08:00
										 |  |  | import {FormArray} from '@angular/forms/src/model'; | 
					
						
							| 
									
										
										
										
											2020-07-13 01:35:09 +02:00
										 |  |  | import {asyncValidator, asyncValidatorReturningObservable} from './util'; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-17 15:10:54 -08:00
										 |  |  | (function() { | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  | function otherAsyncValidator() { | 
					
						
							|  |  |  |   return Promise.resolve({'other': true}); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  | function syncValidator(_: any /** TODO #9100 */): any /** TODO #9100 */ { | 
					
						
							|  |  |  |   return null; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2017-01-22 21:37:22 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  | describe('FormControl', () => { | 
					
						
							|  |  |  |   it('should default the value to null', () => { | 
					
						
							|  |  |  |     const c = new FormControl(); | 
					
						
							|  |  |  |     expect(c.value).toBe(null); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('markAllAsTouched', () => { | 
					
						
							|  |  |  |     it('should mark only the control itself as touched', () => { | 
					
						
							|  |  |  |       const control = new FormControl(''); | 
					
						
							|  |  |  |       expect(control.touched).toBe(false); | 
					
						
							|  |  |  |       control.markAllAsTouched(); | 
					
						
							|  |  |  |       expect(control.touched).toBe(true); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('boxed values', () => { | 
					
						
							|  |  |  |     it('should support valid boxed values on creation', () => { | 
					
						
							|  |  |  |       const c = new FormControl({value: 'some val', disabled: true}, null!, null!); | 
					
						
							|  |  |  |       expect(c.disabled).toBe(true); | 
					
						
							|  |  |  |       expect(c.value).toBe('some val'); | 
					
						
							|  |  |  |       expect(c.status).toBe('DISABLED'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-22 00:01:07 +03:00
										 |  |  |     it('should not treat objects as boxed values when `disabled` field is present, but `value` is missing', | 
					
						
							|  |  |  |        () => { | 
					
						
							|  |  |  |          const c = new FormControl({disabled: true}); | 
					
						
							|  |  |  |          expect(c.value).toEqual({disabled: true}); | 
					
						
							|  |  |  |          expect(c.disabled).toBe(false); | 
					
						
							|  |  |  |        }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should honor boxed value with disabled control when validating', () => { | 
					
						
							|  |  |  |       const c = new FormControl({value: '', disabled: true}, Validators.required); | 
					
						
							|  |  |  |       expect(c.disabled).toBe(true); | 
					
						
							|  |  |  |       expect(c.valid).toBe(false); | 
					
						
							|  |  |  |       expect(c.status).toBe('DISABLED'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-09-01 16:51:42 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not treat objects as boxed values if they have more than two props', () => { | 
					
						
							|  |  |  |       const c = new FormControl({value: '', disabled: true, test: 'test'}, null!, null!); | 
					
						
							|  |  |  |       expect(c.value).toEqual({value: '', disabled: true, test: 'test'}); | 
					
						
							|  |  |  |       expect(c.disabled).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not treat objects as boxed values if disabled is missing', () => { | 
					
						
							|  |  |  |       const c = new FormControl({value: '', test: 'test'}, null!, null!); | 
					
						
							|  |  |  |       expect(c.value).toEqual({value: '', test: 'test'}); | 
					
						
							|  |  |  |       expect(c.disabled).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('updateOn', () => { | 
					
						
							|  |  |  |     it('should default to on change', () => { | 
					
						
							|  |  |  |       const c = new FormControl(''); | 
					
						
							|  |  |  |       expect(c.updateOn).toEqual('change'); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should default to on change with an options obj', () => { | 
					
						
							|  |  |  |       const c = new FormControl('', {validators: Validators.required}); | 
					
						
							|  |  |  |       expect(c.updateOn).toEqual('change'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-08-02 18:10:10 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set updateOn when updating on blur', () => { | 
					
						
							|  |  |  |       const c = new FormControl('', {updateOn: 'blur'}); | 
					
						
							|  |  |  |       expect(c.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-08-02 18:10:10 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     describe('in groups and arrays', () => { | 
					
						
							|  |  |  |       it('should default to group updateOn when not set in control', () => { | 
					
						
							|  |  |  |         const g = | 
					
						
							|  |  |  |             new FormGroup({one: new FormControl(), two: new FormControl()}, {updateOn: 'blur'}); | 
					
						
							| 
									
										
										
										
											2017-08-02 18:10:10 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(g.get('one')!.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |         expect(g.get('two')!.updateOn).toEqual('blur'); | 
					
						
							| 
									
										
										
										
											2017-08-09 15:41:53 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should default to array updateOn when not set in control', () => { | 
					
						
							|  |  |  |         const a = new FormArray([new FormControl(), new FormControl()], {updateOn: 'blur'}); | 
					
						
							| 
									
										
										
										
											2017-08-09 15:41:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(a.get([0])!.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |         expect(a.get([1])!.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-08-09 15:41:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should set updateOn with nested groups', () => { | 
					
						
							|  |  |  |         const g = new FormGroup( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |               group: new FormGroup({one: new FormControl(), two: new FormControl()}), | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             {updateOn: 'blur'}); | 
					
						
							| 
									
										
										
										
											2017-08-09 15:41:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(g.get('group.one')!.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |         expect(g.get('group.two')!.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |         expect(g.get('group')!.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-08-09 15:41:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should set updateOn with nested arrays', () => { | 
					
						
							|  |  |  |         const g = new FormGroup( | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |               arr: new FormArray([new FormControl(), new FormControl()]), | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             {updateOn: 'blur'}); | 
					
						
							| 
									
										
										
										
											2017-08-09 15:41:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(g.get(['arr', 0])!.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |         expect(g.get(['arr', 1])!.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |         expect(g.get('arr')!.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-08-09 15:41:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should allow control updateOn to override group updateOn', () => { | 
					
						
							|  |  |  |         const g = new FormGroup( | 
					
						
							|  |  |  |             {one: new FormControl('', {updateOn: 'change'}), two: new FormControl()}, | 
					
						
							|  |  |  |             {updateOn: 'blur'}); | 
					
						
							| 
									
										
										
										
											2017-08-09 15:41:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(g.get('one')!.updateOn).toEqual('change'); | 
					
						
							|  |  |  |         expect(g.get('two')!.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-08-09 15:41:53 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should set updateOn with complex setup', () => { | 
					
						
							|  |  |  |         const g = new FormGroup({ | 
					
						
							|  |  |  |           group: new FormGroup( | 
					
						
							| 
									
										
										
										
											2017-08-09 15:41:53 -07:00
										 |  |  |               {one: new FormControl('', {updateOn: 'change'}), two: new FormControl()}, | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |               {updateOn: 'blur'}), | 
					
						
							|  |  |  |           groupTwo: new FormGroup({one: new FormControl()}, {updateOn: 'submit'}), | 
					
						
							|  |  |  |           three: new FormControl() | 
					
						
							| 
									
										
										
										
											2017-08-09 15:41:53 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(g.get('group.one')!.updateOn).toEqual('change'); | 
					
						
							|  |  |  |         expect(g.get('group.two')!.updateOn).toEqual('blur'); | 
					
						
							|  |  |  |         expect(g.get('groupTwo.one')!.updateOn).toEqual('submit'); | 
					
						
							|  |  |  |         expect(g.get('three')!.updateOn).toEqual('change'); | 
					
						
							| 
									
										
										
										
											2017-08-02 18:10:10 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2017-08-02 18:10:10 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('validator', () => { | 
					
						
							|  |  |  |     it('should run validator with the initial value', () => { | 
					
						
							|  |  |  |       const c = new FormControl('value', Validators.required); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should rerun the validator when the value changes', () => { | 
					
						
							|  |  |  |       const c = new FormControl('value', Validators.required); | 
					
						
							|  |  |  |       c.setValue(null); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support arrays of validator functions if passed', () => { | 
					
						
							|  |  |  |       const c = new FormControl('value', [Validators.required, Validators.minLength(3)]); | 
					
						
							|  |  |  |       c.setValue('a'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('aaa'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support single validator from options obj', () => { | 
					
						
							|  |  |  |       const c = new FormControl(null, {validators: Validators.required}); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |       expect(c.errors).toEqual({required: true}); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('value'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support multiple validators from options obj', () => { | 
					
						
							|  |  |  |       const c = new FormControl(null, {validators: [Validators.required, Validators.minLength(3)]}); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |       expect(c.errors).toEqual({required: true}); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('aa'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |       expect(c.errors).toEqual({minlength: {requiredLength: 3, actualLength: 2}}); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('aaa'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support a null validators value', () => { | 
					
						
							|  |  |  |       const c = new FormControl(null, {validators: null}); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support an empty options obj', () => { | 
					
						
							|  |  |  |       const c = new FormControl(null, {}); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should return errors', () => { | 
					
						
							|  |  |  |       const c = new FormControl(null, Validators.required); | 
					
						
							|  |  |  |       expect(c.errors).toEqual({'required': true}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set single validator', () => { | 
					
						
							|  |  |  |       const c = new FormControl(null); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValidators(Validators.required); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue(null); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('abc'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set multiple validators from array', () => { | 
					
						
							|  |  |  |       const c = new FormControl(''); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValidators([Validators.minLength(5), Validators.required]); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue(''); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('abc'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('abcde'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-01 18:16:49 -07:00
										 |  |  |     it('should override validators using `setValidators` function', () => { | 
					
						
							|  |  |  |       const c = new FormControl(''); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setValidators([Validators.minLength(5), Validators.required]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setValue(''); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setValue('abc'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setValue('abcde'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // Define new set of validators, overriding previously applied ones.
 | 
					
						
							|  |  |  |       c.setValidators([Validators.maxLength(2)]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setValue('abcdef'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setValue('a'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should override validators by setting `control.validator` field value', () => { | 
					
						
							|  |  |  |       const c = new FormControl(''); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // Define new set of validators, overriding previously applied ones.
 | 
					
						
							|  |  |  |       c.validator = Validators.compose([Validators.minLength(5), Validators.required]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setValue(''); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setValue('abc'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setValue('abcde'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       // Define new set of validators, overriding previously applied ones.
 | 
					
						
							|  |  |  |       c.validator = Validators.compose([Validators.maxLength(2)]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setValue('abcdef'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setValue('a'); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should clear validators', () => { | 
					
						
							|  |  |  |       const c = new FormControl('', Validators.required); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.clearValidators(); | 
					
						
							|  |  |  |       expect(c.validator).toEqual(null); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue(''); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should add after clearing', () => { | 
					
						
							|  |  |  |       const c = new FormControl('', Validators.required); | 
					
						
							|  |  |  |       expect(c.valid).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.clearValidators(); | 
					
						
							|  |  |  |       expect(c.validator).toEqual(null); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValidators([Validators.required]); | 
					
						
							|  |  |  |       expect(c.validator).not.toBe(null); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('asyncValidator', () => { | 
					
						
							|  |  |  |     it('should run validator with the initial value', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('value', null!, asyncValidator('expected')); | 
					
						
							|  |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |          expect(c.errors).toEqual({'async': true}); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support validators returning observables', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('value', null!, asyncValidatorReturningObservable); | 
					
						
							|  |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |          expect(c.errors).toEqual({'async': true}); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should rerun the validator when the value changes', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('value', null!, asyncValidator('expected')); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          c.setValue('expected'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should run the async validator only when the sync validator passes', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('', Validators.required, asyncValidator('expected')); | 
					
						
							|  |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.errors).toEqual({'required': true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          c.setValue('some value'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.errors).toEqual({'async': true}); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark the control as pending while running the async validation', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('', null!, asyncValidator('expected')); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.pending).toEqual(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.pending).toEqual(false); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should only use the latest async validation run', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = | 
					
						
							|  |  |  |              new FormControl('', null!, asyncValidator('expected', {'long': 200, 'expected': 100})); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          c.setValue('long'); | 
					
						
							|  |  |  |          c.setValue('expected'); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          tick(300); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support arrays of async validator functions if passed', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = | 
					
						
							|  |  |  |              new FormControl('value', null!, [asyncValidator('expected'), otherAsyncValidator]); | 
					
						
							|  |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.errors).toEqual({'async': true, 'other': true}); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support a single async validator from options obj', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('value', {asyncValidators: asyncValidator('expected')}); | 
					
						
							|  |  |  |          expect(c.pending).toEqual(true); | 
					
						
							|  |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |          expect(c.errors).toEqual({'async': true}); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support multiple async validators from options obj', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl( | 
					
						
							|  |  |  |              'value', {asyncValidators: [asyncValidator('expected'), otherAsyncValidator]}); | 
					
						
							|  |  |  |          expect(c.pending).toEqual(true); | 
					
						
							|  |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |          expect(c.errors).toEqual({'async': true, 'other': true}); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support a mix of validators from options obj', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl( | 
					
						
							|  |  |  |              '', {validators: Validators.required, asyncValidators: asyncValidator('expected')}); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |          expect(c.errors).toEqual({required: true}); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          c.setValue('value'); | 
					
						
							|  |  |  |          expect(c.pending).toBe(true); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          tick(); | 
					
						
							|  |  |  |          expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |          expect(c.errors).toEqual({'async': true}); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should add single async validator', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('value', null!); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          c.setAsyncValidators(asyncValidator('expected')); | 
					
						
							|  |  |  |          expect(c.asyncValidator).not.toEqual(null); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          c.setValue('expected'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should add async validator from array', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('value', null!); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          c.setAsyncValidators([asyncValidator('expected')]); | 
					
						
							|  |  |  |          expect(c.asyncValidator).not.toEqual(null); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          c.setValue('expected'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-07-01 18:16:49 -07:00
										 |  |  |     it('should override validators using `setAsyncValidators` function', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl(''); | 
					
						
							|  |  |  |          expect(c.valid).toEqual(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setAsyncValidators([asyncValidator('expected')]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue(''); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |          expect(c.valid).toEqual(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue('expected'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |          expect(c.valid).toEqual(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          // Define new set of validators, overriding previously applied ones.
 | 
					
						
							|  |  |  |          c.setAsyncValidators([asyncValidator('new expected')]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue('expected'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |          expect(c.valid).toEqual(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue('new expected'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |          expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should override validators by setting `control.asyncValidator` field value', | 
					
						
							|  |  |  |        fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl(''); | 
					
						
							|  |  |  |          expect(c.valid).toEqual(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.asyncValidator = Validators.composeAsync([asyncValidator('expected')]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue(''); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |          expect(c.valid).toEqual(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue('expected'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |          expect(c.valid).toEqual(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          // Define new set of validators, overriding previously applied ones.
 | 
					
						
							|  |  |  |          c.asyncValidator = Validators.composeAsync([asyncValidator('new expected')]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue('expected'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |          expect(c.valid).toEqual(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue('new expected'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |          expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should clear async validators', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('value', [asyncValidator('expected'), otherAsyncValidator]); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          c.clearValidators(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(c.asyncValidator).toEqual(null); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not change validity state if control is disabled while async validating', | 
					
						
							|  |  |  |        fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('value', [asyncValidator('expected')]); | 
					
						
							|  |  |  |          c.disable(); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |          expect(c.status).toEqual('DISABLED'); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   describe('dirty', () => { | 
					
						
							|  |  |  |     it('should be false after creating a control', () => { | 
					
						
							|  |  |  |       const c = new FormControl('value'); | 
					
						
							|  |  |  |       expect(c.dirty).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should be true after changing the value of the control', () => { | 
					
						
							|  |  |  |       const c = new FormControl('value'); | 
					
						
							|  |  |  |       c.markAsDirty(); | 
					
						
							|  |  |  |       expect(c.dirty).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('touched', () => { | 
					
						
							|  |  |  |     it('should be false after creating a control', () => { | 
					
						
							|  |  |  |       const c = new FormControl('value'); | 
					
						
							|  |  |  |       expect(c.touched).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should be true after markAsTouched runs', () => { | 
					
						
							|  |  |  |       const c = new FormControl('value'); | 
					
						
							|  |  |  |       c.markAsTouched(); | 
					
						
							|  |  |  |       expect(c.touched).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('setValue', () => { | 
					
						
							|  |  |  |     let g: FormGroup, c: FormControl; | 
					
						
							|  |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl('oldValue'); | 
					
						
							|  |  |  |       g = new FormGroup({'one': c}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set the value of the control', () => { | 
					
						
							|  |  |  |       c.setValue('newValue'); | 
					
						
							|  |  |  |       expect(c.value).toEqual('newValue'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should invoke ngOnChanges if it is present', () => { | 
					
						
							|  |  |  |       let ngOnChanges: any; | 
					
						
							|  |  |  |       c.registerOnChange((v: any) => ngOnChanges = ['invoked', v]); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('newValue'); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(ngOnChanges).toEqual(['invoked', 'newValue']); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not invoke on change when explicitly specified', () => { | 
					
						
							|  |  |  |       let onChange: any = null; | 
					
						
							|  |  |  |       c.registerOnChange((v: any) => onChange = ['invoked', v]); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('newValue', {emitModelToViewChange: false}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(onChange).toBeNull(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set the parent', () => { | 
					
						
							|  |  |  |       c.setValue('newValue'); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': 'newValue'}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not set the parent when explicitly specified', () => { | 
					
						
							|  |  |  |       c.setValue('newValue', {onlySelf: true}); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': 'oldValue'}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should fire an event', fakeAsync(() => { | 
					
						
							|  |  |  |          c.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |            expect(value).toEqual('newValue'); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue('newValue'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should not fire an event when explicitly specified', fakeAsync(() => { | 
					
						
							|  |  |  |          c.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |            throw 'Should not happen'; | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue('newValue', {emitEvent: false}); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should work on a disabled control', () => { | 
					
						
							|  |  |  |       g.addControl('two', new FormControl('two')); | 
					
						
							|  |  |  |       c.disable(); | 
					
						
							|  |  |  |       c.setValue('new value'); | 
					
						
							|  |  |  |       expect(c.value).toEqual('new value'); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'two': 'two'}); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('patchValue', () => { | 
					
						
							|  |  |  |     let g: FormGroup, c: FormControl; | 
					
						
							|  |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl('oldValue'); | 
					
						
							|  |  |  |       g = new FormGroup({'one': c}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set the value of the control', () => { | 
					
						
							|  |  |  |       c.patchValue('newValue'); | 
					
						
							|  |  |  |       expect(c.value).toEqual('newValue'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should invoke ngOnChanges if it is present', () => { | 
					
						
							|  |  |  |       let ngOnChanges: any; | 
					
						
							|  |  |  |       c.registerOnChange((v: any) => ngOnChanges = ['invoked', v]); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.patchValue('newValue'); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(ngOnChanges).toEqual(['invoked', 'newValue']); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not invoke on change when explicitly specified', () => { | 
					
						
							|  |  |  |       let onChange: any = null; | 
					
						
							|  |  |  |       c.registerOnChange((v: any) => onChange = ['invoked', v]); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.patchValue('newValue', {emitModelToViewChange: false}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(onChange).toBeNull(); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set the parent', () => { | 
					
						
							|  |  |  |       c.patchValue('newValue'); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': 'newValue'}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not set the parent when explicitly specified', () => { | 
					
						
							|  |  |  |       c.patchValue('newValue', {onlySelf: true}); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': 'oldValue'}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should fire an event', fakeAsync(() => { | 
					
						
							|  |  |  |          c.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |            expect(value).toEqual('newValue'); | 
					
						
							|  |  |  |          }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          c.patchValue('newValue'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not fire an event when explicitly specified', fakeAsync(() => { | 
					
						
							|  |  |  |          c.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |            throw 'Should not happen'; | 
					
						
							|  |  |  |          }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          c.patchValue('newValue', {emitEvent: false}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          tick(); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should patch value on a disabled control', () => { | 
					
						
							|  |  |  |       g.addControl('two', new FormControl('two')); | 
					
						
							|  |  |  |       c.disable(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.patchValue('new value'); | 
					
						
							|  |  |  |       expect(c.value).toEqual('new value'); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'two': 'two'}); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('reset()', () => { | 
					
						
							|  |  |  |     let c: FormControl; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl('initial value'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should reset to a specific value if passed', () => { | 
					
						
							|  |  |  |       c.setValue('new value'); | 
					
						
							|  |  |  |       expect(c.value).toBe('new value'); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.reset('initial value'); | 
					
						
							|  |  |  |       expect(c.value).toBe('initial value'); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not set the parent when explicitly specified', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c}); | 
					
						
							|  |  |  |       c.patchValue('newValue', {onlySelf: true}); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': 'initial value'}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should reset to a specific value if passed with boxed value', () => { | 
					
						
							|  |  |  |       c.setValue('new value'); | 
					
						
							|  |  |  |       expect(c.value).toBe('new value'); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.reset({value: 'initial value', disabled: false}); | 
					
						
							|  |  |  |       expect(c.value).toBe('initial value'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should clear the control value if no value is passed', () => { | 
					
						
							|  |  |  |       c.setValue('new value'); | 
					
						
							|  |  |  |       expect(c.value).toBe('new value'); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.reset(); | 
					
						
							|  |  |  |       expect(c.value).toBe(null); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-10-18 07:51:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should update the value of any parent controls with passed value', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c}); | 
					
						
							|  |  |  |       c.setValue('new value'); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': 'new value'}); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.reset('initial value'); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': 'initial value'}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should update the value of any parent controls with null value', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c}); | 
					
						
							|  |  |  |       c.setValue('new value'); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': 'new value'}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.reset(); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': null}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark the control as pristine', () => { | 
					
						
							|  |  |  |       c.markAsDirty(); | 
					
						
							|  |  |  |       expect(c.pristine).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.reset(); | 
					
						
							|  |  |  |       expect(c.pristine).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set the parent pristine state if all pristine', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c}); | 
					
						
							|  |  |  |       c.markAsDirty(); | 
					
						
							|  |  |  |       expect(g.pristine).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.reset(); | 
					
						
							|  |  |  |       expect(g.pristine).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not set the parent pristine state if it has other dirty controls', () => { | 
					
						
							|  |  |  |       const c2 = new FormControl('two'); | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c, 'two': c2}); | 
					
						
							|  |  |  |       c.markAsDirty(); | 
					
						
							|  |  |  |       c2.markAsDirty(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.reset(); | 
					
						
							|  |  |  |       expect(g.pristine).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark the control as untouched', () => { | 
					
						
							|  |  |  |       c.markAsTouched(); | 
					
						
							|  |  |  |       expect(c.untouched).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.reset(); | 
					
						
							|  |  |  |       expect(c.untouched).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set the parent untouched state if all untouched', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c}); | 
					
						
							|  |  |  |       c.markAsTouched(); | 
					
						
							|  |  |  |       expect(g.untouched).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.reset(); | 
					
						
							|  |  |  |       expect(g.untouched).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not set the parent untouched state if other touched controls', () => { | 
					
						
							|  |  |  |       const c2 = new FormControl('two'); | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c, 'two': c2}); | 
					
						
							|  |  |  |       c.markAsTouched(); | 
					
						
							|  |  |  |       c2.markAsTouched(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.reset(); | 
					
						
							|  |  |  |       expect(g.untouched).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should retain the disabled state of the control', () => { | 
					
						
							|  |  |  |       c.disable(); | 
					
						
							|  |  |  |       c.reset(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(c.disabled).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set disabled state based on boxed value if passed', () => { | 
					
						
							|  |  |  |       c.disable(); | 
					
						
							|  |  |  |       c.reset({value: null, disabled: false}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(c.disabled).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     describe('reset() events', () => { | 
					
						
							|  |  |  |       let g: FormGroup, c2: FormControl, logger: any[]; | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       beforeEach(() => { | 
					
						
							|  |  |  |         c2 = new FormControl('two'); | 
					
						
							|  |  |  |         g = new FormGroup({'one': c, 'two': c2}); | 
					
						
							|  |  |  |         logger = []; | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit one valueChange event per reset control', () => { | 
					
						
							|  |  |  |         g.valueChanges.subscribe(() => logger.push('group')); | 
					
						
							|  |  |  |         c.valueChanges.subscribe(() => logger.push('control1')); | 
					
						
							|  |  |  |         c2.valueChanges.subscribe(() => logger.push('control2')); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         c.reset(); | 
					
						
							|  |  |  |         expect(logger).toEqual(['control1', 'group']); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should not fire an event when explicitly specified', fakeAsync(() => { | 
					
						
							|  |  |  |            g.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |            c.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |            c2.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |            c.reset(null, {emitEvent: false}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |            tick(); | 
					
						
							|  |  |  |          })); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit one statusChange event per reset control', () => { | 
					
						
							|  |  |  |         g.statusChanges.subscribe(() => logger.push('group')); | 
					
						
							|  |  |  |         c.statusChanges.subscribe(() => logger.push('control1')); | 
					
						
							|  |  |  |         c2.statusChanges.subscribe(() => logger.push('control2')); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         c.reset(); | 
					
						
							|  |  |  |         expect(logger).toEqual(['control1', 'group']); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-10-19 18:54:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit one statusChange event per disabled control', () => { | 
					
						
							|  |  |  |         g.statusChanges.subscribe(() => logger.push('group')); | 
					
						
							|  |  |  |         c.statusChanges.subscribe(() => logger.push('control1')); | 
					
						
							|  |  |  |         c2.statusChanges.subscribe(() => logger.push('control2')); | 
					
						
							| 
									
										
										
										
											2016-10-19 18:54:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         c.reset({value: null, disabled: true}); | 
					
						
							|  |  |  |         expect(logger).toEqual(['control1', 'group']); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-10-19 18:54:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('valueChanges & statusChanges', () => { | 
					
						
							|  |  |  |     let c: FormControl; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl('old', Validators.required); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should fire an event after the value has been updated', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |          c.valueChanges.subscribe({ | 
					
						
							|  |  |  |            next: (value: any) => { | 
					
						
							|  |  |  |              expect(c.value).toEqual('new'); | 
					
						
							|  |  |  |              expect(value).toEqual('new'); | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |          c.setValue('new'); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should fire an event after the status has been updated to invalid', fakeAsync(() => { | 
					
						
							|  |  |  |          c.statusChanges.subscribe({ | 
					
						
							|  |  |  |            next: (status: any) => { | 
					
						
							|  |  |  |              expect(c.status).toEqual('INVALID'); | 
					
						
							|  |  |  |              expect(status).toEqual('INVALID'); | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue(''); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should fire an event after the status has been updated to pending', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('old', Validators.required, asyncValidator('expected')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          const log: any[] /** TODO #9100 */ = []; | 
					
						
							|  |  |  |          c.valueChanges.subscribe({next: (value: any) => log.push(`value: '${value}'`)}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.statusChanges.subscribe({next: (status: any) => log.push(`status: '${status}'`)}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue(''); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue('nonEmpty'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c.setValue('expected'); | 
					
						
							|  |  |  |          tick(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          expect(log).toEqual([ | 
					
						
							|  |  |  |            'value: \'\'', | 
					
						
							|  |  |  |            'status: \'INVALID\'', | 
					
						
							|  |  |  |            'value: \'nonEmpty\'', | 
					
						
							|  |  |  |            'status: \'PENDING\'', | 
					
						
							|  |  |  |            'status: \'INVALID\'', | 
					
						
							|  |  |  |            'value: \'expected\'', | 
					
						
							|  |  |  |            'status: \'PENDING\'', | 
					
						
							|  |  |  |            'status: \'VALID\'', | 
					
						
							|  |  |  |          ]); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // TODO: remove the if statement after making observable delivery sync
 | 
					
						
							|  |  |  |     it('should update set errors and status before emitting an event', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |          c.valueChanges.subscribe((value: any /** TODO #9100 */) => { | 
					
						
							|  |  |  |            expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |            expect(c.errors).toEqual({'required': true}); | 
					
						
							|  |  |  |            async.done(); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |          c.setValue(''); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should return a cold observable', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |          c.setValue('will be ignored'); | 
					
						
							|  |  |  |          c.valueChanges.subscribe({ | 
					
						
							|  |  |  |            next: (value: any) => { | 
					
						
							|  |  |  |              expect(value).toEqual('new'); | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |          c.setValue('new'); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('setErrors', () => { | 
					
						
							|  |  |  |     it('should set errors on a control', () => { | 
					
						
							|  |  |  |       const c = new FormControl('someValue'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       c.setErrors({'someError': true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |       expect(c.errors).toEqual({'someError': true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should reset the errors and validity when the value changes', () => { | 
					
						
							|  |  |  |       const c = new FormControl('someValue', Validators.required); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setErrors({'someError': true}); | 
					
						
							|  |  |  |       c.setValue(''); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(c.errors).toEqual({'required': true}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should update the parent group\'s validity', () => { | 
					
						
							|  |  |  |       const c = new FormControl('someValue'); | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(g.valid).toEqual(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setErrors({'someError': true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(g.valid).toEqual(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not reset parent\'s errors', () => { | 
					
						
							|  |  |  |       const c = new FormControl('someValue'); | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       g.setErrors({'someGroupError': true}); | 
					
						
							|  |  |  |       c.setErrors({'someError': true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(g.errors).toEqual({'someGroupError': true}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should reset errors when updating a value', () => { | 
					
						
							|  |  |  |       const c = new FormControl('oldValue'); | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       g.setErrors({'someGroupError': true}); | 
					
						
							|  |  |  |       c.setErrors({'someError': true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('newValue'); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(c.errors).toEqual(null); | 
					
						
							|  |  |  |       expect(g.errors).toEqual(null); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('disable() & enable()', () => { | 
					
						
							|  |  |  |     it('should mark the control as disabled', () => { | 
					
						
							|  |  |  |       const c = new FormControl(null); | 
					
						
							|  |  |  |       expect(c.disabled).toBe(false); | 
					
						
							|  |  |  |       expect(c.valid).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(c.disabled).toBe(true); | 
					
						
							|  |  |  |       expect(c.valid).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(c.disabled).toBe(false); | 
					
						
							|  |  |  |       expect(c.valid).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set the control status as disabled', () => { | 
					
						
							|  |  |  |       const c = new FormControl(null); | 
					
						
							|  |  |  |       expect(c.status).toEqual('VALID'); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(c.status).toEqual('DISABLED'); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(c.status).toEqual('VALID'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should retain the original value when disabled', () => { | 
					
						
							|  |  |  |       const c = new FormControl('some value'); | 
					
						
							|  |  |  |       expect(c.value).toEqual('some value'); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(c.value).toEqual('some value'); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(c.value).toEqual('some value'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should keep the disabled control in the group, but return false for contains()', () => { | 
					
						
							|  |  |  |       const c = new FormControl(''); | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(g.get('one')).toBeDefined(); | 
					
						
							|  |  |  |       expect(g.contains('one')).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(g.get('one')).toBeDefined(); | 
					
						
							|  |  |  |       expect(g.contains('one')).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark the parent group disabled if all controls are disabled', () => { | 
					
						
							|  |  |  |       const c = new FormControl(); | 
					
						
							|  |  |  |       const c2 = new FormControl(); | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c, 'two': c2}); | 
					
						
							|  |  |  |       expect(g.enabled).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(g.enabled).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c2.disable(); | 
					
						
							|  |  |  |       expect(g.enabled).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(g.enabled).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should update the parent group value when child control status changes', () => { | 
					
						
							|  |  |  |       const c = new FormControl('one'); | 
					
						
							|  |  |  |       const c2 = new FormControl('two'); | 
					
						
							|  |  |  |       const g = new FormGroup({'one': c, 'two': c2}); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': 'one', 'two': 'two'}); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'two': 'two'}); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c2.disable(); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': 'one', 'two': 'two'}); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'one': 'one'}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark the parent array disabled if all controls are disabled', () => { | 
					
						
							|  |  |  |       const c = new FormControl(); | 
					
						
							|  |  |  |       const c2 = new FormControl(); | 
					
						
							|  |  |  |       const a = new FormArray([c, c2]); | 
					
						
							|  |  |  |       expect(a.enabled).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(a.enabled).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c2.disable(); | 
					
						
							|  |  |  |       expect(a.enabled).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(a.enabled).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should update the parent array value when child control status changes', () => { | 
					
						
							|  |  |  |       const c = new FormControl('one'); | 
					
						
							|  |  |  |       const c2 = new FormControl('two'); | 
					
						
							|  |  |  |       const a = new FormArray([c, c2]); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one', 'two']); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['two']); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c2.disable(); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one', 'two']); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one']); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should ignore disabled array controls when determining dirtiness', () => { | 
					
						
							|  |  |  |       const c = new FormControl('one'); | 
					
						
							|  |  |  |       const c2 = new FormControl('two'); | 
					
						
							|  |  |  |       const a = new FormArray([c, c2]); | 
					
						
							|  |  |  |       c.markAsDirty(); | 
					
						
							|  |  |  |       expect(a.dirty).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(c.dirty).toBe(true); | 
					
						
							|  |  |  |       expect(a.dirty).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(a.dirty).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not make a dirty array not dirty when disabling controls', () => { | 
					
						
							|  |  |  |       const c = new FormControl('one'); | 
					
						
							|  |  |  |       const c2 = new FormControl('two'); | 
					
						
							|  |  |  |       const a = new FormArray([c, c2]); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.markAsDirty(); | 
					
						
							|  |  |  |       expect(a.dirty).toBe(true); | 
					
						
							|  |  |  |       expect(c.dirty).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(a.dirty).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(a.dirty).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should ignore disabled controls in validation', () => { | 
					
						
							|  |  |  |       const c = new FormControl(null, Validators.required); | 
					
						
							|  |  |  |       const c2 = new FormControl(null); | 
					
						
							|  |  |  |       const g = new FormGroup({one: c, two: c2}); | 
					
						
							|  |  |  |       expect(g.valid).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(g.valid).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(g.valid).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should ignore disabled controls when serializing value in a group', () => { | 
					
						
							|  |  |  |       const c = new FormControl('one'); | 
					
						
							|  |  |  |       const c2 = new FormControl('two'); | 
					
						
							|  |  |  |       const g = new FormGroup({one: c, two: c2}); | 
					
						
							|  |  |  |       expect(g.value).toEqual({one: 'one', two: 'two'}); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(g.value).toEqual({two: 'two'}); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(g.value).toEqual({one: 'one', two: 'two'}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should ignore disabled controls when serializing value in an array', () => { | 
					
						
							|  |  |  |       const c = new FormControl('one'); | 
					
						
							|  |  |  |       const c2 = new FormControl('two'); | 
					
						
							|  |  |  |       const a = new FormArray([c, c2]); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one', 'two']); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['two']); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one', 'two']); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should ignore disabled controls when determining dirtiness', () => { | 
					
						
							|  |  |  |       const c = new FormControl('one'); | 
					
						
							|  |  |  |       const c2 = new FormControl('two'); | 
					
						
							|  |  |  |       const g = new FormGroup({one: c, two: c2}); | 
					
						
							|  |  |  |       c.markAsDirty(); | 
					
						
							|  |  |  |       expect(g.dirty).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(c.dirty).toBe(true); | 
					
						
							|  |  |  |       expect(g.dirty).toBe(false); | 
					
						
							| 
									
										
										
										
											2018-06-20 17:16:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(g.dirty).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-06-20 17:16:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not make a dirty group not dirty when disabling controls', () => { | 
					
						
							|  |  |  |       const c = new FormControl('one'); | 
					
						
							|  |  |  |       const c2 = new FormControl('two'); | 
					
						
							|  |  |  |       const g = new FormGroup({one: c, two: c2}); | 
					
						
							| 
									
										
										
										
											2018-06-20 17:16:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       g.markAsDirty(); | 
					
						
							|  |  |  |       expect(g.dirty).toBe(true); | 
					
						
							|  |  |  |       expect(c.dirty).toBe(false); | 
					
						
							| 
									
										
										
										
											2018-06-20 17:16:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(g.dirty).toBe(true); | 
					
						
							| 
									
										
										
										
											2018-06-20 17:16:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(g.dirty).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-06-20 17:16:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should ignore disabled controls when determining touched state', () => { | 
					
						
							|  |  |  |       const c = new FormControl('one'); | 
					
						
							|  |  |  |       const c2 = new FormControl('two'); | 
					
						
							|  |  |  |       const g = new FormGroup({one: c, two: c2}); | 
					
						
							|  |  |  |       c.markAsTouched(); | 
					
						
							|  |  |  |       expect(g.touched).toBe(true); | 
					
						
							| 
									
										
										
										
											2018-06-20 17:16:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(c.touched).toBe(true); | 
					
						
							|  |  |  |       expect(g.touched).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(g.touched).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not run validators on disabled controls', () => { | 
					
						
							|  |  |  |       const validator = jasmine.createSpy('validator'); | 
					
						
							|  |  |  |       const c = new FormControl('', validator); | 
					
						
							|  |  |  |       expect(validator.calls.count()).toEqual(1); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.disable(); | 
					
						
							|  |  |  |       expect(validator.calls.count()).toEqual(1); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('value'); | 
					
						
							|  |  |  |       expect(validator.calls.count()).toEqual(1); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.enable(); | 
					
						
							|  |  |  |       expect(validator.calls.count()).toEqual(2); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     describe('disabled errors', () => { | 
					
						
							|  |  |  |       it('should clear out the errors when disabled', () => { | 
					
						
							|  |  |  |         const c = new FormControl('', Validators.required); | 
					
						
							|  |  |  |         expect(c.errors).toEqual({required: true}); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         c.disable(); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(c.errors).toEqual(null); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         c.enable(); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(c.errors).toEqual({required: true}); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should clear out async errors when disabled', fakeAsync(() => { | 
					
						
							|  |  |  |            const c = new FormControl('', null!, asyncValidator('expected')); | 
					
						
							|  |  |  |            tick(); | 
					
						
							|  |  |  |            expect(c.errors).toEqual({'async': true}); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |            c.disable(); | 
					
						
							|  |  |  |            expect(c.errors).toEqual(null); | 
					
						
							| 
									
										
										
										
											2018-06-20 17:16:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |            c.enable(); | 
					
						
							|  |  |  |            tick(); | 
					
						
							|  |  |  |            expect(c.errors).toEqual({'async': true}); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-06-20 17:16:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     describe('disabled events', () => { | 
					
						
							|  |  |  |       let logger: string[]; | 
					
						
							|  |  |  |       let c: FormControl; | 
					
						
							|  |  |  |       let g: FormGroup; | 
					
						
							| 
									
										
										
										
											2018-06-20 17:16:42 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       beforeEach(() => { | 
					
						
							|  |  |  |         logger = []; | 
					
						
							|  |  |  |         c = new FormControl('', Validators.required); | 
					
						
							|  |  |  |         g = new FormGroup({one: c}); | 
					
						
							| 
									
										
										
										
											2018-06-20 17:16:42 +02:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit a statusChange event when disabled status changes', () => { | 
					
						
							|  |  |  |         c.statusChanges.subscribe((status: string) => logger.push(status)); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         c.disable(); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual(['DISABLED']); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         c.enable(); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual(['DISABLED', 'INVALID']); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit status change events in correct order', () => { | 
					
						
							|  |  |  |         c.statusChanges.subscribe(() => logger.push('control')); | 
					
						
							|  |  |  |         g.statusChanges.subscribe(() => logger.push('group')); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         c.disable(); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual(['control', 'group']); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should throw when sync validator passed into async validator param', () => { | 
					
						
							|  |  |  |         const fn = () => new FormControl('', syncValidator, syncValidator); | 
					
						
							|  |  |  |         // test for the specific error since without the error check it would still throw an error
 | 
					
						
							|  |  |  |         // but
 | 
					
						
							|  |  |  |         // not a meaningful one
 | 
					
						
							|  |  |  |         expect(fn).toThrowError(`Expected validator to return Promise or Observable.`); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should not emit value change events when emitEvent = false', () => { | 
					
						
							|  |  |  |         c.valueChanges.subscribe(() => logger.push('control')); | 
					
						
							|  |  |  |         g.valueChanges.subscribe(() => logger.push('group')); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         c.disable({emitEvent: false}); | 
					
						
							|  |  |  |         expect(logger).toEqual([]); | 
					
						
							|  |  |  |         c.enable({emitEvent: false}); | 
					
						
							|  |  |  |         expect(logger).toEqual([]); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-01-22 21:37:22 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should not emit status change events when emitEvent = false', () => { | 
					
						
							|  |  |  |         c.statusChanges.subscribe(() => logger.push('control')); | 
					
						
							|  |  |  |         g.statusChanges.subscribe(() => logger.push('form')); | 
					
						
							| 
									
										
										
										
											2017-12-14 16:51:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         c.disable({emitEvent: false}); | 
					
						
							|  |  |  |         expect(logger).toEqual([]); | 
					
						
							|  |  |  |         c.enable({emitEvent: false}); | 
					
						
							|  |  |  |         expect(logger).toEqual([]); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  |   describe('pending', () => { | 
					
						
							|  |  |  |     let c: FormControl; | 
					
						
							| 
									
										
										
										
											2017-12-14 16:51:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl('value'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-12-14 16:51:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should be false after creating a control', () => { | 
					
						
							|  |  |  |       expect(c.pending).toEqual(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-12-14 16:51:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should be true after changing the value of the control', () => { | 
					
						
							|  |  |  |       c.markAsPending(); | 
					
						
							|  |  |  |       expect(c.pending).toEqual(true); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-11-06 21:59:09 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     describe('status change events', () => { | 
					
						
							|  |  |  |       let logger: string[]; | 
					
						
							| 
									
										
										
										
											2017-11-06 21:59:09 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       beforeEach(() => { | 
					
						
							|  |  |  |         logger = []; | 
					
						
							|  |  |  |         c.statusChanges.subscribe((status) => logger.push(status)); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2017-11-06 21:59:09 +13:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit event after marking control as pending', () => { | 
					
						
							| 
									
										
										
										
											2017-11-06 21:59:09 +13:00
										 |  |  |         c.markAsPending(); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual(['PENDING']); | 
					
						
							| 
									
										
										
										
											2017-11-06 21:59:09 +13:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should not emit event when emitEvent = false', () => { | 
					
						
							|  |  |  |         c.markAsPending({emitEvent: false}); | 
					
						
							|  |  |  |         expect(logger).toEqual([]); | 
					
						
							| 
									
										
										
										
											2017-11-06 21:59:09 +13:00
										 |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  | }); | 
					
						
							| 
									
										
										
										
											2017-12-16 14:42:55 -08:00
										 |  |  | })(); |