Нашел, как проверить эту функцию.Но все же, не могу проверить ошибку.
error => {
if (error.status === 404) {
alert('Not found');
}
spec:
it('should get investigate', inject([InvestigateService, HttpTestingController],
(service: InvestigateService, backend: HttpTestingController) => {
const mockInvestigates = {
'content':
{
'id': 6,
'investigateType': 'WARN',
'number': '12018150030005555',
'investigatePriority': 'NORMAL',
'investigateStatus': 'OPEN',
'correction': {
'create': 1527454800,
'action': 'CREATE',
'user_id': 6
},
'hide': false,
'tags': [
{
'id': 1,
'name': 'Кражи',
'correction': {
'action': 'UPDATE',
'user_id': 1
}
}
],
}};
service.getInvestigates(1, 1);
backend.expectOne({
method: 'GET',
url: 'http://30.30.0.101:8080/api/investigates?page=1&size=1'
}).flush(mockInvestigates);
expect(service.investigates).toBe(mockInvestigates.content);
}));
думаю, что я должен добавить публичную ошибку в функцию и сделать фиктивную функцию, которая возвращаетmockInvestigates или ошибка?
как то так.
class InvestigatesStub {
public error = false;
mockGetInvestigates() {
if (this.error) {
return Observable.throw(new Error('Test error'));
} else {
return Observable.from(data);
}
}
}