【问题标题】:Why branches coverage is random?为什么分支覆盖是随机的?
【发布时间】:2020-05-13 08:07:15
【问题描述】:

我有 4 个单元测试。

const handleHttp = (method: 'POST' | 'GET' | 'PUT' | 'DELETE'): void => {
  const req = httpTestingController.expectOne(`${environment.apiUrl}test`);
  expect(req.request.method).toEqual(method);
  return req.flush({ fake: 1 });
};

it('should make a POST request', fakeAsync(() => {
  service.post('test', { fakeProp: 'fakeValue' }).then((res) => {
    expect(res).toEqual({ fake: 1 });
  });
  handleHttp('POST');
}));

it('should make a GET request', fakeAsync(() => {
  service.get('test').then((res) => {
    expect(res).toEqual({ fake: 1 });
  });
  handleHttp('GET');
}));

it('should make a PUT request', fakeAsync(() => {
  service.put('test', { fakeProp: 'fakeValue' }).then((res) => {
    expect(res).toEqual({ fake: 1 });
  });
  handleHttp('PUT');
}));

it('should make a DELETE request', fakeAsync(() => {
  service.delete('test', { fakeProp: 'fakeValue' }).then((res) => {
    expect(res).toEqual({ fake: 1 });
  });
  handleHttp('DELETE');
}));

方法选项参数都一样:

post<T>(url: string, body: object, options: object = this.httpOptions): Promise<T> {
get<T>(url: string, options: object = this.httpOptions): Promise<T> {
put<T>(url: string, body: object, options: object = this.httpOptions): Promise<T> {
delete<T>(url: string, options: object = this.httpOptions): Promise<T> {

结果:

75% 分支 3/4

截图:

只有最后一个参数 options 没有被覆盖,但前 3 个被覆盖。

库:

"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",

所以问题是:为什么分支覆盖看起来是随机的,或者我的代码中遗漏了一些东西?我应该运行测试还是不重要?

【问题讨论】:

    标签: angular istanbul karma-coverage angular-unit-test


    【解决方案1】:

    您调用提供选项的方法的唯一时间是在调用 delete 时(我怀疑您实际上并不是故意的)。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2016-06-21
      • 1970-01-01
      • 2016-05-04
      • 1970-01-01
      • 2018-09-27
      • 2020-01-08
      • 2021-03-28
      相关资源
      最近更新 更多