私が作成したAngular2コンポーネント用のテストモジュールを作成するのに問題があります。問題のコンポーネントは、別のサービスのEventEmitterにngOnInitメソッドでサブスクライブします。コンポーネントはこのEventEmitterにサブスクライブされ、変更を待ち受けます。Angular2 ngOnInitエラーのEventEmitterサブスクリプションでモジュールをテストする
import { Component } from "@angular/core";
import { Product } from "../../../classes/Product";
import { ProductService } from "../../../services/product.service";
import { ConfigObject } from "../../../ConfigObject";
import { productHelper } from "../../../helpers/productHelper";
@Component({
selector: 'product-component',
templateUrl: '/app/views/catalog/products/product-dashboard.html',
moduleId: module.id
})
export class ProductComponent {
globals = ConfigObject;
products: Product[] = [];
productsLoaded = false;
productPayload = {
order : 'asc',
order_by : 'title',
category_id : 0,
resize : true,
imgHeight : 200,
imgWidth : 200,
active : 1,
searchTerm : '',
manufacturer : null
};
constructor(
private _productService: ProductService
) {
}
getProducts(filters) {
this.productsLoaded = false;
this._productService.getProducts(filters)
.subscribe(
products => { this.products = productHelper.processImagesAndDownloads(products)},
() => { },
() => { this.productsLoaded = true }
);
}
ngOnInit() {
this._productService.emitter.subscribe(
(products) => {
this.products = productHelper.processImagesAndDownloads(products);
},
() => { },
() => { }
);
this.getProducts({});
}
}
あなたは_productService.emitter持つEventEmitterが加入しているngOnInitメソッドを使用して、見ることができるように:ここで問題になっているコンポーネントです。
私はspyOnメソッドを使用してこのイベントエミッタをモックしようとしましたが、成功しませんでした。私はこのコンポーネントのテストを正しく行うことができません。誰もが、問題はここにあるものを見ることができます。
import { ProductService } from "../../../../services/product.service";
import { TestBed, ComponentFixture, async } from "@angular/core/testing";
import { ProductComponent } from "../../../../components/catalog/products/ProductComponent";
import { HttpModule } from "@angular/http";
import { DebugElement, CUSTOM_ELEMENTS_SCHEMA } from "@angular/core";
let MockProductService = {
emitter:() => {}
};
let comp: ProductComponent;
let fixture: ComponentFixture<ProductComponent>;
let de: DebugElement;
let el: HTMLElement;
describe('Component: Product Component',() => {
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [
ProductComponent
],
providers: [
{
provide: ProductService, useValue: MockProductService
}
],
imports: [
HttpModule
],
schemas: [CUSTOM_ELEMENTS_SCHEMA]
});
});
it('Should check that products are loaded in the template', async(() => {
TestBed.compileComponents()
.then(() => {
fixture = TestBed.createComponent(ProductComponent);
comp = fixture.componentInstance;
spyOn(MockProductService, 'emitter').and.returnValue({
subscribe:() => {}
});
comp.ngOnInit();
expect(MockProductService.emitter).toHaveBeenCalled();
});
}));
});
私は、受信エラーがある:
Failed: Uncaught (in promise): TypeError: this._productService.emitter.subscribe is not a function