]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/api/daemon.service.spec.ts
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / api / daemon.service.spec.ts
1 import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing';
2 import { TestBed } from '@angular/core/testing';
3
4 import { configureTestBed } from '~/testing/unit-test-helper';
5 import { DaemonService } from './daemon.service';
6
7 describe('DaemonService', () => {
8 let service: DaemonService;
9 let httpTesting: HttpTestingController;
10
11 configureTestBed({
12 providers: [DaemonService],
13 imports: [HttpClientTestingModule]
14 });
15
16 beforeEach(() => {
17 service = TestBed.inject(DaemonService);
18 httpTesting = TestBed.inject(HttpTestingController);
19 });
20
21 afterEach(() => {
22 httpTesting.verify();
23 });
24
25 it('should be created', () => {
26 expect(service).toBeTruthy();
27 });
28
29 it('should call action', () => {
30 const put_data: any = {
31 action: 'start',
32 container_image: null
33 };
34 service.action('osd.1', 'start').subscribe();
35 const req = httpTesting.expectOne('api/daemon/osd.1');
36 expect(req.request.method).toBe('PUT');
37 expect(req.request.body).toEqual(put_data);
38 });
39 });