/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/common/test/pipes/json_pipe_spec.ts
98 строк
3 KB
Jaime Burgos
refactor(common): modernize pipes & non bindable tests to rely on `whenStable`
30 июл 2026, 18:56
Не верифицирован
30 июл 2026, 18:56
d068fc1
Код
Авторство
О чём код?
/** * @license * Copyright Google LLC 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.dev/license */ import {ChangeDetectionStrategy} from '@angular/compiler'; import {Component} from '@angular/core'; import {TestBed} from '@angular/core/testing'; import {expect} from '@angular/private/testing/matchers'; import {JsonPipe} from '../../index'; describe('JsonPipe', () => { const regNewLine = '\n'; let inceptionObj: any; let inceptionObjString: string; let pipe: JsonPipe; function normalize(obj: string): string { return obj.replace(regNewLine, ''); } beforeEach(() => { inceptionObj = {dream: {dream: {dream: 'Limbo'}}}; inceptionObjString = '{\n' + ' "dream": {\n' + ' "dream": {\n' + ' "dream": "Limbo"\n' + ' }\n' + ' }\n' + '}'; pipe = new JsonPipe(); }); describe('transform', () => { it('should return JSON-formatted string', () => { expect(pipe.transform(inceptionObj)).toEqual(inceptionObjString); }); it('should return JSON-formatted string even when normalized', () => { const dream1 = normalize(pipe.transform(inceptionObj)); const dream2 = normalize(inceptionObjString); expect(dream1).toEqual(dream2); }); it('should return JSON-formatted string similar to Json.stringify', () => { const dream1 = normalize(pipe.transform(inceptionObj)); const dream2 = normalize(JSON.stringify(inceptionObj, null, 2)); expect(dream1).toEqual(dream2); }); }); describe('integration', () => { @Component({ selector: 'test-comp', template: '{{data | json}}', imports: [JsonPipe], changeDetection: ChangeDetectionStrategy.Eager, }) class TestComp { data: any; } it('should work with mutable objects', async () => { const fixture = TestBed.createComponent(TestComp); const mutable: number[] = [1]; fixture.componentInstance.data = mutable; await fixture.whenStable(); expect(fixture.nativeElement).toHaveText('[\n 1\n]'); mutable.push(2); fixture.changeDetectorRef.markForCheck(); await fixture.whenStable(); expect(fixture.nativeElement).toHaveText('[\n 1,\n 2\n]'); }); }); it('should be available as a standalone pipe', async () => { @Component({ selector: 'test-component', imports: [JsonPipe], template: '{{ value | json }}', }) class TestComponent { value = {'a': 1}; } const fixture = TestBed.createComponent(TestComponent); await fixture.whenStable(); const content = fixture.nativeElement.textContent; expect(content.replace(/\s/g, '')).toBe('{"a":1}'); }); });