gitlab-org--gitlab-foss/spec/frontend/import_entities/import_groups/utils_spec.js

57 lines
1.9 KiB
JavaScript

import { STATUSES } from '~/import_entities/constants';
import { isFinished, isAvailableForImport } from '~/import_entities/import_groups/utils';
const FINISHED_STATUSES = [STATUSES.FINISHED, STATUSES.FAILED, STATUSES.TIMEOUT];
const OTHER_STATUSES = Object.values(STATUSES).filter(
(status) => !FINISHED_STATUSES.includes(status),
);
describe('gitlab migration status utils', () => {
describe('isFinished', () => {
it.each(FINISHED_STATUSES.map((s) => [s]))(
'reports group as finished when import status is %s',
(status) => {
expect(isFinished({ progress: { status } })).toBe(true);
},
);
it.each(OTHER_STATUSES.map((s) => [s]))(
'does not report group as finished when import status is %s',
(status) => {
expect(isFinished({ progress: { status } })).toBe(false);
},
);
it('does not report group as finished when there is no progress', () => {
expect(isFinished({ progress: null })).toBe(false);
});
it('does not report group as finished when status is unknown', () => {
expect(isFinished({ progress: { status: 'weird' } })).toBe(false);
});
});
describe('isAvailableForImport', () => {
it.each(FINISHED_STATUSES.map((s) => [s]))(
'reports group as available for import when status is %s',
(status) => {
expect(isAvailableForImport({ progress: { status } })).toBe(true);
},
);
it.each(OTHER_STATUSES.map((s) => [s]))(
'does not report group as not available for import when status is %s',
(status) => {
expect(isAvailableForImport({ progress: { status } })).toBe(false);
},
);
it('reports group as available for import when there is no progress', () => {
expect(isAvailableForImport({ progress: null })).toBe(true);
});
it('reports group as finished when status is unknown', () => {
expect(isFinished({ progress: { status: 'weird' } })).toBe(false);
});
});
});