summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/shared/pg-category.service.spec.ts
blob: 2b3e2975c4f87bd5f13da936830de47df1009893 (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
46
47
48
49
50
51
52
53
54
55
56
import { TestBed } from '@angular/core/testing';

import { configureTestBed } from '~/testing/unit-test-helper';
import { PgCategory } from './pg-category.model';
import { PgCategoryService } from './pg-category.service';

describe('PgCategoryService', () => {
  let service: PgCategoryService;

  configureTestBed({
    providers: [PgCategoryService]
  });

  beforeEach(() => {
    service = TestBed.inject(PgCategoryService);
  });

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

  it('returns all category types', () => {
    const categoryTypes = service.getAllTypes();

    expect(categoryTypes).toEqual(PgCategory.VALID_CATEGORIES);
  });

  describe('getTypeByStates', () => {
    const testMethod = (value: string, expected: string) =>
      expect(service.getTypeByStates(value)).toEqual(expected);

    it(PgCategory.CATEGORY_CLEAN, () => {
      testMethod('clean', PgCategory.CATEGORY_CLEAN);
    });

    it(PgCategory.CATEGORY_WORKING, () => {
      testMethod('clean+scrubbing', PgCategory.CATEGORY_WORKING);
      testMethod('active+clean+snaptrim_wait', PgCategory.CATEGORY_WORKING);
      testMethod(
        '  8 active+clean+scrubbing+deep, 255 active+clean  ',
        PgCategory.CATEGORY_WORKING
      );
    });

    it(PgCategory.CATEGORY_WARNING, () => {
      testMethod('clean+scrubbing+down', PgCategory.CATEGORY_WARNING);
      testMethod('clean+scrubbing+down+nonMappedState', PgCategory.CATEGORY_WARNING);
    });

    it(PgCategory.CATEGORY_UNKNOWN, () => {
      testMethod('clean+scrubbing+nonMappedState', PgCategory.CATEGORY_UNKNOWN);
      testMethod('nonMappedState', PgCategory.CATEGORY_UNKNOWN);
      testMethod('', PgCategory.CATEGORY_UNKNOWN);
    });
  });
});