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

import_actions_cell_spec.js « components « import_groups « import_entities « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 163a60bae36ecec7cb18a822f73173581f82b3d3 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
import { GlButton, GlIcon, GlDropdown, GlDropdownItem } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import ImportActionsCell from '~/import_entities/import_groups/components/import_actions_cell.vue';

describe('import actions cell', () => {
  let wrapper;

  const createComponent = (props) => {
    wrapper = shallowMount(ImportActionsCell, {
      propsData: {
        isProjectsImportEnabled: false,
        isFinished: false,
        isAvailableForImport: false,
        isInvalid: false,
        ...props,
      },
    });
  };

  afterEach(() => {
    wrapper.destroy();
  });

  describe('when group is available for import', () => {
    beforeEach(() => {
      createComponent({ isAvailableForImport: true });
    });

    it('renders import button', () => {
      const button = wrapper.findComponent(GlButton);
      expect(button.exists()).toBe(true);
      expect(button.text()).toBe('Import');
    });

    it('does not render icon with a hint', () => {
      expect(wrapper.findComponent(GlIcon).exists()).toBe(false);
    });
  });

  describe('when group is finished', () => {
    beforeEach(() => {
      createComponent({ isAvailableForImport: false, isFinished: true });
    });

    it('renders re-import button', () => {
      const button = wrapper.findComponent(GlButton);
      expect(button.exists()).toBe(true);
      expect(button.text()).toBe('Re-import');
    });

    it('renders icon with a hint', () => {
      const icon = wrapper.findComponent(GlIcon);
      expect(icon.exists()).toBe(true);
      expect(icon.attributes().title).toBe(
        'Re-import creates a new group. It does not sync with the existing group.',
      );
    });
  });

  it('does not render import button when group is not available for import', () => {
    createComponent({ isAvailableForImport: false });

    const button = wrapper.findComponent(GlButton);
    expect(button.exists()).toBe(false);
  });

  it('renders import button as disabled when group is invalid', () => {
    createComponent({ isInvalid: true, isAvailableForImport: true });

    const button = wrapper.findComponent(GlButton);
    expect(button.props().disabled).toBe(true);
  });

  it('emits import-group event when import button is clicked', () => {
    createComponent({ isAvailableForImport: true });

    const button = wrapper.findComponent(GlButton);
    button.vm.$emit('click');

    expect(wrapper.emitted('import-group')).toHaveLength(1);
  });

  describe.each`
    isFinished | expectedAction
    ${false}   | ${'Import'}
    ${true}    | ${'Re-import'}
  `(
    'when import projects is enabled, group is available for import and finish status is $status',
    ({ isFinished, expectedAction }) => {
      beforeEach(() => {
        createComponent({ isProjectsImportEnabled: true, isAvailableForImport: true, isFinished });
      });

      it('render import dropdown', () => {
        const dropdown = wrapper.findComponent(GlDropdown);
        expect(dropdown.props('text')).toBe(`${expectedAction} with projects`);
        expect(dropdown.findComponent(GlDropdownItem).text()).toBe(
          `${expectedAction} without projects`,
        );
      });

      it('request migrate projects by default', async () => {
        const dropdown = wrapper.findComponent(GlDropdown);
        dropdown.vm.$emit('click');

        expect(wrapper.emitted('import-group')[0]).toStrictEqual([{ migrateProjects: true }]);
      });

      it('request not to migrate projects via dropdown option', async () => {
        const dropdown = wrapper.findComponent(GlDropdown);
        dropdown.findComponent(GlDropdownItem).vm.$emit('click');

        expect(wrapper.emitted('import-group')[0]).toStrictEqual([{ migrateProjects: false }]);
      });
    },
  );
});