summaryrefslogtreecommitdiff
path: root/spec/frontend/pipelines/test_reports/stores/getters_spec.js
blob: e630a005409b664d237b04f659fde2c8a402c6da (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
import * as getters from '~/pipelines/stores/test_reports/getters';
import { testReports, testSuitesFormatted, testCasesFormatted } from '../mock_data';

describe('Getters TestReports Store', () => {
  let state;

  const defaultState = {
    testReports,
    selectedSuite: testReports.test_suites[0],
  };

  const emptyState = {
    testReports: {},
    selectedSuite: {},
  };

  beforeEach(() => {
    state = {
      testReports,
    };
  });

  const setupState = (testState = defaultState) => {
    state = testState;
  };

  describe('getTestSuites', () => {
    it('should return the test suites', () => {
      setupState();

      expect(getters.getTestSuites(state)).toEqual(testSuitesFormatted);
    });

    it('should return an empty array when testReports is empty', () => {
      setupState(emptyState);

      expect(getters.getTestSuites(state)).toEqual([]);
    });
  });

  describe('getSuiteTests', () => {
    it('should return the test cases inside the suite', () => {
      setupState();

      expect(getters.getSuiteTests(state)).toEqual(testCasesFormatted);
    });

    it('should return an empty array when testReports is empty', () => {
      setupState(emptyState);

      expect(getters.getSuiteTests(state)).toEqual([]);
    });
  });
});