带有window.location.href的Angular 7单元测试

时间:2020-03-10 22:20:55

标签: angular karma-jasmine

我正在尝试对API请求进行单元测试,以检查其是否返回预期结果。在API请求的回调中,我必须使用window.location.href将页面重定向到外部URL。 似乎测试用例试图重定向页面,无头chrome返回断开连接错误。我试图创建模拟窗口服务,但仍然无法正常工作。


 this.apiSvc.logout().subscribe((res) => {
        localStorage.clear();
        window.location.href = res.url;
    })```

App.component.spec.ts

 it('should redirect to external page on clicking of logout function', async(() => { 
    spyOn(apiSvc, 'logout').and.callFake(() => {
      return of({url: mockWindow.location.href})
    })
    component.onLogout();
    expect(uiApiSvc.logout).toHaveBeenCalled();
  }));

Error message
Chrome 78.0.3904 (Windows 10.0.0): Executed 7 of 26 DISCONNECTED (30.567 secs / 0.722 secs)

1 个答案:

答案 0 :(得分:0)

在我看来,除了window.location.href的实际设置之外,您需要测试所有其他内容-您可以相信浏览器可以正确执行此操作。我会将那部分包装在函数中,并检查函数本身是否以正确的值调用:

public navigateToResponseUrl(url: string): void {
   window.location.href = url;
}

规范文件:

const navigateToResponseUrlSpy = spyOn(apiSvc, 'navigateToResponseUrl');
...
expect(navigateToResponseUrlSpy).toHaveBeenCalledWith('/your/url');