我正在尝试对服务调用的代码覆盖率进行错误处理。我遵循两种方法,但犯了一些错误。
下面是我正在编写测试用例的方法
setPrefixSuffixDetails(): void {
this.prefixSuffixDetailSubscription = this.profileBeneficiaryService.getPrefixSuffixDetails()
.subscribe(data => {
if (data.body.prefixlist.length > 0) {
this.prefixConfig.options = data.body.prefixlist;
}
if (data.body.suffixlist.length > 0) {
this.suffixConfig.options = data.body.suffixlist;
}
}, error => {
this.loadingData = false;
this.notificationService.addNotications(error);
});
}
为了测试,我正在创建提供者,下面是我的提供者
{ provide: ProfileBeneficiaryService, useClass: ProfileServiceStub},
{provide: ProfileBeneficiaryService, useClass: ProfileBenficiaryErrorStub},
一个用于成功调用,另一个用于错误调用。
beforeEach(async(() => {
TestBed.configureTestingModule({ .............
class ProfileBenficiaryErrorStub {
getPrefixSuffixDetails = function () {
return Observable.throw(Error('Test error'));
}}
class ProfileServiceStub {
getPrefixSuffixDetails = function () {
return Observable.of(this.data);
}
}
但问题是当我使用两个提供者时,它只涵盖错误,如果我不包括错误提供者,它会涵盖成功
请让我知道我在哪里使用提供者做错了。
另外,我试图使用 spyOn 方式并面临错误
it('should check for the getPrefixSuffixDetails error call ', () => {
spyOn(ProfileBeneficiaryService,'getPrefixSuffixDetails').and.returnValue(Observable.throw('error'));});