summaryrefslogtreecommitdiff
path: root/spec/frontend/admin/users/components/actions/actions_spec.js
blob: 4967753b91c16de14467972f79603f4210c69726 (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
import { GlDropdownItem } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import Actions from '~/admin/users/components/actions';
import eventHub, {
  EVENT_OPEN_DELETE_USER_MODAL,
} from '~/admin/users/components/modals/delete_user_modal_event_hub';
import { capitalizeFirstCharacter } from '~/lib/utils/text_utility';
import { OBSTACLE_TYPES } from '~/vue_shared/components/user_deletion_obstacles/constants';
import { CONFIRMATION_ACTIONS, DELETE_ACTIONS } from '../../constants';
import { paths } from '../../mock_data';

describe('Action components', () => {
  let wrapper;

  const findDropdownItem = () => wrapper.findComponent(GlDropdownItem);

  const initComponent = ({ component, props } = {}) => {
    wrapper = shallowMount(component, {
      propsData: {
        ...props,
      },
    });
  };

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

  describe('CONFIRMATION_ACTIONS', () => {
    it.each(CONFIRMATION_ACTIONS)('renders a dropdown item for "%s"', (action) => {
      initComponent({
        component: Actions[capitalizeFirstCharacter(action)],
        props: {
          username: 'John Doe',
          path: '/test',
        },
      });

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

  describe('DELETE_ACTION_COMPONENTS', () => {
    beforeEach(() => {
      jest.spyOn(eventHub, '$emit').mockImplementation();
    });

    const userDeletionObstacles = [
      { name: 'schedule1', type: OBSTACLE_TYPES.oncallSchedules },
      { name: 'policy1', type: OBSTACLE_TYPES.escalationPolicies },
    ];

    it.each(DELETE_ACTIONS)(
      'renders a dropdown item that opens the delete user modal when clicked for "%s"',
      async (action) => {
        initComponent({
          component: Actions[capitalizeFirstCharacter(action)],
          props: {
            username: 'John Doe',
            paths,
            userDeletionObstacles,
          },
        });

        await findDropdownItem().vm.$emit('click');

        expect(eventHub.$emit).toHaveBeenCalledWith(
          EVENT_OPEN_DELETE_USER_MODAL,
          expect.objectContaining({
            username: 'John Doe',
            blockPath: paths.block,
            deletePath: paths[action],
            userDeletionObstacles,
          }),
        );
      },
    );
  });
});