| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  | import {afterEach, beforeEach, ddescribe, describe, expect, iit, it, xit} from '@angular/core/testing/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-06-14 18:23:40 -07:00
										 |  |  | import {FormBuilder, FormControl} from '@angular/forms'; | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-14 18:23:40 -07:00
										 |  |  | import {PromiseWrapper} from '../src/facade/promise'; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							| 
									
										
										
										
											2016-06-08 17:08:59 -07:00
										 |  |  |   function syncValidator(_: any /** TODO #9100 */): any /** TODO #9100 */ { return null; } | 
					
						
							|  |  |  |   function asyncValidator(_: any /** TODO #9100 */) { return PromiseWrapper.resolve(null); } | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |   describe('Form Builder', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 17:08:59 -07:00
										 |  |  |     var b: any /** TODO #9100 */; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |     beforeEach(() => { b = new FormBuilder(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     it('should create controls from a value', () => { | 
					
						
							|  |  |  |       var g = b.group({'login': 'some value'}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       expect(g.controls['login'].value).toEqual('some value'); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     it('should create controls from an array', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       var g = b.group( | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           {'login': ['some value'], 'password': ['some value', syncValidator, asyncValidator]}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       expect(g.controls['login'].value).toEqual('some value'); | 
					
						
							|  |  |  |       expect(g.controls['password'].value).toEqual('some value'); | 
					
						
							|  |  |  |       expect(g.controls['password'].validator).toEqual(syncValidator); | 
					
						
							|  |  |  |       expect(g.controls['password'].asyncValidator).toEqual(asyncValidator); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     it('should use controls', () => { | 
					
						
							|  |  |  |       var g = b.group({'login': b.control('some value', syncValidator, asyncValidator)}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       expect(g.controls['login'].value).toEqual('some value'); | 
					
						
							|  |  |  |       expect(g.controls['login'].validator).toBe(syncValidator); | 
					
						
							|  |  |  |       expect(g.controls['login'].asyncValidator).toBe(asyncValidator); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     it('should create groups with optional controls', () => { | 
					
						
							|  |  |  |       var g = b.group({'login': 'some value'}, {'optionals': {'login': false}}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       expect(g.contains('login')).toEqual(false); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     it('should create groups with a custom validator', () => { | 
					
						
							|  |  |  |       var g = b.group( | 
					
						
							|  |  |  |           {'login': 'some value'}, {'validator': syncValidator, 'asyncValidator': asyncValidator}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       expect(g.validator).toBe(syncValidator); | 
					
						
							|  |  |  |       expect(g.asyncValidator).toBe(asyncValidator); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     it('should create control arrays', () => { | 
					
						
							|  |  |  |       var c = b.control('three'); | 
					
						
							|  |  |  |       var a = b.array( | 
					
						
							|  |  |  |           ['one', ['two', syncValidator], c, b.array(['four'])], syncValidator, asyncValidator); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       expect(a.value).toEqual(['one', 'two', 'three', ['four']]); | 
					
						
							|  |  |  |       expect(a.validator).toBe(syncValidator); | 
					
						
							|  |  |  |       expect(a.asyncValidator).toBe(asyncValidator); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } |