我在我的服务类中的组件规范测试错误场景中遇到问题。使用 ts-mockito 模拟服务类。
服务等级:
export class MyService {
getData(): Observable<any> {
/* return httpClient.get(...) */
}
}
我已经将在我的组件测试中不起作用的逻辑简化为这个简单的复制(在我的真实测试中,组件调用的是服务而不是测试代码,但这重现了我正在经历的事情):
it('should return an error response', () => {
const httpErrorResponse = new HttpErrorResponse({
error: { msg: 'Not allowed' },
status: 400,
statusText: 'Forbidden',
});
const mockTestService = mock(MyService);
when(mockTestService.getData()).thenReturn(of(httpErrorResponse));
const mockInstance = instance(mockTestService);
mockInstance.getData().subscribe(
(success) => console.log('success'), /* <= this is what I get */
(err) => console.log('error') /* <= this is what I want */
);
});
但是这里的输出是“成功”,而不是“错误”。如何设置来自模拟的可观察响应以触发订阅中的错误条件?
我也尝试过when(mockTestService.getData()).thenReject(httpErrorResponse)
,但这会引发未处理的承诺拒绝。