| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   it, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   xit, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							|  |  |  |   afterEach, | 
					
						
							|  |  |  |   el, | 
					
						
							|  |  |  |   AsyncTestCompleter, | 
					
						
							| 
									
										
										
										
											2015-06-01 10:41:50 -07:00
										 |  |  |   fakeAsync, | 
					
						
							|  |  |  |   tick, | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |   inject | 
					
						
							|  |  |  | } from 'angular2/test_lib'; | 
					
						
							| 
									
										
										
										
											2015-03-26 17:32:48 +01:00
										 |  |  | import {ControlGroup, Control, ControlArray, Validators} from 'angular2/forms'; | 
					
						
							| 
									
										
										
										
											2015-03-24 13:45:47 -07:00
										 |  |  | import {ObservableWrapper} from 'angular2/src/facade/async'; | 
					
						
							| 
									
										
										
										
											2015-02-03 07:27:09 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |   describe("Form Model", () => { | 
					
						
							|  |  |  |     describe("Control", () => { | 
					
						
							| 
									
										
										
										
											2015-07-16 18:34:03 -07:00
										 |  |  |       it("should default the value to null", () => { | 
					
						
							|  |  |  |         var c = new Control(); | 
					
						
							|  |  |  |         expect(c.value).toBe(null); | 
					
						
							|  |  |  |         expect(c.validator).toBe(Validators.nullValidator); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |       describe("validator", () => { | 
					
						
							|  |  |  |         it("should run validator with the initial value", () => { | 
					
						
							| 
									
										
										
										
											2015-03-19 14:21:40 -07:00
										 |  |  |           var c = new Control("value", Validators.required); | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |           expect(c.valid).toEqual(true); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-02-11 11:10:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |         it("should rerun the validator when the value changes", () => { | 
					
						
							| 
									
										
										
										
											2015-03-19 14:21:40 -07:00
										 |  |  |           var c = new Control("value", Validators.required); | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |           c.updateValue(null); | 
					
						
							|  |  |  |           expect(c.valid).toEqual(false); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-02-11 11:10:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |         it("should return errors", () => { | 
					
						
							| 
									
										
										
										
											2015-03-19 14:21:40 -07:00
										 |  |  |           var c = new Control(null, Validators.required); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |           expect(c.errors).toEqual({"required": true}); | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-02-11 11:10:31 -08:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-03-19 10:51:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       describe("dirty", () => { | 
					
						
							|  |  |  |         it("should be false after creating a control", () => { | 
					
						
							|  |  |  |           var c = new Control("value"); | 
					
						
							|  |  |  |           expect(c.dirty).toEqual(false); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it("should be true after changing the value of the control", () => { | 
					
						
							|  |  |  |           var c = new Control("value"); | 
					
						
							| 
									
										
										
										
											2015-06-03 11:54:39 -07:00
										 |  |  |           c.markAsDirty(); | 
					
						
							| 
									
										
										
										
											2015-03-19 10:51:49 -07:00
										 |  |  |           expect(c.dirty).toEqual(true); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-01 10:41:50 -07:00
										 |  |  |       describe("updateValue", () => { | 
					
						
							|  |  |  |         var g, c; | 
					
						
							|  |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           c = new Control("oldValue"); | 
					
						
							|  |  |  |           g = new ControlGroup({"one": c}); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it("should update the value of the control", () => { | 
					
						
							|  |  |  |           c.updateValue("newValue"); | 
					
						
							|  |  |  |           expect(c.value).toEqual("newValue"); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it("should invoke onChange if it is present", () => { | 
					
						
							|  |  |  |           var onChange; | 
					
						
							|  |  |  |           c.registerOnChange((v) => onChange = ["invoked", v]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           c.updateValue("newValue"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(onChange).toEqual(["invoked", "newValue"]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-15 18:16:50 -07:00
										 |  |  |         it("should not invoke on change when explicitly specified", () => { | 
					
						
							|  |  |  |           var onChange = null; | 
					
						
							|  |  |  |           c.registerOnChange((v) => onChange = ["invoked", v]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           c.updateValue("newValue", {emitModelToViewChange: false}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(onChange).toBeNull(); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-01 10:41:50 -07:00
										 |  |  |         it("should update the parent", () => { | 
					
						
							|  |  |  |           c.updateValue("newValue"); | 
					
						
							|  |  |  |           expect(g.value).toEqual({"one": "newValue"}); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it("should not update the parent when explicitly specified", () => { | 
					
						
							|  |  |  |           c.updateValue("newValue", {onlySelf: true}); | 
					
						
							|  |  |  |           expect(g.value).toEqual({"one": "oldValue"}); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it("should fire an event", fakeAsync(() => { | 
					
						
							|  |  |  |              ObservableWrapper.subscribe(c.valueChanges, | 
					
						
							|  |  |  |                                          (value) => { expect(value).toEqual("newValue"); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              c.updateValue("newValue"); | 
					
						
							|  |  |  |              tick(); | 
					
						
							|  |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it("should not fire an event when explicitly specified", fakeAsync(() => { | 
					
						
							|  |  |  |              ObservableWrapper.subscribe(c.valueChanges, (value) => { throw "Should not happen"; }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              c.updateValue("newValue", {emitEvent: false}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              tick(); | 
					
						
							|  |  |  |            })); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  |       describe("valueChanges", () => { | 
					
						
							|  |  |  |         var c; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |         beforeEach(() => { c = new Control("old"); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it("should fire an event after the value has been updated", | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |              ObservableWrapper.subscribe(c.valueChanges, (value) => { | 
					
						
							|  |  |  |                expect(c.value).toEqual('new'); | 
					
						
							|  |  |  |                expect(value).toEqual('new'); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |              c.updateValue("new"); | 
					
						
							|  |  |  |            })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it("should return a cold observable", inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |              c.updateValue("will be ignored"); | 
					
						
							|  |  |  |              ObservableWrapper.subscribe(c.valueChanges, (value) => { | 
					
						
							|  |  |  |                expect(value).toEqual('new'); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |              c.updateValue("new"); | 
					
						
							|  |  |  |            })); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-02-11 11:10:31 -08:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |     describe("ControlGroup", () => { | 
					
						
							|  |  |  |       describe("value", () => { | 
					
						
							|  |  |  |         it("should be the reduced value of the child controls", () => { | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |           var g = new ControlGroup({"one": new Control("111"), "two": new Control("222")}); | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |           expect(g.value).toEqual({"one": "111", "two": "222"}); | 
					
						
							| 
									
										
										
										
											2015-02-03 07:27:09 -08:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-02-11 11:10:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |         it("should be empty when there are no child controls", () => { | 
					
						
							|  |  |  |           var g = new ControlGroup({}); | 
					
						
							|  |  |  |           expect(g.value).toEqual({}); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |         it("should support nested groups", () => { | 
					
						
							| 
									
										
										
										
											2015-06-03 13:42:57 -07:00
										 |  |  |           var g = new ControlGroup( | 
					
						
							|  |  |  |               {"one": new Control("111"), "nested": new ControlGroup({"two": new Control("222")})}); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |           expect(g.value).toEqual({"one": "111", "nested": {"two": "222"}}); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |           g.controls["nested"].controls["two"].updateValue("333"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |           expect(g.value).toEqual({"one": "111", "nested": {"two": "333"}}); | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-30 11:56:00 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |       describe("validator", () => { | 
					
						
							|  |  |  |         it("should run the validator with the initial value (valid)", () => { | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |           var g = new ControlGroup({"one": new Control('value', Validators.required)}); | 
					
						
							| 
									
										
										
										
											2015-02-11 11:10:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |           expect(g.valid).toEqual(true); | 
					
						
							| 
									
										
										
										
											2015-02-11 11:10:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |           expect(g.errors).toEqual(null); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-02-11 11:10:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |         it("should run the validator with the initial value (invalid)", () => { | 
					
						
							| 
									
										
										
										
											2015-03-19 14:21:40 -07:00
										 |  |  |           var one = new Control(null, Validators.required); | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |           var g = new ControlGroup({"one": one}); | 
					
						
							| 
									
										
										
										
											2015-02-11 11:10:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |           expect(g.valid).toEqual(false); | 
					
						
							| 
									
										
										
										
											2015-02-11 11:10:31 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |           expect(g.errors).toEqual({"required": [one]}); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |         it("should run the validator with the value changes", () => { | 
					
						
							| 
									
										
										
										
											2015-03-19 14:21:40 -07:00
										 |  |  |           var c = new Control(null, Validators.required); | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |           var g = new ControlGroup({"one": c}); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |           c.updateValue("some value"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(g.valid).toEqual(true); | 
					
						
							|  |  |  |           expect(g.errors).toEqual(null); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-03 11:54:39 -07:00
										 |  |  |       describe("dirty", () => { | 
					
						
							| 
									
										
										
										
											2015-06-03 11:56:01 -07:00
										 |  |  |         var c, g; | 
					
						
							| 
									
										
										
										
											2015-03-19 10:51:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-03 11:54:39 -07:00
										 |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           c = new Control('value'); | 
					
						
							|  |  |  |           g = new ControlGroup({"one": c}); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-03 11:56:01 -07:00
										 |  |  |         it("should be false after creating a control", () => { expect(g.dirty).toEqual(false); }); | 
					
						
							| 
									
										
										
										
											2015-03-19 10:51:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it("should be false after changing the value of the control", () => { | 
					
						
							| 
									
										
										
										
											2015-06-03 11:54:39 -07:00
										 |  |  |           c.markAsDirty(); | 
					
						
							| 
									
										
										
										
											2015-03-19 10:51:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-03 11:54:39 -07:00
										 |  |  |           expect(g.dirty).toEqual(true); | 
					
						
							| 
									
										
										
										
											2015-03-19 10:51:49 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:30 -07:00
										 |  |  |       describe("optional components", () => { | 
					
						
							|  |  |  |         describe("contains", () => { | 
					
						
							|  |  |  |           var group; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           beforeEach(() => { | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |             group = new ControlGroup( | 
					
						
							|  |  |  |                 { | 
					
						
							|  |  |  |                   "required": new Control("requiredValue"), | 
					
						
							|  |  |  |                   "optional": new Control("optionalValue") | 
					
						
							|  |  |  |                 }, | 
					
						
							|  |  |  |                 {"optional": false}); | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:30 -07:00
										 |  |  |           }); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:30 -07:00
										 |  |  |           // rename contains into has
 | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |           it("should return false when the component is not included", | 
					
						
							|  |  |  |              () => { expect(group.contains("optional")).toEqual(false); }) | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |               it("should return false when there is no component with the given name", | 
					
						
							|  |  |  |                  () => { expect(group.contains("something else")).toEqual(false); }); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:30 -07:00
										 |  |  |           it("should return true when the component is included", () => { | 
					
						
							|  |  |  |             expect(group.contains("required")).toEqual(true); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:30 -07:00
										 |  |  |             group.include("optional"); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:30 -07:00
										 |  |  |             expect(group.contains("optional")).toEqual(true); | 
					
						
							|  |  |  |           }); | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:30 -07:00
										 |  |  |         it("should not include an inactive component into the group value", () => { | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |           var group = new ControlGroup( | 
					
						
							|  |  |  |               {"required": new Control("requiredValue"), "optional": new Control("optionalValue")}, | 
					
						
							|  |  |  |               {"optional": false}); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |           expect(group.value).toEqual({"required": "requiredValue"}); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:30 -07:00
										 |  |  |           group.include("optional"); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |           expect(group.value).toEqual({"required": "requiredValue", "optional": "optionalValue"}); | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-19 14:21:40 -07:00
										 |  |  |         it("should not run Validators on an inactive component", () => { | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |           var group = new ControlGroup( | 
					
						
							|  |  |  |               { | 
					
						
							|  |  |  |                 "required": new Control("requiredValue", Validators.required), | 
					
						
							|  |  |  |                 "optional": new Control("", Validators.required) | 
					
						
							|  |  |  |               }, | 
					
						
							|  |  |  |               {"optional": false}); | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:30 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |           expect(group.valid).toEqual(true); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:30 -07:00
										 |  |  |           group.include("optional"); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-10 18:12:30 -07:00
										 |  |  |           expect(group.valid).toEqual(false); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-03-24 13:45:47 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  |         describe("valueChanges", () => { | 
					
						
							| 
									
										
										
										
											2015-03-24 13:45:47 -07:00
										 |  |  |           var g, c1, c2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           beforeEach(() => { | 
					
						
							|  |  |  |             c1 = new Control("old1"); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |             c2 = new Control("old2"); | 
					
						
							|  |  |  |             g = new ControlGroup({"one": c1, "two": c2}, {"two": true}); | 
					
						
							| 
									
										
										
										
											2015-03-24 13:45:47 -07:00
										 |  |  |           }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |           it("should fire an event after the value has been updated", | 
					
						
							|  |  |  |              inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |                ObservableWrapper.subscribe(g.valueChanges, (value) => { | 
					
						
							|  |  |  |                  expect(g.value).toEqual({'one': 'new1', 'two': 'old2'}); | 
					
						
							|  |  |  |                  expect(value).toEqual({'one': 'new1', 'two': 'old2'}); | 
					
						
							|  |  |  |                  async.done(); | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  |                c1.updateValue("new1"); | 
					
						
							|  |  |  |              })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           it("should fire an event after the control's observable fired an event", | 
					
						
							|  |  |  |              inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |                var controlCallbackIsCalled = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                ObservableWrapper.subscribe(c1.valueChanges, | 
					
						
							|  |  |  |                                            (value) => { controlCallbackIsCalled = true; }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                ObservableWrapper.subscribe(g.valueChanges, (value) => { | 
					
						
							|  |  |  |                  expect(controlCallbackIsCalled).toBe(true); | 
					
						
							|  |  |  |                  async.done(); | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                c1.updateValue("new1"); | 
					
						
							|  |  |  |              })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           it("should fire an event when a control is excluded", | 
					
						
							|  |  |  |              inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |                ObservableWrapper.subscribe(g.valueChanges, (value) => { | 
					
						
							|  |  |  |                  expect(value).toEqual({'one': 'old1'}); | 
					
						
							|  |  |  |                  async.done(); | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                g.exclude("two"); | 
					
						
							|  |  |  |              })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           it("should fire an event when a control is included", | 
					
						
							|  |  |  |              inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |                g.exclude("two"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                ObservableWrapper.subscribe(g.valueChanges, (value) => { | 
					
						
							|  |  |  |                  expect(value).toEqual({'one': 'old1', 'two': 'old2'}); | 
					
						
							|  |  |  |                  async.done(); | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                g.include("two"); | 
					
						
							|  |  |  |              })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           it("should fire an event every time a control is updated", | 
					
						
							|  |  |  |              inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |                var loggedValues = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                ObservableWrapper.subscribe(g.valueChanges, (value) => { | 
					
						
							| 
									
										
										
										
											2015-06-17 11:17:21 -07:00
										 |  |  |                  loggedValues.push(value); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |                  if (loggedValues.length == 2) { | 
					
						
							|  |  |  |                    expect(loggedValues) | 
					
						
							| 
									
										
										
										
											2015-06-01 10:41:50 -07:00
										 |  |  |                        .toEqual([{"one": "new1", "two": "old2"}, {"one": "new1", "two": "new2"}]); | 
					
						
							|  |  |  |                    async.done(); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  |                  } | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                c1.updateValue("new1"); | 
					
						
							|  |  |  |                c2.updateValue("new2"); | 
					
						
							|  |  |  |              })); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           xit("should not fire an event when an excluded control is updated", | 
					
						
							|  |  |  |               inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |                                                // hard to test without hacking zones
 | 
					
						
							|  |  |  |                                            })); | 
					
						
							| 
									
										
										
										
											2015-03-24 13:45:47 -07:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         describe("getError", () => { | 
					
						
							|  |  |  |           it("should return the error when it is present", () => { | 
					
						
							|  |  |  |             var c = new Control("", Validators.required); | 
					
						
							|  |  |  |             var g = new ControlGroup({"one": c}); | 
					
						
							| 
									
										
										
										
											2015-06-09 16:05:13 -07:00
										 |  |  |             expect(c.getError("required")).toEqual(true); | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |             expect(g.getError("required", ["one"])).toEqual(true); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  |           }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |           it("should return null otherwise", () => { | 
					
						
							|  |  |  |             var c = new Control("not empty", Validators.required); | 
					
						
							|  |  |  |             var g = new ControlGroup({"one": c}); | 
					
						
							| 
									
										
										
										
											2015-06-09 16:05:13 -07:00
										 |  |  |             expect(c.getError("invalid")).toEqual(null); | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |             expect(g.getError("required", ["one"])).toEqual(null); | 
					
						
							|  |  |  |             expect(g.getError("required", ["invalid"])).toEqual(null); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  |           }); | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |     describe("ControlArray", () => { | 
					
						
							|  |  |  |       describe("adding/removing", () => { | 
					
						
							| 
									
										
										
										
											2015-06-11 18:50:41 -07:00
										 |  |  |         var a: ControlArray; | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         var c1, c2, c3; | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           a = new ControlArray([]); | 
					
						
							|  |  |  |           c1 = new Control(1); | 
					
						
							|  |  |  |           c2 = new Control(2); | 
					
						
							|  |  |  |           c3 = new Control(3); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         it("should support pushing", () => { | 
					
						
							|  |  |  |           a.push(c1); | 
					
						
							|  |  |  |           expect(a.length).toEqual(1); | 
					
						
							|  |  |  |           expect(a.controls).toEqual([c1]); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         it("should support removing", () => { | 
					
						
							|  |  |  |           a.push(c1); | 
					
						
							|  |  |  |           a.push(c2); | 
					
						
							|  |  |  |           a.push(c3); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |           a.removeAt(1); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |           expect(a.controls).toEqual([c1, c3]); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         it("should support inserting", () => { | 
					
						
							|  |  |  |           a.push(c1); | 
					
						
							|  |  |  |           a.push(c3); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |           a.insert(1, c2); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(a.controls).toEqual([c1, c2, c3]); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |       describe("value", () => { | 
					
						
							|  |  |  |         it("should be the reduced value of the child controls", () => { | 
					
						
							|  |  |  |           var a = new ControlArray([new Control(1), new Control(2)]); | 
					
						
							|  |  |  |           expect(a.value).toEqual([1, 2]); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         it("should be an empty array when there are no child controls", () => { | 
					
						
							|  |  |  |           var a = new ControlArray([]); | 
					
						
							|  |  |  |           expect(a.value).toEqual([]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |       describe("validator", () => { | 
					
						
							|  |  |  |         it("should run the validator with the initial value (valid)", () => { | 
					
						
							|  |  |  |           var a = new ControlArray( | 
					
						
							|  |  |  |               [new Control(1, Validators.required), new Control(2, Validators.required)]); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |           expect(a.valid).toBe(true); | 
					
						
							|  |  |  |           expect(a.errors).toBe(null); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it("should run the validator with the initial value (invalid)", () => { | 
					
						
							|  |  |  |           var a = new ControlArray([ | 
					
						
							|  |  |  |             new Control(1, Validators.required), | 
					
						
							|  |  |  |             new Control(null, Validators.required), | 
					
						
							|  |  |  |             new Control(2, Validators.required) | 
					
						
							|  |  |  |           ]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(a.valid).toBe(false); | 
					
						
							|  |  |  |           expect(a.errors).toEqual({"required": [a.controls[1]]}); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         it("should run the validator when the value changes", () => { | 
					
						
							|  |  |  |           var a = new ControlArray([]); | 
					
						
							|  |  |  |           var c = new Control(null, Validators.required); | 
					
						
							|  |  |  |           a.push(c); | 
					
						
							|  |  |  |           expect(a.valid).toBe(false); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |           c.updateValue("some value"); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |           expect(a.valid).toBe(true); | 
					
						
							|  |  |  |           expect(a.errors).toBe(null); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |       describe("dirty", () => { | 
					
						
							| 
									
										
										
										
											2015-06-11 18:50:41 -07:00
										 |  |  |         var c: Control; | 
					
						
							|  |  |  |         var a: ControlArray; | 
					
						
							| 
									
										
										
										
											2015-06-03 11:54:39 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           c = new Control('value'); | 
					
						
							|  |  |  |           a = new ControlArray([c]); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         it("should be false after creating a control", () => { expect(a.dirty).toEqual(false); }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         it("should be false after changing the value of the control", () => { | 
					
						
							|  |  |  |           c.markAsDirty(); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |           expect(a.dirty).toEqual(true); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |       describe("valueChanges", () => { | 
					
						
							| 
									
										
										
										
											2015-06-11 18:50:41 -07:00
										 |  |  |         var a: ControlArray; | 
					
						
							|  |  |  |         var c1, c2; | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           c1 = new Control("old1"); | 
					
						
							|  |  |  |           c2 = new Control("old2"); | 
					
						
							|  |  |  |           a = new ControlArray([c1, c2]); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         it("should fire an event after the value has been updated", | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |              ObservableWrapper.subscribe(a.valueChanges, (value) => { | 
					
						
							|  |  |  |                expect(a.value).toEqual(['new1', 'old2']); | 
					
						
							|  |  |  |                expect(value).toEqual(['new1', 'old2']); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							|  |  |  |              c1.updateValue("new1"); | 
					
						
							|  |  |  |            })); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         it("should fire an event after the control's observable fired an event", | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |              var controlCallbackIsCalled = false; | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |              ObservableWrapper.subscribe(c1.valueChanges, | 
					
						
							|  |  |  |                                          (value) => { controlCallbackIsCalled = true; }); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |              ObservableWrapper.subscribe(a.valueChanges, (value) => { | 
					
						
							|  |  |  |                expect(controlCallbackIsCalled).toBe(true); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |              c1.updateValue("new1"); | 
					
						
							|  |  |  |            })); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         it("should fire an event when a control is removed", | 
					
						
							|  |  |  |            inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |              ObservableWrapper.subscribe(a.valueChanges, (value) => { | 
					
						
							|  |  |  |                expect(value).toEqual(['old1']); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |              a.removeAt(1); | 
					
						
							|  |  |  |            })); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |         it("should fire an event when a control is added", inject([AsyncTestCompleter], (async) => { | 
					
						
							|  |  |  |              a.removeAt(1); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |              ObservableWrapper.subscribe(a.valueChanges, (value) => { | 
					
						
							|  |  |  |                expect(value).toEqual(['old1', 'old2']); | 
					
						
							|  |  |  |                async.done(); | 
					
						
							|  |  |  |              }); | 
					
						
							| 
									
										
										
										
											2015-05-22 12:32:49 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 14:28:19 -07:00
										 |  |  |              a.push(c2); | 
					
						
							|  |  |  |            })); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe("find", () => { | 
					
						
							|  |  |  |       it("should return null when path is null", () => { | 
					
						
							|  |  |  |         var g = new ControlGroup({}); | 
					
						
							|  |  |  |         expect(g.find(null)).toEqual(null); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it("should return null when path is empty", () => { | 
					
						
							|  |  |  |         var g = new ControlGroup({}); | 
					
						
							|  |  |  |         expect(g.find([])).toEqual(null); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it("should return null when path is invalid", () => { | 
					
						
							|  |  |  |         var g = new ControlGroup({}); | 
					
						
							|  |  |  |         expect(g.find(["one", "two"])).toEqual(null); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it("should return a child of a control group", () => { | 
					
						
							|  |  |  |         var g = new ControlGroup( | 
					
						
							|  |  |  |             {"one": new Control("111"), "nested": new ControlGroup({"two": new Control("222")})}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(g.find(["nested", "two"]).value).toEqual("222"); | 
					
						
							|  |  |  |         expect(g.find(["one"]).value).toEqual("111"); | 
					
						
							|  |  |  |         expect(g.find("nested/two").value).toEqual("222"); | 
					
						
							|  |  |  |         expect(g.find("one").value).toEqual("111"); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it("should return an element of an array", () => { | 
					
						
							|  |  |  |         var g = new ControlGroup({"array": new ControlArray([new Control("111")])}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(g.find(["array", 0]).value).toEqual("111"); | 
					
						
							| 
									
										
										
										
											2015-03-25 10:51:05 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-02-24 11:59:10 -08:00
										 |  |  |     }); | 
					
						
							| 
									
										
										
										
											2015-02-25 15:10:27 -08:00
										 |  |  |   }); | 
					
						
							| 
									
										
										
										
											2015-03-26 17:32:48 +01:00
										 |  |  | } |