53 lines
1.5 KiB
TypeScript
53 lines
1.5 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 {Component, InjectionToken} from '@angular/core';
|
||
|
import {TestBed} from '@angular/core/testing';
|
||
|
|
||
|
|
||
|
describe('component', () => {
|
||
|
describe('view destruction', () => {
|
||
|
it('should invoke onDestroy only once when a component is registered as a provider', () => {
|
||
|
const testToken = new InjectionToken<ParentWithOnDestroy>('testToken');
|
||
|
let destroyCalls = 0;
|
||
|
|
||
|
@Component({
|
||
|
selector: 'comp-with-on-destroy',
|
||
|
template: '',
|
||
|
providers: [{provide: testToken, useExisting: ParentWithOnDestroy}]
|
||
|
})
|
||
|
class ParentWithOnDestroy {
|
||
|
ngOnDestroy() { destroyCalls++; }
|
||
|
}
|
||
|
|
||
|
@Component({selector: 'child', template: ''})
|
||
|
class ChildComponent {
|
||
|
// We need to inject the parent so the provider is instantiated.
|
||
|
constructor(_parent: ParentWithOnDestroy) {}
|
||
|
}
|
||
|
|
||
|
@Component({
|
||
|
template: `
|
||
|
<comp-with-on-destroy>
|
||
|
<child></child>
|
||
|
</comp-with-on-destroy>
|
||
|
`
|
||
|
})
|
||
|
class App {
|
||
|
}
|
||
|
|
||
|
TestBed.configureTestingModule({declarations: [App, ParentWithOnDestroy, ChildComponent]});
|
||
|
const fixture = TestBed.createComponent(App);
|
||
|
fixture.detectChanges();
|
||
|
fixture.destroy();
|
||
|
|
||
|
expect(destroyCalls).toBe(1, 'Expected `ngOnDestroy` to only be called once.');
|
||
|
});
|
||
|
});
|
||
|
});
|