blob: 9142e8d0f0c7760c448336c9c874fb77e28c29eb (
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
|
import {getTestBed, TestBed} from '@angular/core/testing';
import {HttpClientTestingModule, HttpTestingController} from '@angular/common/http/testing';
import {MsoService} from './mso.service';
import {Constants} from "../../utils/constants";
describe('Mso Service', () => {
let injector;
let service: MsoService;
let httpMock: HttpTestingController;
beforeAll(done => (async () => {
TestBed.configureTestingModule({
imports: [HttpClientTestingModule],
providers: [MsoService]
});
await TestBed.compileComponents();
injector = getTestBed();
service = injector.get(MsoService);
httpMock = injector.get(HttpTestingController);
})().then(done).catch(done.fail));
describe('#instantiation status tests ', ()=> {
test('retry should send the right request', ()=>{
const jobId: string = '111';
service.retryMsoTask(jobId).subscribe();
const req = httpMock.expectOne(Constants.Path.SERVICES_JOB_INFO_PATH + '/retry/' + jobId);
expect(req.request.method).toBe('POST');
});
});
});
|