summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/api/performance-counter.service.spec.ts
blob: 12b13787b91b5e10efaa9ca18e8f313bc137d2bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing';
import { TestBed } from '@angular/core/testing';

import { configureTestBed } from '~/testing/unit-test-helper';
import { PerformanceCounterService } from './performance-counter.service';

describe('PerformanceCounterService', () => {
  let service: PerformanceCounterService;
  let httpTesting: HttpTestingController;

  configureTestBed({
    providers: [PerformanceCounterService],
    imports: [HttpClientTestingModule]
  });

  beforeEach(() => {
    service = TestBed.inject(PerformanceCounterService);
    httpTesting = TestBed.inject(HttpTestingController);
  });

  afterEach(() => {
    httpTesting.verify();
  });

  it('should be created', () => {
    expect(service).toBeTruthy();
  });

  it('should call list', () => {
    service.list().subscribe();
    const req = httpTesting.expectOne('api/perf_counters');
    expect(req.request.method).toBe('GET');
  });

  it('should call get', () => {
    let result;
    service.get('foo', '1').subscribe((resp) => {
      result = resp;
    });
    const req = httpTesting.expectOne('api/perf_counters/foo/1');
    expect(req.request.method).toBe('GET');
    req.flush({ counters: [{ foo: 'bar' }] });
    expect(result).toEqual([{ foo: 'bar' }]);
  });
});