| 
									
										
										
										
											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'; | 
					
						
							| 
									
										
										
										
											2019-06-14 12:19:09 +02:00
										 |  |  | import {AbstractControl, FormArray, FormControl, FormGroup, ValidationErrors, ValidatorFn} from '@angular/forms'; | 
					
						
							| 
									
										
										
										
											2017-12-17 15:10:54 -08:00
										 |  |  | import {Validators} from '@angular/forms/src/validators'; | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  | import {of} from 'rxjs'; | 
					
						
							| 
									
										
										
										
											2020-07-13 01:35:09 +02:00
										 |  |  | import {asyncValidator} 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
										 |  |  | describe('FormArray', () => { | 
					
						
							|  |  |  |   describe('adding/removing', () => { | 
					
						
							|  |  |  |     let a: FormArray; | 
					
						
							|  |  |  |     let c1: FormControl, c2: FormControl, c3: FormControl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       a = new FormArray([]); | 
					
						
							|  |  |  |       c1 = new FormControl(1); | 
					
						
							|  |  |  |       c2 = new FormControl(2); | 
					
						
							|  |  |  |       c3 = new FormControl(3); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support pushing', () => { | 
					
						
							|  |  |  |       a.push(c1); | 
					
						
							|  |  |  |       expect(a.length).toEqual(1); | 
					
						
							|  |  |  |       expect(a.controls).toEqual([c1]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support removing', () => { | 
					
						
							|  |  |  |       a.push(c1); | 
					
						
							|  |  |  |       a.push(c2); | 
					
						
							|  |  |  |       a.push(c3); | 
					
						
							| 
									
										
										
										
											2016-11-18 14:44:05 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.removeAt(1); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(a.controls).toEqual([c1, c3]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support clearing', () => { | 
					
						
							|  |  |  |       a.push(c1); | 
					
						
							|  |  |  |       a.push(c2); | 
					
						
							|  |  |  |       a.push(c3); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.clear(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(a.controls).toEqual([]); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.clear(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(a.controls).toEqual([]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2019-02-21 22:47:07 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should support inserting', () => { | 
					
						
							|  |  |  |       a.push(c1); | 
					
						
							|  |  |  |       a.push(c3); | 
					
						
							| 
									
										
										
										
											2019-02-21 22:47:07 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.insert(1, c2); | 
					
						
							| 
									
										
										
										
											2019-02-21 22:47:07 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(a.controls).toEqual([c1, c2, c3]); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2019-02-21 22:47:07 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('value', () => { | 
					
						
							|  |  |  |     it('should be the reduced value of the child controls', () => { | 
					
						
							|  |  |  |       const a = new FormArray([new FormControl(1), new FormControl(2)]); | 
					
						
							|  |  |  |       expect(a.value).toEqual([1, 2]); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should be an empty array when there are no child controls', () => { | 
					
						
							|  |  |  |       const a = new FormArray([]); | 
					
						
							|  |  |  |       expect(a.value).toEqual([]); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2019-02-21 22:47:07 -06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('getRawValue()', () => { | 
					
						
							|  |  |  |     let a: FormArray; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should work with nested form groups/arrays', () => { | 
					
						
							|  |  |  |       a = new FormArray([ | 
					
						
							|  |  |  |         new FormGroup({'c2': new FormControl('v2'), 'c3': new FormControl('v3')}), | 
					
						
							|  |  |  |         new FormArray([new FormControl('v4'), new FormControl('v5')]) | 
					
						
							|  |  |  |       ]); | 
					
						
							|  |  |  |       a.at(0).get('c3')!.disable(); | 
					
						
							|  |  |  |       (a.at(1) as FormArray).at(1).disable(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(a.getRawValue()).toEqual([{'c2': 'v2', 'c3': 'v3'}, ['v4', 'v5']]); | 
					
						
							| 
									
										
										
										
											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('markAllAsTouched', () => { | 
					
						
							|  |  |  |     it('should mark all descendants as touched', () => { | 
					
						
							|  |  |  |       const formArray: FormArray = new FormArray([ | 
					
						
							|  |  |  |         new FormControl('v1'), new FormControl('v2'), new FormGroup({'c1': new FormControl('v1')}), | 
					
						
							|  |  |  |         new FormArray([new FormGroup({'c2': new FormControl('v2')})]) | 
					
						
							|  |  |  |       ]); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(formArray.touched).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       const control1 = formArray.at(0) as FormControl; | 
					
						
							| 
									
										
										
										
											2016-11-18 14:44:05 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(control1.touched).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-11-18 14:44:05 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       const group1 = formArray.at(2) as FormGroup; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(group1.touched).toBe(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       const group1Control1 = group1.get('c1') as FormControl; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(group1Control1.touched).toBe(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       const innerFormArray = formArray.at(3) as FormArray; | 
					
						
							| 
									
										
										
										
											2016-11-18 14:44:05 +03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(innerFormArray.touched).toBe(false); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       const innerFormArrayGroup = innerFormArray.at(0) as FormGroup; | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(innerFormArrayGroup.touched).toBe(false); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       const innerFormArrayGroupControl1 = innerFormArrayGroup.get('c2') as FormControl; | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(innerFormArrayGroupControl1.touched).toBe(false); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       formArray.markAllAsTouched(); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(formArray.touched).toBe(true); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(control1.touched).toBe(true); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(group1.touched).toBe(true); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(group1Control1.touched).toBe(true); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(innerFormArray.touched).toBe(true); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(innerFormArrayGroup.touched).toBe(true); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(innerFormArrayGroupControl1.touched).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('setValue', () => { | 
					
						
							|  |  |  |     let c: FormControl, c2: FormControl, a: FormArray; | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl(''); | 
					
						
							|  |  |  |       c2 = new FormControl(''); | 
					
						
							|  |  |  |       a = new FormArray([c, c2]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set its own value', () => { | 
					
						
							|  |  |  |       a.setValue(['one', 'two']); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one', 'two']); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set child values', () => { | 
					
						
							|  |  |  |       a.setValue(['one', 'two']); | 
					
						
							|  |  |  |       expect(c.value).toEqual('one'); | 
					
						
							|  |  |  |       expect(c2.value).toEqual('two'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set values for disabled child controls', () => { | 
					
						
							|  |  |  |       c2.disable(); | 
					
						
							|  |  |  |       a.setValue(['one', 'two']); | 
					
						
							|  |  |  |       expect(c2.value).toEqual('two'); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one']); | 
					
						
							|  |  |  |       expect(a.getRawValue()).toEqual(['one', 'two']); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set value for disabled arrays', () => { | 
					
						
							|  |  |  |       a.disable(); | 
					
						
							|  |  |  |       a.setValue(['one', 'two']); | 
					
						
							|  |  |  |       expect(c.value).toEqual('one'); | 
					
						
							|  |  |  |       expect(c2.value).toEqual('two'); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one', 'two']); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set parent values', () => { | 
					
						
							|  |  |  |       const form = new FormGroup({'parent': a}); | 
					
						
							|  |  |  |       a.setValue(['one', 'two']); | 
					
						
							|  |  |  |       expect(form.value).toEqual({'parent': ['one', 'two']}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not update the parent explicitly specified', () => { | 
					
						
							|  |  |  |       const form = new FormGroup({'parent': a}); | 
					
						
							|  |  |  |       a.setValue(['one', 'two'], {onlySelf: true}); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(form.value).toEqual({parent: ['', '']}); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should throw if fields are missing from supplied value (subset)', () => { | 
					
						
							|  |  |  |       expect(() => a.setValue([, 'two'])) | 
					
						
							|  |  |  |           .toThrowError(new RegExp(`Must supply a value for form control at index: 0`)); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should throw if a value is provided for a missing control (superset)', () => { | 
					
						
							|  |  |  |       expect(() => a.setValue([ | 
					
						
							|  |  |  |         'one', 'two', 'three' | 
					
						
							|  |  |  |       ])).toThrowError(new RegExp(`Cannot find form control at index 2`)); | 
					
						
							| 
									
										
										
										
											2018-10-29 09:36:17 +01:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should throw if a value is not provided for a disabled control', () => { | 
					
						
							|  |  |  |       c2.disable(); | 
					
						
							|  |  |  |       expect(() => a.setValue(['one'])) | 
					
						
							|  |  |  |           .toThrowError(new RegExp(`Must supply a value for form control at index: 1`)); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should throw if no controls are set yet', () => { | 
					
						
							|  |  |  |       const empty = new FormArray([]); | 
					
						
							|  |  |  |       expect(() => empty.setValue(['one'])) | 
					
						
							|  |  |  |           .toThrowError(new RegExp(`no form controls registered with this array`)); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('setValue() events', () => { | 
					
						
							|  |  |  |       let form: FormGroup; | 
					
						
							|  |  |  |       let logger: any[]; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       beforeEach(() => { | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         form = new FormGroup({'parent': a}); | 
					
						
							|  |  |  |         logger = []; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit one valueChange event per control', () => { | 
					
						
							|  |  |  |         form.valueChanges.subscribe(() => logger.push('form')); | 
					
						
							|  |  |  |         a.valueChanges.subscribe(() => logger.push('array')); | 
					
						
							|  |  |  |         c.valueChanges.subscribe(() => logger.push('control1')); | 
					
						
							|  |  |  |         c2.valueChanges.subscribe(() => logger.push('control2')); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         a.setValue(['one', 'two']); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual(['control1', 'control2', 'array', 'form']); | 
					
						
							| 
									
										
										
										
											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(() => { | 
					
						
							|  |  |  |            form.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |            a.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-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |            a.setValue(['one', 'two'], {emitEvent: false}); | 
					
						
							|  |  |  |            tick(); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should emit one statusChange event per control', () => { | 
					
						
							|  |  |  |         form.statusChanges.subscribe(() => logger.push('form')); | 
					
						
							|  |  |  |         a.statusChanges.subscribe(() => logger.push('array')); | 
					
						
							|  |  |  |         c.statusChanges.subscribe(() => logger.push('control1')); | 
					
						
							|  |  |  |         c2.statusChanges.subscribe(() => logger.push('control2')); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |         a.setValue(['one', 'two']); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual(['control1', 'control2', 'array', 'form']); | 
					
						
							| 
									
										
										
										
											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('patchValue', () => { | 
					
						
							| 
									
										
										
										
											2021-01-22 15:07:03 -08:00
										 |  |  |     let c: FormControl, c2: FormControl, a: FormArray, a2: FormArray; | 
					
						
							| 
									
										
										
										
											2016-10-18 07:51:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl(''); | 
					
						
							|  |  |  |       c2 = new FormControl(''); | 
					
						
							|  |  |  |       a = new FormArray([c, c2]); | 
					
						
							| 
									
										
										
										
											2021-01-22 15:07:03 -08:00
										 |  |  |       a2 = new FormArray([a]); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-10-18 07:51:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set its own value', () => { | 
					
						
							|  |  |  |       a.patchValue(['one', 'two']); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one', 'two']); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set child values', () => { | 
					
						
							|  |  |  |       a.patchValue(['one', 'two']); | 
					
						
							|  |  |  |       expect(c.value).toEqual('one'); | 
					
						
							|  |  |  |       expect(c2.value).toEqual('two'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should patch disabled control values', () => { | 
					
						
							|  |  |  |       c2.disable(); | 
					
						
							|  |  |  |       a.patchValue(['one', 'two']); | 
					
						
							|  |  |  |       expect(c2.value).toEqual('two'); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one']); | 
					
						
							|  |  |  |       expect(a.getRawValue()).toEqual(['one', 'two']); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should patch disabled control arrays', () => { | 
					
						
							|  |  |  |       a.disable(); | 
					
						
							|  |  |  |       a.patchValue(['one', 'two']); | 
					
						
							|  |  |  |       expect(c.value).toEqual('one'); | 
					
						
							|  |  |  |       expect(c2.value).toEqual('two'); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one', 'two']); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set parent values', () => { | 
					
						
							|  |  |  |       const form = new FormGroup({'parent': a}); | 
					
						
							|  |  |  |       a.patchValue(['one', 'two']); | 
					
						
							|  |  |  |       expect(form.value).toEqual({'parent': ['one', 'two']}); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should not update the parent explicitly specified', () => { | 
					
						
							|  |  |  |       const form = new FormGroup({'parent': a}); | 
					
						
							|  |  |  |       a.patchValue(['one', 'two'], {onlySelf: true}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(form.value).toEqual({parent: ['', '']}); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should ignore fields that are missing from supplied value (subset)', () => { | 
					
						
							|  |  |  |       a.patchValue([, 'two']); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['', 'two']); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should not ignore fields that are null', () => { | 
					
						
							|  |  |  |       a.patchValue([null]); | 
					
						
							|  |  |  |       expect(a.value).toEqual([null, '']); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should ignore any value provided for a missing control (superset)', () => { | 
					
						
							|  |  |  |       a.patchValue([, , 'three']); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['', '']); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-22 15:07:03 -08:00
										 |  |  |     it('should ignore a array if `null` or `undefined` are used as values', () => { | 
					
						
							|  |  |  |       const INITIAL_STATE = [['', '']]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       a2.patchValue([null]); | 
					
						
							|  |  |  |       expect(a2.value).toEqual(INITIAL_STATE); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       a2.patchValue([undefined]); | 
					
						
							|  |  |  |       expect(a2.value).toEqual(INITIAL_STATE); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     describe('patchValue() events', () => { | 
					
						
							|  |  |  |       let form: FormGroup; | 
					
						
							|  |  |  |       let logger: any[]; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       beforeEach(() => { | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         form = new FormGroup({'parent': a}); | 
					
						
							|  |  |  |         logger = []; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit one valueChange event per control', () => { | 
					
						
							|  |  |  |         form.valueChanges.subscribe(() => logger.push('form')); | 
					
						
							|  |  |  |         a.valueChanges.subscribe(() => logger.push('array')); | 
					
						
							|  |  |  |         c.valueChanges.subscribe(() => logger.push('control1')); | 
					
						
							|  |  |  |         c2.valueChanges.subscribe(() => logger.push('control2')); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         a.patchValue(['one', 'two']); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual(['control1', 'control2', 'array', 'form']); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should not emit valueChange events for skipped controls', () => { | 
					
						
							|  |  |  |         form.valueChanges.subscribe(() => logger.push('form')); | 
					
						
							|  |  |  |         a.valueChanges.subscribe(() => logger.push('array')); | 
					
						
							|  |  |  |         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
										 |  |  |         a.patchValue(['one']); | 
					
						
							|  |  |  |         expect(logger).toEqual(['control1', 'array', 'form']); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-01-22 15:07:03 -08:00
										 |  |  |       it('should not emit valueChange events for skipped controls (represented as `null` or `undefined`)', | 
					
						
							|  |  |  |          () => { | 
					
						
							|  |  |  |            const logEvent = () => logger.push('valueChanges event'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            const [formArrayControl1, formArrayControl2] = (a2.controls as FormArray[])[0].controls; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            formArrayControl1.valueChanges.subscribe(logEvent); | 
					
						
							|  |  |  |            formArrayControl2.valueChanges.subscribe(logEvent); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            a2.patchValue([null]); | 
					
						
							|  |  |  |            a2.patchValue([undefined]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            // No events are expected in `valueChanges` since
 | 
					
						
							|  |  |  |            // all controls were skipped in `patchValue`.
 | 
					
						
							|  |  |  |            expect(logger).toEqual([]); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should not fire an event when explicitly specified', fakeAsync(() => { | 
					
						
							|  |  |  |            form.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |            a.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |            c.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |            c2.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            a.patchValue(['one', 'two'], {emitEvent: false}); | 
					
						
							|  |  |  |            tick(); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should emit one statusChange event per control', () => { | 
					
						
							|  |  |  |         form.statusChanges.subscribe(() => logger.push('form')); | 
					
						
							|  |  |  |         a.statusChanges.subscribe(() => logger.push('array')); | 
					
						
							|  |  |  |         c.statusChanges.subscribe(() => logger.push('control1')); | 
					
						
							|  |  |  |         c2.statusChanges.subscribe(() => logger.push('control2')); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |         a.patchValue(['one', 'two']); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual(['control1', 'control2', 'array', 'form']); | 
					
						
							| 
									
										
										
										
											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('reset()', () => { | 
					
						
							|  |  |  |     let c: FormControl, c2: FormControl, a: FormArray; | 
					
						
							| 
									
										
										
										
											2016-10-18 07:51:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl('initial value'); | 
					
						
							|  |  |  |       c2 = new FormControl(''); | 
					
						
							|  |  |  |       a = new FormArray([c, c2]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-10-18 07:51:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set its own value if value passed', () => { | 
					
						
							|  |  |  |       a.setValue(['new value', 'new value']); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(['initial value', '']); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['initial value', '']); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not update the parent when explicitly specified', () => { | 
					
						
							|  |  |  |       const form = new FormGroup({'a': a}); | 
					
						
							|  |  |  |       a.reset(['one', 'two'], {onlySelf: true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(form.value).toEqual({a: ['initial value', '']}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set its own value if boxed value passed', () => { | 
					
						
							|  |  |  |       a.setValue(['new value', 'new value']); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset([{value: 'initial value', disabled: false}, '']); | 
					
						
							|  |  |  |       expect(a.value).toEqual(['initial value', '']); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should clear its own value if no value passed', () => { | 
					
						
							|  |  |  |       a.setValue(['new value', 'new value']); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(); | 
					
						
							|  |  |  |       expect(a.value).toEqual([null, null]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set the value of each of its child controls if value passed', () => { | 
					
						
							|  |  |  |       a.setValue(['new value', 'new value']); | 
					
						
							| 
									
										
										
										
											2016-10-18 07:51:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(['initial value', '']); | 
					
						
							|  |  |  |       expect(c.value).toBe('initial value'); | 
					
						
							|  |  |  |       expect(c2.value).toBe(''); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-10-18 07:51:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should clear the value of each of its child controls if no value', () => { | 
					
						
							|  |  |  |       a.setValue(['new value', 'new value']); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(); | 
					
						
							|  |  |  |       expect(c.value).toBe(null); | 
					
						
							|  |  |  |       expect(c2.value).toBe(null); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set the value of its parent if value passed', () => { | 
					
						
							|  |  |  |       const form = new FormGroup({'a': a}); | 
					
						
							|  |  |  |       a.setValue(['new value', 'new value']); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(['initial value', '']); | 
					
						
							|  |  |  |       expect(form.value).toEqual({'a': ['initial value', '']}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should clear the value of its parent if no value passed', () => { | 
					
						
							|  |  |  |       const form = new FormGroup({'a': a}); | 
					
						
							|  |  |  |       a.setValue(['new value', 'new value']); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(); | 
					
						
							|  |  |  |       expect(form.value).toEqual({'a': [null, null]}); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark itself as pristine', () => { | 
					
						
							|  |  |  |       a.markAsDirty(); | 
					
						
							|  |  |  |       expect(a.pristine).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(); | 
					
						
							|  |  |  |       expect(a.pristine).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark all child controls as pristine', () => { | 
					
						
							|  |  |  |       c.markAsDirty(); | 
					
						
							|  |  |  |       c2.markAsDirty(); | 
					
						
							|  |  |  |       expect(c.pristine).toBe(false); | 
					
						
							|  |  |  |       expect(c2.pristine).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(); | 
					
						
							|  |  |  |       expect(c.pristine).toBe(true); | 
					
						
							|  |  |  |       expect(c2.pristine).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark the parent as pristine if all siblings pristine', () => { | 
					
						
							|  |  |  |       const c3 = new FormControl(''); | 
					
						
							|  |  |  |       const form = new FormGroup({'a': a, 'c3': c3}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.markAsDirty(); | 
					
						
							|  |  |  |       expect(form.pristine).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(); | 
					
						
							|  |  |  |       expect(form.pristine).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not mark the parent pristine if any dirty siblings', () => { | 
					
						
							|  |  |  |       const c3 = new FormControl(''); | 
					
						
							|  |  |  |       const form = new FormGroup({'a': a, 'c3': c3}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.markAsDirty(); | 
					
						
							|  |  |  |       c3.markAsDirty(); | 
					
						
							|  |  |  |       expect(form.pristine).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(); | 
					
						
							|  |  |  |       expect(form.pristine).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark itself as untouched', () => { | 
					
						
							|  |  |  |       a.markAsTouched(); | 
					
						
							|  |  |  |       expect(a.untouched).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(); | 
					
						
							|  |  |  |       expect(a.untouched).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark all child controls as untouched', () => { | 
					
						
							|  |  |  |       c.markAsTouched(); | 
					
						
							|  |  |  |       c2.markAsTouched(); | 
					
						
							|  |  |  |       expect(c.untouched).toBe(false); | 
					
						
							|  |  |  |       expect(c2.untouched).toBe(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       a.reset(); | 
					
						
							|  |  |  |       expect(c.untouched).toBe(true); | 
					
						
							|  |  |  |       expect(c2.untouched).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark the parent untouched if all siblings untouched', () => { | 
					
						
							|  |  |  |       const c3 = new FormControl(''); | 
					
						
							|  |  |  |       const form = new FormGroup({'a': a, 'c3': c3}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.markAsTouched(); | 
					
						
							|  |  |  |       expect(form.untouched).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.reset(); | 
					
						
							|  |  |  |       expect(form.untouched).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not mark the parent untouched if any touched siblings', () => { | 
					
						
							|  |  |  |       const c3 = new FormControl(''); | 
					
						
							|  |  |  |       const form = new FormGroup({'a': a, 'c3': c3}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.markAsTouched(); | 
					
						
							|  |  |  |       c3.markAsTouched(); | 
					
						
							|  |  |  |       expect(form.untouched).toBe(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       a.reset(); | 
					
						
							|  |  |  |       expect(form.untouched).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should retain previous disabled state', () => { | 
					
						
							|  |  |  |       a.disable(); | 
					
						
							|  |  |  |       a.reset(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(a.disabled).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should set child disabled state if boxed value passed', () => { | 
					
						
							|  |  |  |       a.disable(); | 
					
						
							|  |  |  |       a.reset([{value: '', disabled: false}, '']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(c.disabled).toBe(false); | 
					
						
							|  |  |  |       expect(a.disabled).toBe(false); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('reset() events', () => { | 
					
						
							|  |  |  |       let form: FormGroup, c3: FormControl, logger: any[]; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       beforeEach(() => { | 
					
						
							|  |  |  |         c3 = new FormControl(''); | 
					
						
							|  |  |  |         form = new FormGroup({'a': a, 'c3': c3}); | 
					
						
							|  |  |  |         logger = []; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit one valueChange event per reset control', () => { | 
					
						
							|  |  |  |         form.valueChanges.subscribe(() => logger.push('form')); | 
					
						
							|  |  |  |         a.valueChanges.subscribe(() => logger.push('array')); | 
					
						
							|  |  |  |         c.valueChanges.subscribe(() => logger.push('control1')); | 
					
						
							|  |  |  |         c2.valueChanges.subscribe(() => logger.push('control2')); | 
					
						
							|  |  |  |         c3.valueChanges.subscribe(() => logger.push('control3')); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         a.reset(); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual(['control1', 'control2', 'array', 'form']); | 
					
						
							| 
									
										
										
										
											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(() => { | 
					
						
							|  |  |  |            form.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |            a.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |            c.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |            c2.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |            c3.valueChanges.subscribe((value) => { | 
					
						
							|  |  |  |              throw 'Should not happen'; | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            a.reset([], {emitEvent: false}); | 
					
						
							|  |  |  |            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', () => { | 
					
						
							|  |  |  |         form.statusChanges.subscribe(() => logger.push('form')); | 
					
						
							|  |  |  |         a.statusChanges.subscribe(() => logger.push('array')); | 
					
						
							|  |  |  |         c.statusChanges.subscribe(() => logger.push('control1')); | 
					
						
							|  |  |  |         c2.statusChanges.subscribe(() => logger.push('control2')); | 
					
						
							|  |  |  |         c3.statusChanges.subscribe(() => logger.push('control3')); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         a.reset(); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual(['control1', 'control2', 'array', 'form']); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should mark as pristine and not dirty before emitting valueChange and statusChange events when resetting', | 
					
						
							|  |  |  |          () => { | 
					
						
							|  |  |  |            const pristineAndNotDirty = () => { | 
					
						
							|  |  |  |              expect(a.pristine).toBe(true); | 
					
						
							|  |  |  |              expect(a.dirty).toBe(false); | 
					
						
							|  |  |  |            }; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |            c2.markAsDirty(); | 
					
						
							|  |  |  |            expect(a.pristine).toBe(false); | 
					
						
							|  |  |  |            expect(a.dirty).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |            a.valueChanges.subscribe(pristineAndNotDirty); | 
					
						
							|  |  |  |            a.statusChanges.subscribe(pristineAndNotDirty); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |            a.reset(); | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('errors', () => { | 
					
						
							|  |  |  |     it('should run the validator when the value changes', () => { | 
					
						
							|  |  |  |       const simpleValidator = (c: FormArray) => | 
					
						
							|  |  |  |           c.controls[0].value != 'correct' ? {'broken': true} : null; | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       const c = new FormControl(null); | 
					
						
							|  |  |  |       const g = new FormArray([c], simpleValidator as ValidatorFn); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('correct'); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(g.valid).toEqual(true); | 
					
						
							|  |  |  |       expect(g.errors).toEqual(null); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       c.setValue('incorrect'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(g.valid).toEqual(false); | 
					
						
							|  |  |  |       expect(g.errors).toEqual({'broken': true}); | 
					
						
							| 
									
										
										
										
											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('dirty', () => { | 
					
						
							|  |  |  |     let c: FormControl; | 
					
						
							|  |  |  |     let a: FormArray; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl('value'); | 
					
						
							|  |  |  |       a = new FormArray([c]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should be false after creating a control', () => { | 
					
						
							|  |  |  |       expect(a.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', () => { | 
					
						
							|  |  |  |       c.markAsDirty(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(a.dirty).toEqual(true); | 
					
						
							| 
									
										
										
										
											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('touched', () => { | 
					
						
							|  |  |  |     let c: FormControl; | 
					
						
							|  |  |  |     let a: FormArray; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl('value'); | 
					
						
							|  |  |  |       a = new FormArray([c]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should be false after creating a control', () => { | 
					
						
							|  |  |  |       expect(a.touched).toEqual(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should be true after child control is marked as touched', () => { | 
					
						
							|  |  |  |       c.markAsTouched(); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(a.touched).toEqual(true); | 
					
						
							| 
									
										
										
										
											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('pending', () => { | 
					
						
							|  |  |  |     let c: FormControl; | 
					
						
							|  |  |  |     let a: FormArray; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl('value'); | 
					
						
							|  |  |  |       a = new FormArray([c]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should be false after creating a control', () => { | 
					
						
							|  |  |  |       expect(c.pending).toEqual(false); | 
					
						
							|  |  |  |       expect(a.pending).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', () => { | 
					
						
							|  |  |  |       c.markAsPending(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       expect(c.pending).toEqual(true); | 
					
						
							|  |  |  |       expect(a.pending).toEqual(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should not update the parent when onlySelf = true', () => { | 
					
						
							|  |  |  |       c.markAsPending({onlySelf: true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(c.pending).toEqual(true); | 
					
						
							|  |  |  |       expect(a.pending).toEqual(false); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     describe('status change events', () => { | 
					
						
							|  |  |  |       let logger: string[]; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       beforeEach(() => { | 
					
						
							|  |  |  |         logger = []; | 
					
						
							|  |  |  |         a.statusChanges.subscribe((status) => logger.push(status)); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit event after marking control as pending', () => { | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |         c.markAsPending(); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual(['PENDING']); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should not emit event from parent when onlySelf is true', () => { | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |         c.markAsPending({onlySelf: true}); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(logger).toEqual([]); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											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
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit event when parent is markedAsPending', () => { | 
					
						
							|  |  |  |         a.markAsPending(); | 
					
						
							|  |  |  |         expect(logger).toEqual(['PENDING']); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											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('valueChanges', () => { | 
					
						
							|  |  |  |     let a: FormArray; | 
					
						
							|  |  |  |     let c1: any /** TODO #9100 */, c2: any /** TODO #9100 */; | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c1 = new FormControl('old1'); | 
					
						
							|  |  |  |       c2 = new FormControl('old2'); | 
					
						
							|  |  |  |       a = new FormArray([c1, c2]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -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) => { | 
					
						
							|  |  |  |          a.valueChanges.subscribe({ | 
					
						
							|  |  |  |            next: (value: any) => { | 
					
						
							|  |  |  |              expect(a.value).toEqual(['new1', 'old2']); | 
					
						
							|  |  |  |              expect(value).toEqual(['new1', 'old2']); | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  |          c1.setValue('new1'); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should fire an event after the control\'s observable fired an event', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |          let controlCallbackIsCalled = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c1.valueChanges.subscribe({ | 
					
						
							|  |  |  |            next: (value: any) => { | 
					
						
							|  |  |  |              controlCallbackIsCalled = true; | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          a.valueChanges.subscribe({ | 
					
						
							|  |  |  |            next: (value: any) => { | 
					
						
							|  |  |  |              expect(controlCallbackIsCalled).toBe(true); | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          c1.setValue('new1'); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should fire an event when a control is removed', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |          a.valueChanges.subscribe({ | 
					
						
							|  |  |  |            next: (value: any) => { | 
					
						
							|  |  |  |              expect(value).toEqual(['old1']); | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          a.removeAt(1); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     it('should fire an event when a control is added', | 
					
						
							|  |  |  |        inject([AsyncTestCompleter], (async: AsyncTestCompleter) => { | 
					
						
							|  |  |  |          a.removeAt(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          a.valueChanges.subscribe({ | 
					
						
							|  |  |  |            next: (value: any) => { | 
					
						
							|  |  |  |              expect(value).toEqual(['old1', 'old2']); | 
					
						
							|  |  |  |              async.done(); | 
					
						
							|  |  |  |            } | 
					
						
							|  |  |  |          }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |          a.push(c2); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('get', () => { | 
					
						
							|  |  |  |     it('should return null when path is null', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({}); | 
					
						
							|  |  |  |       expect(g.get(null!)).toEqual(null); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should return null when path is empty', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({}); | 
					
						
							|  |  |  |       expect(g.get([])).toEqual(null); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should return null when path is invalid', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({}); | 
					
						
							|  |  |  |       expect(g.get('invalid')).toEqual(null); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should return a child of a control group', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({ | 
					
						
							|  |  |  |         'one': new FormControl('111'), | 
					
						
							|  |  |  |         'nested': new FormGroup({'two': new FormControl('222')}) | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(g.get(['one'])!.value).toEqual('111'); | 
					
						
							|  |  |  |       expect(g.get('one')!.value).toEqual('111'); | 
					
						
							|  |  |  |       expect(g.get(['nested', 'two'])!.value).toEqual('222'); | 
					
						
							|  |  |  |       expect(g.get('nested.two')!.value).toEqual('222'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should return an element of an array', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({'array': new FormArray([new FormControl('111')])}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(g.get(['array', 0])!.value).toEqual('111'); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('validator', () => { | 
					
						
							|  |  |  |     function simpleValidator(c: AbstractControl): ValidationErrors|null { | 
					
						
							|  |  |  |       return c.get([0])!.value === 'correct' ? null : {'broken': true}; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     function arrayRequiredValidator(c: AbstractControl): ValidationErrors|null { | 
					
						
							|  |  |  |       return Validators.required(c.get([0]) as AbstractControl); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set a single validator', () => { | 
					
						
							|  |  |  |       const a = new FormArray([new FormControl()], simpleValidator); | 
					
						
							|  |  |  |       expect(a.valid).toBe(false); | 
					
						
							|  |  |  |       expect(a.errors).toEqual({'broken': true}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       a.setValue(['correct']); | 
					
						
							|  |  |  |       expect(a.valid).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set a single validator from options obj', () => { | 
					
						
							|  |  |  |       const a = new FormArray([new FormControl()], {validators: simpleValidator}); | 
					
						
							|  |  |  |       expect(a.valid).toBe(false); | 
					
						
							|  |  |  |       expect(a.errors).toEqual({'broken': true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.setValue(['correct']); | 
					
						
							|  |  |  |       expect(a.valid).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set multiple validators from an array', () => { | 
					
						
							|  |  |  |       const a = new FormArray([new FormControl()], [simpleValidator, arrayRequiredValidator]); | 
					
						
							|  |  |  |       expect(a.valid).toBe(false); | 
					
						
							|  |  |  |       expect(a.errors).toEqual({'required': true, 'broken': true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.setValue(['c']); | 
					
						
							|  |  |  |       expect(a.valid).toBe(false); | 
					
						
							|  |  |  |       expect(a.errors).toEqual({'broken': true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.setValue(['correct']); | 
					
						
							|  |  |  |       expect(a.valid).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set multiple validators from options obj', () => { | 
					
						
							|  |  |  |       const a = new FormArray( | 
					
						
							|  |  |  |           [new FormControl()], {validators: [simpleValidator, arrayRequiredValidator]}); | 
					
						
							|  |  |  |       expect(a.valid).toBe(false); | 
					
						
							|  |  |  |       expect(a.errors).toEqual({'required': true, 'broken': true}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.setValue(['c']); | 
					
						
							|  |  |  |       expect(a.valid).toBe(false); | 
					
						
							|  |  |  |       expect(a.errors).toEqual({'broken': true}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       a.setValue(['correct']); | 
					
						
							|  |  |  |       expect(a.valid).toBe(true); | 
					
						
							| 
									
										
										
										
											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', () => { | 
					
						
							|  |  |  |     function otherObservableValidator() { | 
					
						
							|  |  |  |       return of({'other': true}); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should run the async validator', fakeAsync(() => { | 
					
						
							|  |  |  |          const c = new FormControl('value'); | 
					
						
							|  |  |  |          const g = new FormArray([c], null!, asyncValidator('expected')); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(g.pending).toEqual(true); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(g.errors).toEqual({'async': true}); | 
					
						
							|  |  |  |          expect(g.pending).toEqual(false); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set a single async validator from options obj', fakeAsync(() => { | 
					
						
							|  |  |  |          const g = new FormArray( | 
					
						
							|  |  |  |              [new FormControl('value')], {asyncValidators: asyncValidator('expected')}); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(g.pending).toEqual(true); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(g.errors).toEqual({'async': true}); | 
					
						
							|  |  |  |          expect(g.pending).toEqual(false); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set multiple async validators from an array', fakeAsync(() => { | 
					
						
							|  |  |  |          const g = new FormArray( | 
					
						
							|  |  |  |              [new FormControl('value')], null!, | 
					
						
							|  |  |  |              [asyncValidator('expected'), otherObservableValidator]); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(g.pending).toEqual(true); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(g.errors).toEqual({'async': true, 'other': true}); | 
					
						
							|  |  |  |          expect(g.pending).toEqual(false); | 
					
						
							|  |  |  |        })); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set multiple async validators from options obj', fakeAsync(() => { | 
					
						
							|  |  |  |          const g = new FormArray( | 
					
						
							|  |  |  |              [new FormControl('value')], | 
					
						
							|  |  |  |              {asyncValidators: [asyncValidator('expected'), otherObservableValidator]}); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(g.pending).toEqual(true); | 
					
						
							| 
									
										
										
										
											2016-08-13 17:26:08 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          tick(); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |          expect(g.errors).toEqual({'async': true, 'other': true}); | 
					
						
							|  |  |  |          expect(g.pending).toEqual(false); | 
					
						
							|  |  |  |        })); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |   describe('disable() & enable()', () => { | 
					
						
							|  |  |  |     let a: FormArray; | 
					
						
							|  |  |  |     let c: FormControl; | 
					
						
							|  |  |  |     let c2: FormControl; | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     beforeEach(() => { | 
					
						
							|  |  |  |       c = new FormControl(null); | 
					
						
							|  |  |  |       c2 = new FormControl(null); | 
					
						
							|  |  |  |       a = new FormArray([c, c2]); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark the array as disabled', () => { | 
					
						
							|  |  |  |       expect(a.disabled).toBe(false); | 
					
						
							|  |  |  |       expect(a.valid).toBe(true); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.disable(); | 
					
						
							|  |  |  |       expect(a.disabled).toBe(true); | 
					
						
							|  |  |  |       expect(a.valid).toBe(false); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.enable(); | 
					
						
							|  |  |  |       expect(a.disabled).toBe(false); | 
					
						
							|  |  |  |       expect(a.valid).toBe(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should set the array status as disabled', () => { | 
					
						
							|  |  |  |       expect(a.status).toBe('VALID'); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.disable(); | 
					
						
							|  |  |  |       expect(a.status).toBe('DISABLED'); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.enable(); | 
					
						
							|  |  |  |       expect(a.status).toBe('VALID'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should mark children of the array as disabled', () => { | 
					
						
							|  |  |  |       expect(c.disabled).toBe(false); | 
					
						
							|  |  |  |       expect(c2.disabled).toBe(false); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.disable(); | 
					
						
							|  |  |  |       expect(c.disabled).toBe(true); | 
					
						
							|  |  |  |       expect(c2.disabled).toBe(true); | 
					
						
							| 
									
										
										
										
											2017-07-25 15:01:04 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       a.enable(); | 
					
						
							|  |  |  |       expect(c.disabled).toBe(false); | 
					
						
							|  |  |  |       expect(c2.disabled).toBe(false); | 
					
						
							| 
									
										
										
										
											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 ignore disabled controls in validation', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({ | 
					
						
							|  |  |  |         nested: new FormArray([new FormControl(null, Validators.required)]), | 
					
						
							|  |  |  |         two: new FormControl('two') | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       expect(g.valid).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       g.get('nested')!.disable(); | 
					
						
							|  |  |  |       expect(g.valid).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       g.get('nested')!.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', () => { | 
					
						
							|  |  |  |       const g = new FormGroup( | 
					
						
							|  |  |  |           {nested: new FormArray([new FormControl('one')]), two: new FormControl('two')}); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'nested': ['one'], 'two': 'two'}); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       g.get('nested')!.disable(); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'two': 'two'}); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       g.get('nested')!.enable(); | 
					
						
							|  |  |  |       expect(g.value).toEqual({'nested': ['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 determining dirtiness', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({nested: a, two: new FormControl('two')}); | 
					
						
							|  |  |  |       g.get(['nested', 0])!.markAsDirty(); | 
					
						
							|  |  |  |       expect(g.dirty).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       g.get('nested')!.disable(); | 
					
						
							|  |  |  |       expect(g.get('nested')!.dirty).toBe(true); | 
					
						
							|  |  |  |       expect(g.dirty).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       g.get('nested')!.enable(); | 
					
						
							|  |  |  |       expect(g.dirty).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should ignore disabled controls when determining touched state', () => { | 
					
						
							|  |  |  |       const g = new FormGroup({nested: a, two: new FormControl('two')}); | 
					
						
							|  |  |  |       g.get(['nested', 0])!.markAsTouched(); | 
					
						
							|  |  |  |       expect(g.touched).toBe(true); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       g.get('nested')!.disable(); | 
					
						
							|  |  |  |       expect(g.get('nested')!.touched).toBe(true); | 
					
						
							|  |  |  |       expect(g.touched).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       g.get('nested')!.enable(); | 
					
						
							|  |  |  |       expect(g.touched).toEqual(true); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should keep empty, disabled arrays disabled when updating validity', () => { | 
					
						
							|  |  |  |       const arr = new FormArray([]); | 
					
						
							|  |  |  |       expect(arr.status).toEqual('VALID'); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       arr.disable(); | 
					
						
							|  |  |  |       expect(arr.status).toEqual('DISABLED'); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       arr.updateValueAndValidity(); | 
					
						
							|  |  |  |       expect(arr.status).toEqual('DISABLED'); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       arr.push(new FormControl({value: '', disabled: true})); | 
					
						
							|  |  |  |       expect(arr.status).toEqual('DISABLED'); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       arr.push(new FormControl()); | 
					
						
							|  |  |  |       expect(arr.status).toEqual('VALID'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     it('should re-enable empty, disabled arrays', () => { | 
					
						
							|  |  |  |       const arr = new FormArray([]); | 
					
						
							|  |  |  |       arr.disable(); | 
					
						
							|  |  |  |       expect(arr.status).toEqual('DISABLED'); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       arr.enable(); | 
					
						
							|  |  |  |       expect(arr.status).toEqual('VALID'); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											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 arr = new FormArray([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
										 |  |  |       arr.disable(); | 
					
						
							|  |  |  |       expect(validator.calls.count()).toEqual(1); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       arr.setValue(['value']); | 
					
						
							|  |  |  |       expect(validator.calls.count()).toEqual(1); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       arr.enable(); | 
					
						
							|  |  |  |       expect(validator.calls.count()).toEqual(2); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe('disabled errors', () => { | 
					
						
							|  |  |  |       it('should clear out array errors when disabled', () => { | 
					
						
							|  |  |  |         const arr = new FormArray([new FormControl()], () => ({'expected': true})); | 
					
						
							|  |  |  |         expect(arr.errors).toEqual({'expected': true}); | 
					
						
							| 
									
										
										
										
											2016-09-08 12:21:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         arr.disable(); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(arr.errors).toEqual(null); | 
					
						
							| 
									
										
										
										
											2016-09-08 12:21:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         arr.enable(); | 
					
						
							|  |  |  |         expect(arr.errors).toEqual({'expected': true}); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-09-08 12:21:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should re-populate array errors when enabled from a child', () => { | 
					
						
							|  |  |  |         const arr = new FormArray([new FormControl()], () => ({'expected': true})); | 
					
						
							|  |  |  |         arr.disable(); | 
					
						
							|  |  |  |         expect(arr.errors).toEqual(null); | 
					
						
							| 
									
										
										
										
											2016-09-08 12:21:48 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         arr.push(new FormControl()); | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(arr.errors).toEqual({'expected': true}); | 
					
						
							| 
									
										
										
										
											2016-09-08 12:21:48 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should clear out async array errors when disabled', fakeAsync(() => { | 
					
						
							|  |  |  |            const arr = new FormArray([new FormControl()], null!, asyncValidator('expected')); | 
					
						
							|  |  |  |            tick(); | 
					
						
							|  |  |  |            expect(arr.errors).toEqual({'async': true}); | 
					
						
							| 
									
										
										
										
											2016-09-08 12:21:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |            arr.disable(); | 
					
						
							|  |  |  |            expect(arr.errors).toEqual(null); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            arr.enable(); | 
					
						
							|  |  |  |            tick(); | 
					
						
							|  |  |  |            expect(arr.errors).toEqual({'async': true}); | 
					
						
							|  |  |  |          })); | 
					
						
							| 
									
										
										
										
											2016-09-08 12:21:48 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should re-populate async array errors when enabled from a child', fakeAsync(() => { | 
					
						
							|  |  |  |            const arr = new FormArray([new FormControl()], null!, asyncValidator('expected')); | 
					
						
							|  |  |  |            tick(); | 
					
						
							|  |  |  |            expect(arr.errors).toEqual({'async': true}); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |            arr.disable(); | 
					
						
							|  |  |  |            expect(arr.errors).toEqual(null); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |            arr.push(new FormControl()); | 
					
						
							|  |  |  |            tick(); | 
					
						
							|  |  |  |            expect(arr.errors).toEqual({'async': true}); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     describe('disabled events', () => { | 
					
						
							|  |  |  |       let logger: string[]; | 
					
						
							|  |  |  |       let c: FormControl; | 
					
						
							|  |  |  |       let a: FormArray; | 
					
						
							|  |  |  |       let form: FormGroup; | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       beforeEach(() => { | 
					
						
							|  |  |  |         logger = []; | 
					
						
							|  |  |  |         c = new FormControl('', Validators.required); | 
					
						
							|  |  |  |         a = new FormArray([c]); | 
					
						
							|  |  |  |         form = new FormGroup({a: a}); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit value change events in the right order', () => { | 
					
						
							|  |  |  |         c.valueChanges.subscribe(() => logger.push('control')); | 
					
						
							|  |  |  |         a.valueChanges.subscribe(() => logger.push('array')); | 
					
						
							|  |  |  |         form.valueChanges.subscribe(() => logger.push('form')); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         a.disable(); | 
					
						
							|  |  |  |         expect(logger).toEqual(['control', 'array', 'form']); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should emit status change events in the right order', () => { | 
					
						
							|  |  |  |         c.statusChanges.subscribe(() => logger.push('control')); | 
					
						
							|  |  |  |         a.statusChanges.subscribe(() => logger.push('array')); | 
					
						
							|  |  |  |         form.statusChanges.subscribe(() => logger.push('form')); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         a.disable(); | 
					
						
							|  |  |  |         expect(logger).toEqual(['control', 'array', 'form']); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											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')); | 
					
						
							|  |  |  |         a.valueChanges.subscribe(() => logger.push('array')); | 
					
						
							|  |  |  |         form.valueChanges.subscribe(() => logger.push('form')); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         a.disable({emitEvent: false}); | 
					
						
							|  |  |  |         expect(logger).toEqual([]); | 
					
						
							|  |  |  |         a.enable({emitEvent: false}); | 
					
						
							|  |  |  |         expect(logger).toEqual([]); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07: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')); | 
					
						
							|  |  |  |         a.statusChanges.subscribe(() => logger.push('array')); | 
					
						
							|  |  |  |         form.statusChanges.subscribe(() => logger.push('form')); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         a.disable({emitEvent: false}); | 
					
						
							|  |  |  |         expect(logger).toEqual([]); | 
					
						
							|  |  |  |         a.enable({emitEvent: false}); | 
					
						
							|  |  |  |         expect(logger).toEqual([]); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |     describe('setControl()', () => { | 
					
						
							|  |  |  |       let c: FormControl; | 
					
						
							|  |  |  |       let a: FormArray; | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       beforeEach(() => { | 
					
						
							|  |  |  |         c = new FormControl('one'); | 
					
						
							|  |  |  |         a = new FormArray([c]); | 
					
						
							| 
									
										
										
										
											2016-09-09 12:00:38 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should replace existing control with new control', () => { | 
					
						
							|  |  |  |         const c2 = new FormControl('new!', Validators.minLength(10)); | 
					
						
							|  |  |  |         a.setControl(0, c2); | 
					
						
							| 
									
										
										
										
											2017-12-14 16:51:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(a.controls[0]).toEqual(c2); | 
					
						
							|  |  |  |         expect(a.value).toEqual(['new!']); | 
					
						
							|  |  |  |         expect(a.valid).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should add control if control did not exist before', () => { | 
					
						
							|  |  |  |         const c2 = new FormControl('new!', Validators.minLength(10)); | 
					
						
							|  |  |  |         a.setControl(1, c2); | 
					
						
							| 
									
										
										
										
											2016-09-02 15:57:35 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |         expect(a.controls[1]).toEqual(c2); | 
					
						
							|  |  |  |         expect(a.value).toEqual(['one', 'new!']); | 
					
						
							|  |  |  |         expect(a.valid).toBe(false); | 
					
						
							| 
									
										
										
										
											2016-09-02 15:57:35 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-06 15:44:00 -07:00
										 |  |  |       it('should remove control if new control is null', () => { | 
					
						
							|  |  |  |         a.setControl(0, null!); | 
					
						
							|  |  |  |         expect(a.controls[0]).not.toBeDefined(); | 
					
						
							|  |  |  |         expect(a.value).toEqual([]); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should only emit value change event once', () => { | 
					
						
							|  |  |  |         const logger: string[] = []; | 
					
						
							|  |  |  |         const c2 = new FormControl('new!'); | 
					
						
							|  |  |  |         a.valueChanges.subscribe(() => logger.push('change!')); | 
					
						
							|  |  |  |         a.setControl(0, c2); | 
					
						
							|  |  |  |         expect(logger).toEqual(['change!']); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-08-24 16:58:43 -07: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
										 |  |  | })(); |