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

item_actions_spec.js « components « groups « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4aa29eaadd4dac8a8913dc60a10430aeb435a67 (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 { shallowMount } from '@vue/test-utils';
import { GlIcon } from '@gitlab/ui';
import ItemActions from '~/groups/components/item_actions.vue';
import eventHub from '~/groups/event_hub';
import { mockParentGroupItem, mockChildren } from '../mock_data';

describe('ItemActions', () => {
  let wrapper;
  const parentGroup = mockChildren[0];

  const defaultProps = {
    group: mockParentGroupItem,
    parentGroup,
  };

  const createComponent = (props = {}) => {
    wrapper = shallowMount(ItemActions, {
      propsData: { ...defaultProps, ...props },
    });
  };

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

  const findEditGroupBtn = () => wrapper.find('[data-testid="edit-group-btn"]');
  const findEditGroupIcon = () => findEditGroupBtn().find(GlIcon);
  const findLeaveGroupBtn = () => wrapper.find('[data-testid="leave-group-btn"]');
  const findLeaveGroupIcon = () => findLeaveGroupBtn().find(GlIcon);

  describe('template', () => {
    it('renders component template correctly', () => {
      createComponent();

      expect(wrapper.classes()).toContain('controls');
    });

    it('renders "Edit group" button with correct attribute values', () => {
      const group = {
        ...mockParentGroupItem,
        canEdit: true,
      };

      createComponent({ group });

      expect(findEditGroupBtn().exists()).toBe(true);
      expect(findEditGroupBtn().classes()).toContain('no-expand');
      expect(findEditGroupBtn().attributes('href')).toBe(group.editPath);
      expect(findEditGroupBtn().attributes('aria-label')).toBe('Edit group');
      expect(findEditGroupBtn().attributes('data-original-title')).toBe('Edit group');
      expect(findEditGroupIcon().exists()).toBe(true);
      expect(findEditGroupIcon().props('name')).toBe('settings');
    });

    describe('`canLeave` is true', () => {
      const group = {
        ...mockParentGroupItem,
        canLeave: true,
      };

      beforeEach(() => {
        createComponent({ group });
      });

      it('renders "Leave this group" button with correct attribute values', () => {
        expect(findLeaveGroupBtn().exists()).toBe(true);
        expect(findLeaveGroupBtn().classes()).toContain('no-expand');
        expect(findLeaveGroupBtn().attributes('href')).toBe(group.leavePath);
        expect(findLeaveGroupBtn().attributes('aria-label')).toBe('Leave this group');
        expect(findLeaveGroupBtn().attributes('data-original-title')).toBe('Leave this group');
        expect(findLeaveGroupIcon().exists()).toBe(true);
        expect(findLeaveGroupIcon().props('name')).toBe('leave');
      });

      it('emits event on "Leave this group" button click', () => {
        jest.spyOn(eventHub, '$emit').mockImplementation(() => {});

        findLeaveGroupBtn().trigger('click');

        expect(eventHub.$emit).toHaveBeenCalledWith('showLeaveGroupModal', group, parentGroup);
      });
    });
  });
});