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

transfer_project_form_spec.js « components « settings « projects « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e091f3e25c32ff7fcf8f0b94a2598049bb699f0d (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
import transferLocationsResponsePage1 from 'test_fixtures/api/projects/transfer_locations_page_1.json';
import { shallowMountExtended } from 'helpers/vue_test_utils_helper';
import TransferProjectForm from '~/projects/settings/components/transfer_project_form.vue';
import TransferLocations from '~/groups_projects/components/transfer_locations.vue';
import ConfirmDanger from '~/vue_shared/components/confirm_danger/confirm_danger.vue';
import { getTransferLocations } from '~/api/projects_api';

jest.mock('~/api/projects_api', () => ({
  getTransferLocations: jest.fn(),
}));

describe('Transfer project form', () => {
  let wrapper;

  const resourceId = '1';
  const confirmButtonText = 'Confirm';
  const confirmationPhrase = 'You must construct additional pylons!';

  const createComponent = () => {
    wrapper = shallowMountExtended(TransferProjectForm, {
      provide: {
        resourceId,
      },
      propsData: {
        confirmButtonText,
        confirmationPhrase,
      },
    });
  };

  const findTransferLocations = () => wrapper.findComponent(TransferLocations);
  const findConfirmDanger = () => wrapper.findComponent(ConfirmDanger);

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

  it('renders the namespace selector and passes `groupTransferLocationsApiMethod` prop', () => {
    createComponent();

    expect(findTransferLocations().exists()).toBe(true);

    findTransferLocations().props('groupTransferLocationsApiMethod')();
    expect(getTransferLocations).toHaveBeenCalled();
  });

  it('renders the confirm button', () => {
    createComponent();

    expect(findConfirmDanger().exists()).toBe(true);
  });

  it('disables the confirm button by default', () => {
    createComponent();

    expect(findConfirmDanger().attributes('disabled')).toBe('true');
  });

  describe('with a selected namespace', () => {
    const [selectedItem] = transferLocationsResponsePage1;

    beforeEach(() => {
      createComponent();
      findTransferLocations().vm.$emit('input', selectedItem);
    });

    it('sets `value` prop on `TransferLocations` component', () => {
      expect(findTransferLocations().props('value')).toEqual(selectedItem);
    });

    it('emits the `selectTransferLocation` event when a namespace is selected', async () => {
      const args = [selectedItem.id];

      expect(wrapper.emitted('selectTransferLocation')).toEqual([args]);
    });

    it('enables the confirm button', async () => {
      expect(findConfirmDanger().attributes('disabled')).toBeUndefined();
    });

    it('clicking the confirm button emits the `confirm` event', async () => {
      findConfirmDanger().vm.$emit('confirm');

      expect(wrapper.emitted('confirm')).toBeDefined();
    });
  });
});