summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/api/logging.service.spec.ts
blob: 6458827f0f57659cbf3248836ab77cebc9a8f3e5 (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
import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing';
import { TestBed } from '@angular/core/testing';

import { configureTestBed } from '~/testing/unit-test-helper';
import { LoggingService } from './logging.service';

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

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

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

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

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

  it('should call jsError', () => {
    service.jsError('foo', 'bar', 'baz').subscribe();
    const req = httpTesting.expectOne('ui-api/logging/js-error');
    expect(req.request.method).toBe('POST');
    expect(req.request.body).toEqual({
      url: 'foo',
      message: 'bar',
      stack: 'baz'
    });
  });
});