Welcome to mirror list, hosted at ThFree Co, Russian Federation.

utils_spec.js « import_projects « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 826b06d5a705b7d2eaccd2d1f260ffeef31076b7 (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
import { isProjectImportable } from '~/import_projects/utils';
import { STATUSES } from '~/import_projects/constants';

describe('import_projects utils', () => {
  describe('isProjectImportable', () => {
    it.each`
      status                 | result
      ${STATUSES.FINISHED}   | ${false}
      ${STATUSES.FAILED}     | ${false}
      ${STATUSES.SCHEDULED}  | ${false}
      ${STATUSES.STARTED}    | ${false}
      ${STATUSES.NONE}       | ${true}
      ${STATUSES.SCHEDULING} | ${false}
    `('returns $result when project is compatible and status is $status', ({ status, result }) => {
      expect(
        isProjectImportable({
          importStatus: status,
          importSource: { incompatible: false },
        }),
      ).toBe(result);
    });

    it('returns false if project is not compatible', () => {
      expect(
        isProjectImportable({
          importStatus: STATUSES.NONE,
          importSource: { incompatible: true },
        }),
      ).toBe(false);
    });
  });
});