-
-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: support of ngOnChanges from OnChanges interface
- Loading branch information
Showing
4 changed files
with
280 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,21 @@ | ||
version: '2' | ||
exclude_patterns: | ||
- 'dist/' | ||
- 'e2e/' | ||
- 'examples/' | ||
- 'node_modules/' | ||
- 'test-reports/' | ||
- 'tests/' | ||
- 'tmp/' | ||
- '**/*.spec.ts' | ||
- '**/*.fixtures.ts' | ||
analysis_paths: | ||
- 'lib/' | ||
plugins: | ||
structure: | ||
enabled: true | ||
duplication: | ||
enabled: true | ||
config: | ||
languages: | ||
typescript: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,214 @@ | ||
// tslint:disable:member-ordering | ||
|
||
import { | ||
AfterContentChecked, | ||
AfterContentInit, | ||
AfterViewChecked, | ||
AfterViewInit, | ||
ChangeDetectionStrategy, | ||
Component, | ||
Injectable, | ||
Input, | ||
NgModule, | ||
OnChanges, | ||
OnDestroy, | ||
OnInit, | ||
} from '@angular/core'; | ||
import { TestBed } from '@angular/core/testing'; | ||
import { MockBuilder, MockRender, ngMocks } from 'ng-mocks'; | ||
|
||
// A dummy service we are going to mock and to use for assertions. | ||
@Injectable() | ||
class TargetService { | ||
protected called = false; | ||
|
||
public ctor() { | ||
this.called = true; | ||
} | ||
|
||
public onInit() { | ||
this.called = true; | ||
} | ||
|
||
public onDestroy() { | ||
this.called = true; | ||
} | ||
|
||
public onChanges() { | ||
this.called = true; | ||
} | ||
|
||
public afterViewInit() { | ||
this.called = true; | ||
} | ||
|
||
public afterViewChecked() { | ||
this.called = true; | ||
} | ||
|
||
public afterContentInit() { | ||
this.called = true; | ||
} | ||
|
||
public afterContentChecked() { | ||
this.called = true; | ||
} | ||
} | ||
|
||
@Component({ | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
selector: 'target', | ||
template: ``, | ||
}) | ||
class TargetComponent | ||
implements OnInit, OnDestroy, OnChanges, AfterViewInit, AfterViewChecked, AfterContentInit, AfterContentChecked { | ||
@Input() public input: string | null = null; | ||
|
||
protected readonly service: TargetService; | ||
|
||
constructor(service: TargetService) { | ||
this.service = service; | ||
this.service.ctor(); | ||
} | ||
|
||
ngOnInit(): void { | ||
this.service.onInit(); | ||
} | ||
|
||
ngOnDestroy(): void { | ||
this.service.onDestroy(); | ||
} | ||
|
||
ngOnChanges(): void { | ||
this.service.onChanges(); | ||
} | ||
|
||
ngAfterViewInit(): void { | ||
this.service.afterViewInit(); | ||
} | ||
|
||
ngAfterViewChecked(): void { | ||
this.service.afterViewChecked(); | ||
} | ||
|
||
ngAfterContentInit(): void { | ||
this.service.afterContentInit(); | ||
} | ||
|
||
ngAfterContentChecked(): void { | ||
this.service.afterContentChecked(); | ||
} | ||
} | ||
|
||
@NgModule({ | ||
declarations: [TargetComponent], | ||
exports: [TargetComponent], | ||
providers: [TargetService], | ||
}) | ||
class TargetModule {} | ||
|
||
describe('TestLifecycleHooks', () => { | ||
ngMocks.faster(); | ||
|
||
beforeEach(() => MockBuilder(TargetComponent, TargetModule)); | ||
|
||
it('triggers lifecycle hooks correctly via MockRender', () => { | ||
// First let's suppress detectChanges. | ||
const fixture = MockRender( | ||
TargetComponent, | ||
{ | ||
input: '', | ||
}, | ||
{ detectChanges: false } | ||
); | ||
|
||
const service: TargetService = TestBed.get(TargetService); | ||
|
||
// By default nothing should be initialized, but ctor. | ||
expect(service.ctor).toHaveBeenCalledTimes(1); // changed | ||
expect(service.onInit).toHaveBeenCalledTimes(0); | ||
expect(service.onDestroy).toHaveBeenCalledTimes(0); | ||
expect(service.onChanges).toHaveBeenCalledTimes(0); | ||
expect(service.afterViewInit).toHaveBeenCalledTimes(0); | ||
expect(service.afterViewChecked).toHaveBeenCalledTimes(0); | ||
expect(service.afterContentInit).toHaveBeenCalledTimes(0); | ||
expect(service.afterContentChecked).toHaveBeenCalledTimes(0); | ||
|
||
// Now let's render the component. | ||
fixture.detectChanges(); | ||
|
||
// This calls everything except onDestroy and onChanges. | ||
expect(service.ctor).toHaveBeenCalledTimes(1); | ||
expect(service.onInit).toHaveBeenCalledTimes(1); // changed | ||
expect(service.onDestroy).toHaveBeenCalledTimes(0); | ||
expect(service.onChanges).toHaveBeenCalledTimes(1); // changed | ||
expect(service.afterViewInit).toHaveBeenCalledTimes(1); // changed | ||
expect(service.afterViewChecked).toHaveBeenCalledTimes(1); // changed | ||
expect(service.afterContentInit).toHaveBeenCalledTimes(1); // changed | ||
expect(service.afterContentChecked).toHaveBeenCalledTimes(1); // changed | ||
|
||
// Let's change it. | ||
fixture.componentInstance.input = 'change'; | ||
fixture.detectChanges(); | ||
|
||
// Only OnChange, AfterViewChecked, AfterContentChecked should be triggered. | ||
expect(service.ctor).toHaveBeenCalledTimes(1); | ||
expect(service.onInit).toHaveBeenCalledTimes(1); | ||
expect(service.onDestroy).toHaveBeenCalledTimes(0); | ||
expect(service.onChanges).toHaveBeenCalledTimes(2); // changed | ||
expect(service.afterViewInit).toHaveBeenCalledTimes(1); | ||
expect(service.afterViewChecked).toHaveBeenCalledTimes(2); // changed | ||
expect(service.afterContentInit).toHaveBeenCalledTimes(1); | ||
expect(service.afterContentChecked).toHaveBeenCalledTimes(2); // changed | ||
|
||
// Let's cause more changes. | ||
fixture.detectChanges(); | ||
fixture.detectChanges(); | ||
|
||
// Only AfterViewChecked, AfterContentChecked should be triggered. | ||
expect(service.ctor).toHaveBeenCalledTimes(1); | ||
expect(service.onInit).toHaveBeenCalledTimes(1); | ||
expect(service.onDestroy).toHaveBeenCalledTimes(0); | ||
expect(service.onChanges).toHaveBeenCalledTimes(2); | ||
expect(service.afterViewInit).toHaveBeenCalledTimes(1); | ||
expect(service.afterViewChecked).toHaveBeenCalledTimes(4); // changed | ||
expect(service.afterContentInit).toHaveBeenCalledTimes(1); | ||
expect(service.afterContentChecked).toHaveBeenCalledTimes(4); // changed | ||
|
||
// Let's destroy it. | ||
fixture.destroy(); | ||
|
||
// This all calls except onDestroy and onChanges. | ||
expect(service.ctor).toHaveBeenCalledTimes(1); | ||
expect(service.onInit).toHaveBeenCalledTimes(1); | ||
expect(service.onDestroy).toHaveBeenCalledTimes(1); // changed | ||
expect(service.onChanges).toHaveBeenCalledTimes(2); | ||
expect(service.afterViewInit).toHaveBeenCalledTimes(1); | ||
expect(service.afterViewChecked).toHaveBeenCalledTimes(4); | ||
expect(service.afterContentInit).toHaveBeenCalledTimes(1); | ||
expect(service.afterContentChecked).toHaveBeenCalledTimes(4); | ||
}); | ||
|
||
it('does not trigger onChanges correctly via TestBed.createComponent', () => { | ||
const fixture = TestBed.createComponent(TargetComponent); | ||
fixture.componentInstance.input = ''; | ||
|
||
const service: TargetService = TestBed.get(TargetService); | ||
|
||
// By default nothing should be initialized. | ||
expect(service.onChanges).toHaveBeenCalledTimes(0); | ||
|
||
// Now let's render the component. | ||
fixture.detectChanges(); | ||
|
||
// The hook should have been called, but not via TestBed.createComponent. | ||
expect(service.onChanges).toHaveBeenCalledTimes(0); // failed | ||
|
||
// Let's change it. | ||
fixture.componentInstance.input = 'change'; | ||
fixture.changeDetectorRef.detectChanges(); | ||
|
||
// The hook should have been called, but not via TestBed.createComponent. | ||
expect(service.onChanges).toHaveBeenCalledTimes(0); // failed | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters