This commit removes code duplication where we had 2 versions of a `flatten` utility. Moreover this change results in queries using a non-recursive version of `flatten` which should result in a better performance of query refresh operations. PR Close #29547
		
			
				
	
	
		
			69 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /**
 | |
|  * @license
 | |
|  * Copyright Google Inc. All Rights Reserved.
 | |
|  *
 | |
|  * Use of this source code is governed by an MIT-style license that can be
 | |
|  * found in the LICENSE file at https://angular.io/license
 | |
|  */
 | |
| 
 | |
| import {devModeEqual} from '@angular/core/src/change_detection/change_detection_util';
 | |
| import {isDifferent} from '../../src/render3/util/misc_utils';
 | |
| 
 | |
| describe('util', () => {
 | |
| 
 | |
|   describe('isDifferent', () => {
 | |
| 
 | |
|     describe('checkNoChangeMode = false', () => {
 | |
|       it('should mark non-equal arguments as different', () => {
 | |
|         expect(isDifferent({}, {})).toBeTruthy();
 | |
|         expect(isDifferent('foo', 'bar')).toBeTruthy();
 | |
|         expect(isDifferent(0, 1)).toBeTruthy();
 | |
|       });
 | |
| 
 | |
|       it('should not mark equal arguments as different', () => {
 | |
|         const obj = {};
 | |
|         expect(isDifferent(obj, obj)).toBeFalsy();
 | |
|         expect(isDifferent('foo', 'foo')).toBeFalsy();
 | |
|         expect(isDifferent(1, 1)).toBeFalsy();
 | |
|       });
 | |
| 
 | |
|       it('should not mark NaN as different', () => { expect(isDifferent(NaN, NaN)).toBeFalsy(); });
 | |
| 
 | |
|       it('should mark NaN with other values as different', () => {
 | |
|         expect(isDifferent(NaN, 'foo')).toBeTruthy();
 | |
|         expect(isDifferent(5, NaN)).toBeTruthy();
 | |
|       });
 | |
|     });
 | |
| 
 | |
|     describe('checkNoChangeMode = true', () => {
 | |
|       // Assert relaxed constraint in checkNoChangeMode
 | |
|       it('should not mark non-equal arrays, object and function as different', () => {
 | |
|         expect(!devModeEqual([], [])).toBeFalsy();
 | |
|         expect(!devModeEqual(() => 0, () => 0)).toBeFalsy();
 | |
|         expect(!devModeEqual({}, {})).toBeFalsy();
 | |
|       });
 | |
| 
 | |
|       it('should mark non-equal arguments as different', () => {
 | |
|         expect(!devModeEqual('foo', 'bar')).toBeTruthy();
 | |
|         expect(!devModeEqual(0, 1)).toBeTruthy();
 | |
|       });
 | |
| 
 | |
|       it('should not mark equal arguments as different', () => {
 | |
|         const obj = {};
 | |
|         expect(isDifferent(obj, obj)).toBeFalsy();
 | |
|         expect(isDifferent('foo', 'foo')).toBeFalsy();
 | |
|         expect(isDifferent(1, 1)).toBeFalsy();
 | |
|       });
 | |
| 
 | |
|       it('should not mark NaN as different', () => { expect(isDifferent(NaN, NaN)).toBeFalsy(); });
 | |
| 
 | |
|       it('should mark NaN with other values as different', () => {
 | |
|         expect(isDifferent(NaN, 'foo')).toBeTruthy();
 | |
|         expect(isDifferent(5, NaN)).toBeTruthy();
 | |
|       });
 | |
|     });
 | |
| 
 | |
|   });
 | |
| 
 | |
| });
 |