| 
									
										
										
										
											2016-06-23 09:47:54 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @license | 
					
						
							|  |  |  |  * Copyright Google Inc. All Rights Reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Use of this source code is governed by an MIT-style license that can be | 
					
						
							|  |  |  |  * found in the LICENSE file at https://angular.io/license
 | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-21 17:12:00 -07:00
										 |  |  | import {fakeAsync, tick} from '@angular/core/testing'; | 
					
						
							| 
									
										
										
										
											2016-09-27 17:12:25 -07:00
										 |  |  | import {describe, expect, it} from '@angular/core/testing/testing_internal'; | 
					
						
							| 
									
										
										
										
											2016-06-14 18:23:40 -07:00
										 |  |  | import {AbstractControl, FormControl, Validators} from '@angular/forms'; | 
					
						
							| 
									
										
										
										
											2016-06-27 00:52:50 +02:00
										 |  |  | import {Observable} from 'rxjs/Observable'; | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 00:52:50 +02:00
										 |  |  | import {normalizeAsyncValidator} from '../src/directives/normalize_validator'; | 
					
						
							| 
									
										
										
										
											2016-08-02 15:53:34 -07:00
										 |  |  | import {EventEmitter} from '../src/facade/async'; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | export function main() { | 
					
						
							|  |  |  |   function validator(key: string, error: any) { | 
					
						
							|  |  |  |     return function(c: AbstractControl) { | 
					
						
							| 
									
										
										
										
											2016-10-19 19:37:54 +03:00
										 |  |  |       const r: {[k: string]: string} = {}; | 
					
						
							| 
									
										
										
										
											2016-09-09 12:04:38 -07:00
										 |  |  |       r[key] = error; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       return r; | 
					
						
							| 
									
										
										
										
											2016-07-21 17:12:00 -07:00
										 |  |  |     }; | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 00:52:50 +02:00
										 |  |  |   class AsyncValidatorDirective { | 
					
						
							|  |  |  |     constructor(private expected: string, private error: any) {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     validate(c: any): {[key: string]: any;} { | 
					
						
							|  |  |  |       return Observable.create((obs: any) => { | 
					
						
							|  |  |  |         const error = this.expected !== c.value ? this.error : null; | 
					
						
							|  |  |  |         obs.next(error); | 
					
						
							|  |  |  |         obs.complete(); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |   describe('Validators', () => { | 
					
						
							|  |  |  |     describe('required', () => { | 
					
						
							|  |  |  |       it('should error on an empty string', | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |          () => { expect(Validators.required(new FormControl(''))).toEqual({'required': true}); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should error on null', | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |          () => { expect(Validators.required(new FormControl(null))).toEqual({'required': true}); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should not error on a non-empty string', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.required(new FormControl('not empty'))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should accept zero as valid', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.required(new FormControl(0))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('minLength', () => { | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |       it('should not error on an empty string', | 
					
						
							|  |  |  |          () => { expect(Validators.minLength(2)(new FormControl(''))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-10-07 00:12:09 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |       it('should not error on null', | 
					
						
							|  |  |  |          () => { expect(Validators.minLength(2)(new FormControl(null))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |       it('should not error on undefined', | 
					
						
							|  |  |  |          () => { expect(Validators.minLength(2)(new FormControl(null))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should not error on valid strings', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.minLength(2)(new FormControl('aa'))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should error on short strings', () => { | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(Validators.minLength(2)(new FormControl('a'))).toEqual({ | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           'minlength': {'requiredLength': 2, 'actualLength': 1} | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('maxLength', () => { | 
					
						
							|  |  |  |       it('should not error on an empty string', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.maxLength(2)(new FormControl(''))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should not error on null', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.maxLength(2)(new FormControl(null))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should not error on valid strings', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.maxLength(2)(new FormControl('aa'))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should error on long strings', () => { | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(Validators.maxLength(2)(new FormControl('aaa'))).toEqual({ | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           'maxlength': {'requiredLength': 2, 'actualLength': 3} | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('pattern', () => { | 
					
						
							|  |  |  |       it('should not error on an empty string', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.pattern('[a-zA-Z ]+')(new FormControl(''))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should not error on null', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.pattern('[a-zA-Z ]+')(new FormControl(null))).toBeNull(); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on undefined', | 
					
						
							|  |  |  |          () => { expect(Validators.pattern('[a-zA-Z ]+')(new FormControl(null))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-05 01:14:23 +02:00
										 |  |  |       it('should not error on null value and "null" pattern', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.pattern('null')(new FormControl(null))).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-10-05 01:14:23 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |       it('should not error on valid strings', | 
					
						
							| 
									
										
										
										
											2016-10-19 19:37:54 +03:00
										 |  |  |          () => expect(Validators.pattern('[a-zA-Z ]*')(new FormControl('aaAA'))).toBeNull()); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should error on failure to match string', () => { | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(Validators.pattern('[a-zA-Z ]*')(new FormControl('aaa0'))).toEqual({ | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |           'pattern': {'requiredPattern': '^[a-zA-Z ]*$', 'actualValue': 'aaa0'} | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2016-10-19 19:37:54 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  |       it('should accept RegExp object', () => { | 
					
						
							|  |  |  |         const pattern: RegExp = new RegExp('[a-zA-Z ]+'); | 
					
						
							|  |  |  |         expect(Validators.pattern(pattern)(new FormControl('aaAA'))).toBeNull(); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should error on failure to match RegExp object', () => { | 
					
						
							|  |  |  |         const pattern: RegExp = new RegExp('^[a-zA-Z ]*$'); | 
					
						
							|  |  |  |         expect(Validators.pattern(pattern)(new FormControl('aaa0'))).toEqual({ | 
					
						
							|  |  |  |           'pattern': {'requiredPattern': '/^[a-zA-Z ]*$/', 'actualValue': 'aaa0'} | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on "null" pattern', | 
					
						
							|  |  |  |          () => expect(Validators.pattern(null)(new FormControl('aaAA'))).toBeNull()); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should not error on "undefined" pattern', | 
					
						
							|  |  |  |          () => expect(Validators.pattern(undefined)(new FormControl('aaAA'))).toBeNull()); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('compose', () => { | 
					
						
							|  |  |  |       it('should return null when given null', | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |          () => { expect(Validators.compose(null)).toBe(null); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should collect errors from all the validators', () => { | 
					
						
							| 
									
										
										
										
											2016-10-19 19:37:54 +03:00
										 |  |  |         const c = Validators.compose([validator('a', true), validator('b', true)]); | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(c(new FormControl(''))).toEqual({'a': true, 'b': true}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should run validators left to right', () => { | 
					
						
							| 
									
										
										
										
											2016-10-19 19:37:54 +03:00
										 |  |  |         const c = Validators.compose([validator('a', 1), validator('a', 2)]); | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(c(new FormControl(''))).toEqual({'a': 2}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should return null when no errors', () => { | 
					
						
							| 
									
										
										
										
											2016-10-19 19:37:54 +03:00
										 |  |  |         const c = Validators.compose([Validators.nullValidator, Validators.nullValidator]); | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |         expect(c(new FormControl(''))).toBeNull(); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should ignore nulls', () => { | 
					
						
							| 
									
										
										
										
											2016-10-19 19:37:54 +03:00
										 |  |  |         const c = Validators.compose([null, Validators.required]); | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |         expect(c(new FormControl(''))).toEqual({'required': true}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |     describe('composeAsync', () => { | 
					
						
							| 
									
										
										
										
											2016-06-08 17:08:59 -07:00
										 |  |  |       function asyncValidator(expected: any /** TODO #9100 */, response: any /** TODO #9100 */) { | 
					
						
							|  |  |  |         return (c: any /** TODO #9100 */) => { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |           const emitter = new EventEmitter(); | 
					
						
							|  |  |  |           const res = c.value != expected ? response : null; | 
					
						
							| 
									
										
										
										
											2016-08-02 15:53:34 -07:00
										 |  |  |           Promise.resolve(null).then(() => { | 
					
						
							|  |  |  |             emitter.emit(res); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |             // this is required because of a bug in ObservableWrapper
 | 
					
						
							|  |  |  |             // where callComplete can fire before callEmit
 | 
					
						
							|  |  |  |             // remove this one the bug is fixed
 | 
					
						
							| 
									
										
										
										
											2016-08-02 15:53:34 -07:00
										 |  |  |             setTimeout(() => { emitter.complete(); }, 0); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |           }); | 
					
						
							| 
									
										
										
										
											2016-08-02 15:53:34 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |           return emitter; | 
					
						
							|  |  |  |         }; | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should return null when given null', | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |          () => { expect(Validators.composeAsync(null)).toBeNull(); }); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should collect errors from all the validators', fakeAsync(() => { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |            const c = Validators.composeAsync([ | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |              asyncValidator('expected', {'one': true}), asyncValidator('expected', {'two': true}) | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |            ]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |            let value: any /** TODO #9100 */ = null; | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |            (<Promise<any>>c(new FormControl('invalid'))).then(v => value = v); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            tick(1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |            expect(value).toEqual({'one': true, 'two': true}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |          })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-27 00:52:50 +02:00
										 |  |  |       it('should normalize and evaluate async validator-directives correctly', fakeAsync(() => { | 
					
						
							|  |  |  |            const c = Validators.composeAsync( | 
					
						
							|  |  |  |                [normalizeAsyncValidator(new AsyncValidatorDirective('expected', {'one': true}))]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            let value: any = null; | 
					
						
							|  |  |  |            c(new FormControl()).then((v: any) => value = v); | 
					
						
							|  |  |  |            tick(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |            expect(value).toEqual({'one': true}); | 
					
						
							|  |  |  |          })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should return null when no errors', fakeAsync(() => { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |            const c = Validators.composeAsync([asyncValidator('expected', {'one': true})]); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |            let value: any /** TODO #9100 */ = null; | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |            (<Promise<any>>c(new FormControl('expected'))).then(v => value = v); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |            tick(1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-10 18:17:45 +02:00
										 |  |  |            expect(value).toBeNull(); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |          })); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |       it('should ignore nulls', fakeAsync(() => { | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |            const c = Validators.composeAsync([asyncValidator('expected', {'one': true}), null]); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-12 14:08:58 +01:00
										 |  |  |            let value: any /** TODO #9100 */ = null; | 
					
						
							| 
									
										
										
										
											2016-06-10 11:15:59 -07:00
										 |  |  |            (<Promise<any>>c(new FormControl('invalid'))).then(v => value = v); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |            tick(1); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-08 16:38:52 -07:00
										 |  |  |            expect(value).toEqual({'one': true}); | 
					
						
							| 
									
										
										
										
											2016-06-08 15:36:24 -07:00
										 |  |  |          })); | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | } |