| 
									
										
										
										
											2015-06-18 15:40:12 -07:00
										 |  |  | ///<reference path="../../src/change_detection/pipes/pipe.ts"/>
 | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | import { | 
					
						
							|  |  |  |   ddescribe, | 
					
						
							|  |  |  |   describe, | 
					
						
							|  |  |  |   it, | 
					
						
							|  |  |  |   iit, | 
					
						
							|  |  |  |   xit, | 
					
						
							|  |  |  |   expect, | 
					
						
							|  |  |  |   beforeEach, | 
					
						
							|  |  |  |   afterEach, | 
					
						
							|  |  |  |   IS_DARTIUM | 
					
						
							|  |  |  | } from 'angular2/test_lib'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import { | 
					
						
							| 
									
										
										
										
											2015-06-05 17:33:51 -07:00
										 |  |  |   CONST_EXPR, | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |   isPresent, | 
					
						
							|  |  |  |   isBlank, | 
					
						
							|  |  |  |   isJsObject, | 
					
						
							|  |  |  |   BaseException, | 
					
						
							|  |  |  |   FunctionWrapper | 
					
						
							|  |  |  | } from 'angular2/src/facade/lang'; | 
					
						
							|  |  |  | import {List, ListWrapper, MapWrapper, StringMapWrapper} from 'angular2/src/facade/collection'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import { | 
					
						
							|  |  |  |   ChangeDispatcher, | 
					
						
							| 
									
										
										
										
											2015-06-05 17:33:51 -07:00
										 |  |  |   DehydratedException, | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |   DynamicChangeDetector, | 
					
						
							|  |  |  |   ChangeDetectionError, | 
					
						
							|  |  |  |   BindingRecord, | 
					
						
							|  |  |  |   DirectiveRecord, | 
					
						
							|  |  |  |   DirectiveIndex, | 
					
						
							| 
									
										
										
										
											2015-07-09 10:34:51 -07:00
										 |  |  |   Pipes, | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |   Pipe, | 
					
						
							|  |  |  |   CHECK_ALWAYS, | 
					
						
							|  |  |  |   CHECK_ONCE, | 
					
						
							|  |  |  |   CHECKED, | 
					
						
							|  |  |  |   DETACHED, | 
					
						
							|  |  |  |   ON_PUSH, | 
					
						
							|  |  |  |   DEFAULT, | 
					
						
							|  |  |  |   WrappedValue, | 
					
						
							|  |  |  |   DynamicProtoChangeDetector, | 
					
						
							|  |  |  |   ChangeDetectorDefinition, | 
					
						
							|  |  |  |   Lexer, | 
					
						
							|  |  |  |   Parser, | 
					
						
							|  |  |  |   Locals, | 
					
						
							|  |  |  |   ProtoChangeDetector | 
					
						
							| 
									
										
										
										
											2015-07-11 17:26:48 +02:00
										 |  |  | } from 'angular2/src/change_detection/change_detection'; | 
					
						
							| 
									
										
										
										
											2015-05-29 16:34:51 -07:00
										 |  |  | import {JitProtoChangeDetector} from 'angular2/src/change_detection/jit_proto_change_detector'; | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 14:56:08 -07:00
										 |  |  | import {getDefinition} from './change_detector_config'; | 
					
						
							|  |  |  | import {getFactoryById} from './generated/change_detector_classes'; | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-05 17:33:51 -07:00
										 |  |  | const _DEFAULT_CONTEXT = CONST_EXPR(new Object()); | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-10 14:56:08 -07:00
										 |  |  | /** | 
					
						
							|  |  |  |  * Tests in this spec run against three different implementations of `AbstractChangeDetector`, | 
					
						
							|  |  |  |  * `dynamic` (which use reflection to inspect objects), `JIT` (which are generated only for | 
					
						
							| 
									
										
										
										
											2015-06-17 12:56:11 -07:00
										 |  |  |  * Javascript at runtime using `eval`) and `Pregen` (which are generated only for Dart prior | 
					
						
							|  |  |  |  * to app deploy to avoid the need for reflection). | 
					
						
							| 
									
										
										
										
											2015-06-10 14:56:08 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Pre-generated classes require knowledge of the shape of the change detector at the time of Dart | 
					
						
							|  |  |  |  * transformation, so in these tests we abstract a `ChangeDetectorDefinition` out into the | 
					
						
							|  |  |  |  * change_detector_config library and define a build step which pre-generates the necessary change | 
					
						
							|  |  |  |  * detectors to execute these tests. Once that built step has run, those generated change detectors | 
					
						
							|  |  |  |  * can be found in the generated/change_detector_classes library. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | export function main() { | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |   ListWrapper.forEach(['dynamic', 'JIT', 'Pregen'], (cdType) => { | 
					
						
							|  |  |  |     if (cdType == "JIT" && IS_DARTIUM) return; | 
					
						
							|  |  |  |     if (cdType == "Pregen" && !IS_DARTIUM) return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     describe(`${cdType} Change Detector`, () => { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |       function _getProtoChangeDetector(def: ChangeDetectorDefinition) { | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |         switch (cdType) { | 
					
						
							|  |  |  |           case 'dynamic': | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |             return new DynamicProtoChangeDetector(def); | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |           case 'JIT': | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |             return new JitProtoChangeDetector(def); | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |           case 'Pregen': | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |             return getFactoryById(def.id)(def); | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |           default: | 
					
						
							|  |  |  |             return null; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |       function _createWithoutHydrate(expression: string) { | 
					
						
							|  |  |  |         var dispatcher = new TestDispatcher(); | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |         var cd = _getProtoChangeDetector(getDefinition(expression).cdDef).instantiate(dispatcher); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |         return new _ChangeDetectorAndDispatcher(cd, dispatcher); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |       function _createChangeDetector(expression: string, context = _DEFAULT_CONTEXT, | 
					
						
							|  |  |  |                                      registry = null) { | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |         var dispatcher = new TestDispatcher(); | 
					
						
							| 
									
										
										
										
											2015-06-05 17:33:51 -07:00
										 |  |  |         var testDef = getDefinition(expression); | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |         var protoCd = _getProtoChangeDetector(testDef.cdDef); | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |         var cd = protoCd.instantiate(dispatcher); | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |         cd.hydrate(context, testDef.locals, null, registry); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |         return new _ChangeDetectorAndDispatcher(cd, dispatcher); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       function _bindSimpleValue(expression: string, context = _DEFAULT_CONTEXT) { | 
					
						
							|  |  |  |         var val = _createChangeDetector(expression, context); | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |         return val.dispatcher.log; | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should support literals', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('10')).toEqual(['propName=10']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should strip quotes from literals', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('"str"')).toEqual(['propName=str']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support newlines in literals', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('"a\n\nb"')).toEqual(['propName=a\n\nb']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support + operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('10 + 2')).toEqual(['propName=12']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support - operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('10 - 2')).toEqual(['propName=8']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support * operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('10 * 2')).toEqual(['propName=20']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support / operations', () => { | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |         expect(_bindSimpleValue('10 / 2')).toEqual([`propName=${5.0}`]); | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       });  // dart exp=5.0, js exp=5
 | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support % operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('11 % 2')).toEqual(['propName=1']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support == operations on identical', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('1 == 1')).toEqual(['propName=true']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support != operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('1 != 1')).toEqual(['propName=false']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support == operations on coerceible', () => { | 
					
						
							|  |  |  |         var expectedValue = IS_DARTIUM ? 'false' : 'true'; | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |         expect(_bindSimpleValue('1 == true')).toEqual([`propName=${expectedValue}`]); | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support === operations on identical', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('1 === 1')).toEqual(['propName=true']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support !== operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('1 !== 1')).toEqual(['propName=false']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support === operations on coerceible', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('1 === true')).toEqual(['propName=false']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support true < operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('1 < 2')).toEqual(['propName=true']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support false < operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('2 < 1')).toEqual(['propName=false']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support false > operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('1 > 2')).toEqual(['propName=false']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support true > operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('2 > 1')).toEqual(['propName=true']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support true <= operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('1 <= 2')).toEqual(['propName=true']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support equal <= operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('2 <= 2')).toEqual(['propName=true']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support false <= operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('2 <= 1')).toEqual(['propName=false']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support true >= operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('2 >= 1')).toEqual(['propName=true']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support equal >= operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('2 >= 2')).toEqual(['propName=true']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support false >= operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('1 >= 2')).toEqual(['propName=false']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support true && operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('true && true')).toEqual(['propName=true']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support false && operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('true && false')).toEqual(['propName=false']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support true || operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('true || false')).toEqual(['propName=true']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support false || operations', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('false || false')).toEqual(['propName=false']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support negate', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('!true')).toEqual(['propName=false']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support double negate', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('!!true')).toEqual(['propName=true']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support true conditionals', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('1 < 2 ? 1 : 2')).toEqual(['propName=1']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support false conditionals', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('1 > 2 ? 1 : 2')).toEqual(['propName=2']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support keyed access to a list item', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('["foo", "bar"][0]')).toEqual(['propName=foo']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |       it('should support keyed access to a map item', | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |          () => { expect(_bindSimpleValue('{"foo": "bar"}["foo"]')).toEqual(['propName=bar']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should report all changes on the first run including uninitialized values', () => { | 
					
						
							|  |  |  |         expect(_bindSimpleValue('value', new Uninitialized())).toEqual(['propName=null']); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should report all changes on the first run including null values', () => { | 
					
						
							|  |  |  |         var td = new TestData(null); | 
					
						
							|  |  |  |         expect(_bindSimpleValue('a', td)).toEqual(['propName=null']); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should support simple chained property access', () => { | 
					
						
							|  |  |  |         var address = new Address('Grenoble'); | 
					
						
							|  |  |  |         var person = new Person('Victor', address); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(_bindSimpleValue('address.city', person)).toEqual(['propName=Grenoble']); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should support the safe navigation operator', () => { | 
					
						
							|  |  |  |         var person = new Person('Victor', null); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(_bindSimpleValue('address?.city', person)).toEqual(['propName=null']); | 
					
						
							|  |  |  |         expect(_bindSimpleValue('address?.toString()', person)).toEqual(['propName=null']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         person.address = new Address('MTV'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(_bindSimpleValue('address?.city', person)).toEqual(['propName=MTV']); | 
					
						
							|  |  |  |         expect(_bindSimpleValue('address?.toString()', person)).toEqual(['propName=MTV']); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |       it('should support method calls', () => { | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |         var person = new Person('Victor'); | 
					
						
							|  |  |  |         expect(_bindSimpleValue('sayHi("Jim")', person)).toEqual(['propName=Hi, Jim']); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |       it('should support function calls', () => { | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |         var td = new TestData(() => (a) => a); | 
					
						
							|  |  |  |         expect(_bindSimpleValue('a()(99)', td)).toEqual(['propName=99']); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |       it('should support chained method calls', () => { | 
					
						
							| 
									
										
										
										
											2015-06-02 18:09:10 -07:00
										 |  |  |         var person = new Person('Victor'); | 
					
						
							|  |  |  |         var td = new TestData(person); | 
					
						
							|  |  |  |         expect(_bindSimpleValue('a.sayHi("Jim")', td)).toEqual(['propName=Hi, Jim']); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-06-05 17:33:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |       it('should do simple watching', () => { | 
					
						
							|  |  |  |         var person = new Person('misko'); | 
					
						
							|  |  |  |         var val = _createChangeDetector('name', person); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |         expect(val.dispatcher.log).toEqual(['propName=misko']); | 
					
						
							|  |  |  |         val.dispatcher.clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |         expect(val.dispatcher.log).toEqual([]); | 
					
						
							|  |  |  |         val.dispatcher.clear(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         person.name = 'Misko'; | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |         expect(val.dispatcher.log).toEqual(['propName=Misko']); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should support literal array', () => { | 
					
						
							|  |  |  |         var val = _createChangeDetector('[1, 2]'); | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |         expect(val.dispatcher.loggedValues).toEqual([[1, 2]]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         val = _createChangeDetector('[1, a]', new TestData(2)); | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |         expect(val.dispatcher.loggedValues).toEqual([[1, 2]]); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should support literal maps', () => { | 
					
						
							|  |  |  |         var val = _createChangeDetector('{z: 1}'); | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |         expect(val.dispatcher.loggedValues[0]['z']).toEqual(1); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         val = _createChangeDetector('{z: a}', new TestData(1)); | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |         expect(val.dispatcher.loggedValues[0]['z']).toEqual(1); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |       it('should support interpolation', () => { | 
					
						
							|  |  |  |         var val = _createChangeDetector('interpolation', new TestData('value')); | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |         val.changeDetector.hydrate(new TestData('value'), null, null, null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(val.dispatcher.log).toEqual(['propName=BvalueA']); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-24 16:29:50 +02:00
										 |  |  |       it('should output empty strings for null values in interpolation', () => { | 
					
						
							|  |  |  |         var val = _createChangeDetector('interpolation', new TestData('value')); | 
					
						
							|  |  |  |         val.changeDetector.hydrate(new TestData(null), null, null, null); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(val.dispatcher.log).toEqual(['propName=BA']); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-16 11:08:47 -07:00
										 |  |  |       it('should escape values in literals that indicate interpolation', | 
					
						
							|  |  |  |          () => { expect(_bindSimpleValue('"$"')).toEqual(['propName=$']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-17 12:56:11 -07:00
										 |  |  |       describe('pure functions', () => { | 
					
						
							|  |  |  |         it('should preserve memoized result', () => { | 
					
						
							|  |  |  |           var person = new Person('bob'); | 
					
						
							|  |  |  |           var val = _createChangeDetector('passThrough([12])', person); | 
					
						
							|  |  |  |           val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |           val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |           expect(val.dispatcher.loggedValues).toEqual([[12]]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |       describe('change notification', () => { | 
					
						
							|  |  |  |         describe('simple checks', () => { | 
					
						
							|  |  |  |           it('should pass a change record to the dispatcher', () => { | 
					
						
							|  |  |  |             var person = new Person('bob'); | 
					
						
							|  |  |  |             var val = _createChangeDetector('name', person); | 
					
						
							|  |  |  |             val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |             expect(val.dispatcher.loggedValues).toEqual(['bob']); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         describe('pipes', () => { | 
					
						
							|  |  |  |           it('should pass a change record to the dispatcher', () => { | 
					
						
							| 
									
										
										
										
											2015-07-09 10:34:51 -07:00
										 |  |  |             var registry = new FakePipes('pipe', () => new CountingPipe()); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |             var person = new Person('bob'); | 
					
						
							|  |  |  |             var val = _createChangeDetector('name | pipe', person, registry); | 
					
						
							|  |  |  |             val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |             expect(val.dispatcher.loggedValues).toEqual(['bob state:0']); | 
					
						
							|  |  |  |           }); | 
					
						
							| 
									
										
										
										
											2015-06-26 00:22:06 +04:30
										 |  |  | 
 | 
					
						
							|  |  |  |           it('should support arguments in pipes', () => { | 
					
						
							| 
									
										
										
										
											2015-07-09 10:34:51 -07:00
										 |  |  |             var registry = new FakePipes('pipe', () => new MultiArgPipe()); | 
					
						
							| 
									
										
										
										
											2015-06-26 00:22:06 +04:30
										 |  |  |             var address = new Address('two'); | 
					
						
							|  |  |  |             var person = new Person('value', address); | 
					
						
							|  |  |  |             var val = _createChangeDetector("name | pipe:'one':address.city", person, registry); | 
					
						
							|  |  |  |             val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |             expect(val.dispatcher.loggedValues).toEqual(['value one two default']); | 
					
						
							|  |  |  |           }); | 
					
						
							| 
									
										
										
										
											2015-07-28 15:57:05 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |           it('should support pipes as arguments to pure functions', () => { | 
					
						
							|  |  |  |             var registry = new FakePipes('pipe', () => new IdentityPipe()); | 
					
						
							|  |  |  |             var person = new Person('bob'); | 
					
						
							|  |  |  |             var val = _createChangeDetector('(name | pipe).length', person, registry); | 
					
						
							|  |  |  |             val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |             expect(val.dispatcher.loggedValues).toEqual([3]); | 
					
						
							|  |  |  |           }); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 09:45:31 -07:00
										 |  |  |         it('should notify the dispatcher on all changes done', () => { | 
					
						
							|  |  |  |           var val = _createChangeDetector('name', new Person('bob')); | 
					
						
							|  |  |  |           val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |           expect(val.dispatcher.onAllChangesDoneCalled).toEqual(true); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |         describe('updating directives', () => { | 
					
						
							|  |  |  |           var directive1; | 
					
						
							|  |  |  |           var directive2; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           beforeEach(() => { | 
					
						
							|  |  |  |             directive1 = new TestDirective(); | 
					
						
							|  |  |  |             directive2 = new TestDirective(); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           it('should happen directly, without invoking the dispatcher', () => { | 
					
						
							|  |  |  |             var val = _createWithoutHydrate('directNoDispatcher'); | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |             val.changeDetector.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([directive1], []), | 
					
						
							|  |  |  |                                        null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |             val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |             expect(val.dispatcher.loggedValues).toEqual([]); | 
					
						
							|  |  |  |             expect(directive1.a).toEqual(42); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           describe('onChange', () => { | 
					
						
							|  |  |  |             it('should notify the directive when a group of records changes', () => { | 
					
						
							|  |  |  |               var cd = _createWithoutHydrate('groupChanges').changeDetector; | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |               cd.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([directive1, directive2], []), | 
					
						
							|  |  |  |                          null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |               cd.detectChanges(); | 
					
						
							|  |  |  |               expect(directive1.changes).toEqual({'a': 1, 'b': 2}); | 
					
						
							|  |  |  |               expect(directive2.changes).toEqual({'a': 3}); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           describe('onCheck', () => { | 
					
						
							|  |  |  |             it('should notify the directive when it is checked', () => { | 
					
						
							|  |  |  |               var cd = _createWithoutHydrate('directiveOnCheck').changeDetector; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |               cd.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([directive1], []), null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |               cd.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               expect(directive1.onCheckCalled).toBe(true); | 
					
						
							|  |  |  |               directive1.onCheckCalled = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               cd.detectChanges(); | 
					
						
							|  |  |  |               expect(directive1.onCheckCalled).toBe(true); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             it('should not call onCheck in detectNoChanges', () => { | 
					
						
							|  |  |  |               var cd = _createWithoutHydrate('directiveOnCheck').changeDetector; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |               cd.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([directive1], []), null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |               cd.checkNoChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               expect(directive1.onCheckCalled).toBe(false); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           describe('onInit', () => { | 
					
						
							|  |  |  |             it('should notify the directive after it has been checked the first time', () => { | 
					
						
							|  |  |  |               var cd = _createWithoutHydrate('directiveOnInit').changeDetector; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |               cd.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([directive1], []), null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |               cd.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               expect(directive1.onInitCalled).toBe(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               directive1.onInitCalled = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               cd.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               expect(directive1.onInitCalled).toBe(false); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             it('should not call onInit in detectNoChanges', () => { | 
					
						
							|  |  |  |               var cd = _createWithoutHydrate('directiveOnInit').changeDetector; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |               cd.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([directive1], []), null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |               cd.checkNoChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               expect(directive1.onInitCalled).toBe(false); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           describe('onAllChangesDone', () => { | 
					
						
							|  |  |  |             it('should be called after processing all the children', () => { | 
					
						
							|  |  |  |               var cd = _createWithoutHydrate('emptyWithDirectiveRecords').changeDetector; | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |               cd.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([directive1, directive2], []), | 
					
						
							|  |  |  |                          null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |               cd.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               expect(directive1.onChangesDoneCalled).toBe(true); | 
					
						
							|  |  |  |               expect(directive2.onChangesDoneCalled).toBe(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               // reset directives
 | 
					
						
							|  |  |  |               directive1.onChangesDoneCalled = false; | 
					
						
							|  |  |  |               directive2.onChangesDoneCalled = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               // Verify that checking should not call them.
 | 
					
						
							|  |  |  |               cd.checkNoChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               expect(directive1.onChangesDoneCalled).toBe(false); | 
					
						
							|  |  |  |               expect(directive2.onChangesDoneCalled).toBe(false); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               // re-verify that changes are still detected
 | 
					
						
							|  |  |  |               cd.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               expect(directive1.onChangesDoneCalled).toBe(true); | 
					
						
							|  |  |  |               expect(directive2.onChangesDoneCalled).toBe(true); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             it('should not be called when onAllChangesDone is false', () => { | 
					
						
							|  |  |  |               var cd = _createWithoutHydrate('noCallbacks').changeDetector; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |               cd.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([directive1], []), null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |               cd.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               expect(directive1.onChangesDoneCalled).toEqual(false); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             it('should be called in reverse order so the child is always notified before the parent', | 
					
						
							|  |  |  |                () => { | 
					
						
							|  |  |  |                  var cd = _createWithoutHydrate('emptyWithDirectiveRecords').changeDetector; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  var onChangesDoneCalls = []; | 
					
						
							|  |  |  |                  var td1; | 
					
						
							| 
									
										
										
										
											2015-06-17 11:17:21 -07:00
										 |  |  |                  td1 = new TestDirective(() => onChangesDoneCalls.push(td1)); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |                  var td2; | 
					
						
							| 
									
										
										
										
											2015-06-17 11:17:21 -07:00
										 |  |  |                  td2 = new TestDirective(() => onChangesDoneCalls.push(td2)); | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |                  cd.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([td1, td2], []), null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |                  cd.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                  expect(onChangesDoneCalls).toEqual([td2, td1]); | 
					
						
							|  |  |  |                }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             it('should be called before processing shadow dom children', () => { | 
					
						
							|  |  |  |               var parent = _createWithoutHydrate('directNoDispatcher').changeDetector; | 
					
						
							|  |  |  |               var child = _createWithoutHydrate('directNoDispatcher').changeDetector; | 
					
						
							|  |  |  |               parent.addShadowDomChild(child); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               var orderOfOperations = []; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |               var directiveInShadowDom = null; | 
					
						
							| 
									
										
										
										
											2015-06-17 11:17:21 -07:00
										 |  |  |               directiveInShadowDom = | 
					
						
							|  |  |  |                   new TestDirective(() => { orderOfOperations.push(directiveInShadowDom); }); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |               var parentDirective = null; | 
					
						
							| 
									
										
										
										
											2015-06-17 11:17:21 -07:00
										 |  |  |               parentDirective = | 
					
						
							|  |  |  |                   new TestDirective(() => { orderOfOperations.push(parentDirective); }); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |               parent.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([parentDirective], []), | 
					
						
							|  |  |  |                              null); | 
					
						
							|  |  |  |               child.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([directiveInShadowDom], []), | 
					
						
							|  |  |  |                             null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |               parent.detectChanges(); | 
					
						
							|  |  |  |               expect(orderOfOperations).toEqual([parentDirective, directiveInShadowDom]); | 
					
						
							|  |  |  |             }); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |       describe('reading directives', () => { | 
					
						
							|  |  |  |         it('should read directive properties', () => { | 
					
						
							|  |  |  |           var directive = new TestDirective(); | 
					
						
							|  |  |  |           directive.a = 'aaa'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           var val = _createWithoutHydrate('readingDirectives'); | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |           val.changeDetector.hydrate(_DEFAULT_CONTEXT, null, new FakeDirectives([directive], []), | 
					
						
							|  |  |  |                                      null); | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |           val.changeDetector.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(val.dispatcher.loggedValues).toEqual(['aaa']); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       describe('enforce no new changes', () => { | 
					
						
							|  |  |  |         it('should throw when a record gets changed after it has been checked', () => { | 
					
						
							|  |  |  |           var val = _createChangeDetector('a', new TestData('value')); | 
					
						
							|  |  |  |           expect(() => { val.changeDetector.checkNoChanges(); }) | 
					
						
							|  |  |  |               .toThrowError(new RegExp( | 
					
						
							|  |  |  |                   'Expression [\'"]a in location[\'"] has changed after it was checked')); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should not break the next run', () => { | 
					
						
							|  |  |  |           var val = _createChangeDetector('a', new TestData('value')); | 
					
						
							|  |  |  |           expect(() => val.changeDetector.checkNoChanges()) | 
					
						
							|  |  |  |               .toThrowError(new RegExp( | 
					
						
							|  |  |  |                   'Expression [\'"]a in location[\'"] has changed after it was checked.')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |           expect(val.dispatcher.loggedValues).toEqual(['value']); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('error handling', () => { | 
					
						
							| 
									
										
										
										
											2015-07-05 14:46:35 -07:00
										 |  |  |         it('should wrap exceptions into ChangeDetectionError', () => { | 
					
						
							|  |  |  |           var val = _createChangeDetector('invalidFn(1)'); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |           try { | 
					
						
							|  |  |  |             val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |             throw new BaseException('fail'); | 
					
						
							|  |  |  |           } catch (e) { | 
					
						
							|  |  |  |             expect(e).toBeAnInstanceOf(ChangeDetectionError); | 
					
						
							| 
									
										
										
										
											2015-07-05 14:46:35 -07:00
										 |  |  |             expect(e.location).toEqual('invalidFn(1) in location'); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |           } | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('Locals', () => { | 
					
						
							| 
									
										
										
										
											2015-06-05 17:33:51 -07:00
										 |  |  |         it('should read a value from locals', | 
					
						
							|  |  |  |            () => { expect(_bindSimpleValue('valueFromLocals')).toEqual(['propName=value']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should invoke a function from local', | 
					
						
							|  |  |  |            () => { expect(_bindSimpleValue('functionFromLocals')).toEqual(['propName=value']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should handle nested locals', | 
					
						
							|  |  |  |            () => { expect(_bindSimpleValue('nestedLocals')).toEqual(['propName=value']); }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |         it('should fall back to a regular field read when the locals map' + | 
					
						
							|  |  |  |                'does not have the requested field', | 
					
						
							| 
									
										
										
										
											2015-06-05 17:33:51 -07:00
										 |  |  |            () => { | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |              expect(_bindSimpleValue('fallbackLocals', new Person('Jim'))) | 
					
						
							| 
									
										
										
										
											2015-06-05 17:33:51 -07:00
										 |  |  |                  .toEqual(['propName=Jim']); | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should correctly handle nested properties', () => { | 
					
						
							|  |  |  |           var address = new Address('Grenoble'); | 
					
						
							|  |  |  |           var person = new Person('Victor', address); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(_bindSimpleValue('contextNestedPropertyWithLocals', person)) | 
					
						
							|  |  |  |               .toEqual(['propName=Grenoble']); | 
					
						
							|  |  |  |           expect(_bindSimpleValue('localPropertyWithSimilarContext', person)) | 
					
						
							|  |  |  |               .toEqual(['propName=MTV']); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       describe('handle children', () => { | 
					
						
							|  |  |  |         var parent, child; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         beforeEach(() => { | 
					
						
							|  |  |  |           parent = _createChangeDetector('10').changeDetector; | 
					
						
							|  |  |  |           child = _createChangeDetector('"str"').changeDetector; | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should add light dom children', () => { | 
					
						
							|  |  |  |           parent.addChild(child); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(parent.lightDomChildren.length).toEqual(1); | 
					
						
							|  |  |  |           expect(parent.lightDomChildren[0]).toBe(child); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should add shadow dom children', () => { | 
					
						
							|  |  |  |           parent.addShadowDomChild(child); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(parent.shadowDomChildren.length).toEqual(1); | 
					
						
							|  |  |  |           expect(parent.shadowDomChildren[0]).toBe(child); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should remove light dom children', () => { | 
					
						
							|  |  |  |           parent.addChild(child); | 
					
						
							|  |  |  |           parent.removeChild(child); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(parent.lightDomChildren).toEqual([]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should remove shadow dom children', () => { | 
					
						
							|  |  |  |           parent.addShadowDomChild(child); | 
					
						
							|  |  |  |           parent.removeShadowDomChild(child); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(parent.shadowDomChildren.length).toEqual(0); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-08 18:07:06 -07:00
										 |  |  |       describe('mode', () => { | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |         it('should set the mode to CHECK_ALWAYS when the default change detection is used', () => { | 
					
						
							|  |  |  |           var cd = _createWithoutHydrate('emptyUsingDefaultStrategy').changeDetector; | 
					
						
							|  |  |  |           expect(cd.mode).toEqual(null); | 
					
						
							| 
									
										
										
										
											2015-06-08 18:07:06 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |           cd.hydrate(_DEFAULT_CONTEXT, null, null, null); | 
					
						
							| 
									
										
										
										
											2015-06-12 07:50:45 -07:00
										 |  |  |           expect(cd.mode).toEqual(CHECK_ALWAYS); | 
					
						
							|  |  |  |         }); | 
					
						
							| 
									
										
										
										
											2015-06-08 18:07:06 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         it('should set the mode to CHECK_ONCE when the push change detection is used', () => { | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |           var cd = _createWithoutHydrate('emptyUsingOnPushStrategy').changeDetector; | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |           cd.hydrate(_DEFAULT_CONTEXT, null, null, null); | 
					
						
							| 
									
										
										
										
											2015-06-08 18:07:06 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |           expect(cd.mode).toEqual(CHECK_ONCE); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should not check a detached change detector', () => { | 
					
						
							|  |  |  |           var val = _createChangeDetector('a', new TestData('value')); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |           val.changeDetector.hydrate(_DEFAULT_CONTEXT, null, null, null); | 
					
						
							| 
									
										
										
										
											2015-06-08 18:07:06 -07:00
										 |  |  |           val.changeDetector.mode = DETACHED; | 
					
						
							|  |  |  |           val.changeDetector.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(val.dispatcher.log).toEqual([]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should not check a checked change detector', () => { | 
					
						
							|  |  |  |           var val = _createChangeDetector('a', new TestData('value')); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |           val.changeDetector.hydrate(_DEFAULT_CONTEXT, null, null, null); | 
					
						
							| 
									
										
										
										
											2015-06-08 18:07:06 -07:00
										 |  |  |           val.changeDetector.mode = CHECKED; | 
					
						
							|  |  |  |           val.changeDetector.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(val.dispatcher.log).toEqual([]); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should change CHECK_ONCE to CHECKED', () => { | 
					
						
							|  |  |  |           var cd = _createChangeDetector('10').changeDetector; | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |           cd.hydrate(_DEFAULT_CONTEXT, null, null, null); | 
					
						
							| 
									
										
										
										
											2015-06-08 18:07:06 -07:00
										 |  |  |           cd.mode = CHECK_ONCE; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           cd.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(cd.mode).toEqual(CHECKED); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should not change the CHECK_ALWAYS', () => { | 
					
						
							|  |  |  |           var cd = _createChangeDetector('10').changeDetector; | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |           cd.hydrate(_DEFAULT_CONTEXT, null, null, null); | 
					
						
							| 
									
										
										
										
											2015-06-08 18:07:06 -07:00
										 |  |  |           cd.mode = CHECK_ALWAYS; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           cd.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(cd.mode).toEqual(CHECK_ALWAYS); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         describe('marking ON_PUSH detectors as CHECK_ONCE after an update', () => { | 
					
						
							|  |  |  |           var checkedDetector; | 
					
						
							|  |  |  |           var directives; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           beforeEach(() => { | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |             checkedDetector = _createWithoutHydrate('emptyUsingOnPushStrategy').changeDetector; | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |             checkedDetector.hydrate(_DEFAULT_CONTEXT, null, null, null); | 
					
						
							| 
									
										
										
										
											2015-06-08 18:07:06 -07:00
										 |  |  |             checkedDetector.mode = CHECKED; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             var targetDirective = new TestData(null); | 
					
						
							|  |  |  |             directives = new FakeDirectives([targetDirective], [checkedDetector]); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           it('should set the mode to CHECK_ONCE when a binding is updated', () => { | 
					
						
							| 
									
										
										
										
											2015-06-09 18:00:24 -07:00
										 |  |  |             var cd = _createWithoutHydrate('onPushRecordsUsingDefaultStrategy').changeDetector; | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |             cd.hydrate(_DEFAULT_CONTEXT, null, directives, null); | 
					
						
							| 
									
										
										
										
											2015-06-08 18:07:06 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |             expect(checkedDetector.mode).toEqual(CHECKED); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // evaluate the record, update the targetDirective, and mark its detector as
 | 
					
						
							|  |  |  |             // CHECK_ONCE
 | 
					
						
							|  |  |  |             cd.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             expect(checkedDetector.mode).toEqual(CHECK_ONCE); | 
					
						
							|  |  |  |           }); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |       describe('markPathToRootAsCheckOnce', () => { | 
					
						
							|  |  |  |         function changeDetector(mode, parent) { | 
					
						
							|  |  |  |           var val = _createChangeDetector('10'); | 
					
						
							|  |  |  |           val.changeDetector.mode = mode; | 
					
						
							|  |  |  |           if (isPresent(parent)) parent.addChild(val.changeDetector); | 
					
						
							|  |  |  |           return val.changeDetector; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should mark all checked detectors as CHECK_ONCE until reaching a detached one', () => { | 
					
						
							|  |  |  |           var root = changeDetector(CHECK_ALWAYS, null); | 
					
						
							|  |  |  |           var disabled = changeDetector(DETACHED, root); | 
					
						
							|  |  |  |           var parent = changeDetector(CHECKED, disabled); | 
					
						
							|  |  |  |           var checkAlwaysChild = changeDetector(CHECK_ALWAYS, parent); | 
					
						
							|  |  |  |           var checkOnceChild = changeDetector(CHECK_ONCE, checkAlwaysChild); | 
					
						
							|  |  |  |           var checkedChild = changeDetector(CHECKED, checkOnceChild); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           checkedChild.markPathToRootAsCheckOnce(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(root.mode).toEqual(CHECK_ALWAYS); | 
					
						
							|  |  |  |           expect(disabled.mode).toEqual(DETACHED); | 
					
						
							|  |  |  |           expect(parent.mode).toEqual(CHECK_ONCE); | 
					
						
							|  |  |  |           expect(checkAlwaysChild.mode).toEqual(CHECK_ALWAYS); | 
					
						
							|  |  |  |           expect(checkOnceChild.mode).toEqual(CHECK_ONCE); | 
					
						
							|  |  |  |           expect(checkedChild.mode).toEqual(CHECK_ONCE); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('hydration', () => { | 
					
						
							|  |  |  |         it('should be able to rehydrate a change detector', () => { | 
					
						
							|  |  |  |           var cd = _createChangeDetector('name').changeDetector; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |           cd.hydrate('some context', null, null, null); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |           expect(cd.hydrated()).toBe(true); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           cd.dehydrate(); | 
					
						
							|  |  |  |           expect(cd.hydrated()).toBe(false); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-08 10:28:47 -07:00
										 |  |  |           cd.hydrate('other context', null, null, null); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |           expect(cd.hydrated()).toBe(true); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should destroy all active pipes during dehyration', () => { | 
					
						
							| 
									
										
										
										
											2015-08-06 10:39:02 -07:00
										 |  |  |           var pipe = new PipeWithOnDestroy(); | 
					
						
							| 
									
										
										
										
											2015-07-09 10:34:51 -07:00
										 |  |  |           var registry = new FakePipes('pipe', () => pipe); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |           var cd = _createChangeDetector('name | pipe', new Person('bob'), registry).changeDetector; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           cd.detectChanges(); | 
					
						
							|  |  |  |           cd.dehydrate(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(pipe.destroyCalled).toBe(true); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should throw when detectChanges is called on a dehydrated detector', () => { | 
					
						
							|  |  |  |           var context = new Person('Bob'); | 
					
						
							|  |  |  |           var val = _createChangeDetector('name', context); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           val.changeDetector.detectChanges(); | 
					
						
							|  |  |  |           expect(val.dispatcher.log).toEqual(['propName=Bob']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           val.changeDetector.dehydrate(); | 
					
						
							|  |  |  |           var dehydratedException = new DehydratedException(); | 
					
						
							|  |  |  |           expect(() => {val.changeDetector.detectChanges()}) | 
					
						
							|  |  |  |               .toThrowError(dehydratedException.toString()); | 
					
						
							|  |  |  |           expect(val.dispatcher.log).toEqual(['propName=Bob']); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       describe('pipes', () => { | 
					
						
							|  |  |  |         it('should support pipes', () => { | 
					
						
							| 
									
										
										
										
											2015-07-09 10:34:51 -07:00
										 |  |  |           var registry = new FakePipes('pipe', () => new CountingPipe()); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |           var ctx = new Person('Megatron'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           var val = _createChangeDetector('name | pipe', ctx, registry); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           val.changeDetector.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(val.dispatcher.log).toEqual(['propName=Megatron state:0']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           val.dispatcher.clear(); | 
					
						
							|  |  |  |           val.changeDetector.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |           expect(val.dispatcher.log).toEqual(['propName=Megatron state:1']); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it('should inject the ChangeDetectorRef ' + | 
					
						
							|  |  |  |                'of the encompassing component into a pipe', | 
					
						
							|  |  |  |            () => { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-09 10:34:51 -07:00
										 |  |  |              var registry = new FakePipes('pipe', () => new IdentityPipe()); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |              var cd = | 
					
						
							|  |  |  |                  _createChangeDetector('name | pipe', new Person('bob'), registry).changeDetector; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              cd.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |              expect(registry.cdRef).toBe(cd.ref); | 
					
						
							|  |  |  |            }); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should do nothing when no change', () => { | 
					
						
							| 
									
										
										
										
											2015-07-09 10:34:51 -07:00
										 |  |  |         var registry = new FakePipes('pipe', () => new IdentityPipe()); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |         var ctx = new Person('Megatron'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         var val = _createChangeDetector('name | pipe', ctx, registry); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(val.dispatcher.log).toEqual(['propName=Megatron']); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         val.dispatcher.clear(); | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(val.dispatcher.log).toEqual([]); | 
					
						
							|  |  |  |       }); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |       it('should unwrap the wrapped value', () => { | 
					
						
							| 
									
										
										
										
											2015-07-09 10:34:51 -07:00
										 |  |  |         var registry = new FakePipes('pipe', () => new WrappedPipe()); | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |         var ctx = new Person('Megatron'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         var val = _createChangeDetector('name | pipe', ctx, registry); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         val.changeDetector.detectChanges(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         expect(val.dispatcher.log).toEqual(['propName=Megatron']); | 
					
						
							|  |  |  |       }); | 
					
						
							| 
									
										
										
										
											2015-05-14 13:14:45 -07:00
										 |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-18 15:40:12 -07:00
										 |  |  | class CountingPipe implements Pipe { | 
					
						
							|  |  |  |   state: number = 0; | 
					
						
							|  |  |  |   onDestroy() {} | 
					
						
							| 
									
										
										
										
											2015-06-26 00:22:06 +04:30
										 |  |  |   transform(value, args = null) { return `${value} state:${this.state ++}`; } | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-06 10:39:02 -07:00
										 |  |  | class PipeWithOnDestroy implements Pipe { | 
					
						
							| 
									
										
										
										
											2015-06-18 15:40:12 -07:00
										 |  |  |   destroyCalled: boolean = false; | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |   onDestroy() { this.destroyCalled = true; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-06 10:39:02 -07:00
										 |  |  |   transform(value, args = null) { return null; } | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-18 15:40:12 -07:00
										 |  |  | class IdentityPipe implements Pipe { | 
					
						
							|  |  |  |   onDestroy() {} | 
					
						
							| 
									
										
										
										
											2015-06-26 00:22:06 +04:30
										 |  |  |   transform(value, args = null) { return value; } | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-18 15:40:12 -07:00
										 |  |  | class WrappedPipe implements Pipe { | 
					
						
							|  |  |  |   onDestroy() {} | 
					
						
							| 
									
										
										
										
											2015-06-26 00:22:06 +04:30
										 |  |  |   transform(value, args = null) { return WrappedValue.wrap(value); } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class MultiArgPipe implements Pipe { | 
					
						
							|  |  |  |   transform(value, args = null) { | 
					
						
							|  |  |  |     var arg1 = args[0]; | 
					
						
							|  |  |  |     var arg2 = args[1]; | 
					
						
							|  |  |  |     var arg3 = args.length > 2 ? args[2] : 'default'; | 
					
						
							|  |  |  |     return `${value} ${arg1} ${arg2} ${arg3}`; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   onDestroy(): void {} | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-09 10:34:51 -07:00
										 |  |  | class FakePipes extends Pipes { | 
					
						
							| 
									
										
										
										
											2015-08-06 10:39:02 -07:00
										 |  |  |   numberOfLookups = 0; | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |   cdRef: any; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-06 10:39:02 -07:00
										 |  |  |   constructor(public pipeType: string, public factory: Function) { super(null, null); } | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-06 10:39:02 -07:00
										 |  |  |   get(type: string, cdRef?) { | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |     if (type != this.pipeType) return null; | 
					
						
							|  |  |  |     this.numberOfLookups++; | 
					
						
							|  |  |  |     this.cdRef = cdRef; | 
					
						
							|  |  |  |     return this.factory(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TestDirective { | 
					
						
							|  |  |  |   a; | 
					
						
							|  |  |  |   b; | 
					
						
							|  |  |  |   changes; | 
					
						
							|  |  |  |   onChangesDoneCalled; | 
					
						
							|  |  |  |   onChangesDoneSpy; | 
					
						
							| 
									
										
										
										
											2015-05-27 10:14:37 -07:00
										 |  |  |   onCheckCalled; | 
					
						
							|  |  |  |   onInitCalled; | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   constructor(onChangesDoneSpy = null) { | 
					
						
							|  |  |  |     this.onChangesDoneCalled = false; | 
					
						
							| 
									
										
										
										
											2015-05-27 10:14:37 -07:00
										 |  |  |     this.onCheckCalled = false; | 
					
						
							|  |  |  |     this.onInitCalled = false; | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |     this.onChangesDoneSpy = onChangesDoneSpy; | 
					
						
							|  |  |  |     this.a = null; | 
					
						
							|  |  |  |     this.b = null; | 
					
						
							|  |  |  |     this.changes = null; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-27 10:14:37 -07:00
										 |  |  |   onCheck() { this.onCheckCalled = true; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   onInit() { this.onInitCalled = true; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |   onChange(changes) { | 
					
						
							|  |  |  |     var r = {}; | 
					
						
							|  |  |  |     StringMapWrapper.forEach(changes, (c, key) => r[key] = c.currentValue); | 
					
						
							|  |  |  |     this.changes = r; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   onAllChangesDone() { | 
					
						
							|  |  |  |     this.onChangesDoneCalled = true; | 
					
						
							|  |  |  |     if (isPresent(this.onChangesDoneSpy)) { | 
					
						
							|  |  |  |       this.onChangesDoneSpy(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Person { | 
					
						
							|  |  |  |   age: number; | 
					
						
							| 
									
										
										
										
											2015-06-05 17:33:51 -07:00
										 |  |  |   constructor(public name: string, public address: Address = null) {} | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   sayHi(m) { return `Hi, ${m}`; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-17 12:56:11 -07:00
										 |  |  |   passThrough(val) { return val; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |   toString(): string { | 
					
						
							|  |  |  |     var address = this.address == null ? '' : ' address=' + this.address.toString(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return 'name=' + this.name + address; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Address { | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |   constructor(public city: string) {} | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-26 10:19:47 +02:00
										 |  |  |   toString(): string { return isBlank(this.city) ? '-' : this.city } | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Uninitialized { | 
					
						
							|  |  |  |   value: any; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class TestData { | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  |   constructor(public a: any) {} | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class FakeDirectives { | 
					
						
							|  |  |  |   constructor(public directives: List<TestData | TestDirective>, | 
					
						
							|  |  |  |               public detectors: List<ProtoChangeDetector>) {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   getDirectiveFor(di: DirectiveIndex) { return this.directives[di.directiveIndex]; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   getDetectorFor(di: DirectiveIndex) { return this.detectors[di.directiveIndex]; } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-18 14:47:38 -07:00
										 |  |  | class TestDispatcher implements ChangeDispatcher { | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |   log: List<string>; | 
					
						
							|  |  |  |   loggedValues: List<any>; | 
					
						
							| 
									
										
										
										
											2015-06-12 09:45:31 -07:00
										 |  |  |   onAllChangesDoneCalled: boolean = false; | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-18 14:47:38 -07:00
										 |  |  |   constructor() { this.clear(); } | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  |   clear() { | 
					
						
							| 
									
										
										
										
											2015-06-17 11:17:21 -07:00
										 |  |  |     this.log = []; | 
					
						
							|  |  |  |     this.loggedValues = []; | 
					
						
							| 
									
										
										
										
											2015-06-12 09:45:31 -07:00
										 |  |  |     this.onAllChangesDoneCalled = true; | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   notifyOnBinding(binding, value) { | 
					
						
							| 
									
										
										
										
											2015-06-17 11:17:21 -07:00
										 |  |  |     this.log.push(`${binding.propertyName}=${this._asString(value)}`); | 
					
						
							|  |  |  |     this.loggedValues.push(value); | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-06-12 09:45:31 -07:00
										 |  |  |   notifyOnAllChangesDone() { this.onAllChangesDoneCalled = true; } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-27 15:47:42 -07:00
										 |  |  |   getDebugContext(a, b) { return null; } | 
					
						
							| 
									
										
										
										
											2015-07-23 18:01:34 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-26 17:12:38 -07:00
										 |  |  |   _asString(value) { return (isBlank(value) ? 'null' : value.toString()); } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2015-06-08 15:23:27 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | class _ChangeDetectorAndDispatcher { | 
					
						
							|  |  |  |   constructor(public changeDetector: any, public dispatcher: TestDispatcher) {} | 
					
						
							|  |  |  | } |