茉莉花Angular单元测试与订阅

问题描述 投票:0回答:1

postStatus(status: String) {
    return this.http
        .post(url, null, {
          headers: new HttpHeaders({"Content-Type": "application/json"}),
          observe: "response"
        })
        .subscribe(
            responseDate => {
              console.log(responseDate)
              this.statusUpdated.next(status);
            },
            error => {
              if (status === "Z") this.statusUpdated.next("ZERROR")
              else this.statusUpdated.next("YERROR")
            })
  }

const errorResponse = new HttpErrorResponse({
  error: 'test 404 error',
  status: 404, statusText: 'Not Found'
});


it('postStatus should return error and update status to error to ZERROR' ,() =>{
    httpCientSpyPost = jasmine.createSpyObj('http', ['post']);
    service  = new ChangelogService(<any>httpCientSpyPost,null,null,new PostMessageService());
    let updatedStatus:string = '';


    httpCientSpyPost.post.and.returnValue(of(errorResponse));
    service.statusUpdated.subscribe((status:string) => {updatedStatus=status});

    service.postStatus('Z');

    expect(httpCientSpyPost.post.calls.count()).toBe(1, 'one call');
    expect(updatedStatus).toBe('ZERROR');
});

错误。

Expected 'Z' to be 'ZERROR'.

它不会出错块。我这里是不是漏了什么?

angular unit-testing jasmine karma-jasmine angular-unit-test
1个回答
0
投票

你正在返回错误对象,而没有在observable中造成错误,所以它正在执行成功路径。 试着替换一下 returnValue 与以下内容。

httpCientSpyPost.post.and.returnValue(throwError(errorResponse));

这将导致观测值进入错误路径。 您需要导入 throwError 从rxjs。

© www.soinside.com 2019 - 2024. All rights reserved.