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

user_modal_manager_spec.js « modals « components « users « admin « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65ce242662bc77ebac49b55009a2e178507943e6 (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
118
119
120
121
122
123
124
125
126
import { mount } from '@vue/test-utils';
import UserModalManager from '~/admin/users/components/modals/user_modal_manager.vue';
import ModalStub from './stubs/modal_stub';

describe('Users admin page Modal Manager', () => {
  let wrapper;

  const modalConfiguration = {
    action1: {
      title: 'action1',
      content: 'Action Modal 1',
    },
    action2: {
      title: 'action2',
      content: 'Action Modal 2',
    },
  };

  const findModal = () => wrapper.find({ ref: 'modal' });

  const createComponent = (props = {}) => {
    wrapper = mount(UserModalManager, {
      propsData: {
        selector: '.js-delete-user-modal-button',
        modalConfiguration,
        csrfToken: 'dummyCSRF',
        ...props,
      },
      stubs: {
        DeleteUserModal: ModalStub,
      },
    });
  };

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

  describe('render behavior', () => {
    it('does not renders modal when initialized', () => {
      createComponent();
      expect(findModal().exists()).toBeFalsy();
    });

    it('throws if action has no proper configuration', () => {
      createComponent({
        modalConfiguration: {},
      });
      expect(() => wrapper.vm.show({ glModalAction: 'action1' })).toThrow();
    });

    it('renders modal with expected props when valid configuration is passed', () => {
      createComponent();
      wrapper.vm.show({
        glModalAction: 'action1',
        extraProp: 'extraPropValue',
      });

      return wrapper.vm.$nextTick().then(() => {
        const modal = findModal();
        expect(modal.exists()).toBeTruthy();
        expect(modal.vm.$attrs.csrfToken).toEqual('dummyCSRF');
        expect(modal.vm.$attrs.extraProp).toEqual('extraPropValue');
        expect(modal.vm.showWasCalled).toBeTruthy();
      });
    });
  });

  describe('click handling', () => {
    let button;
    let button2;

    const createButtons = () => {
      button = document.createElement('button');
      button2 = document.createElement('button');
      button.setAttribute('class', 'js-delete-user-modal-button');
      button.setAttribute('data-username', 'foo');
      button.setAttribute('data-gl-modal-action', 'action1');
      button.setAttribute('data-block-user-url', '/block');
      button.setAttribute('data-delete-user-url', '/delete');
      document.body.appendChild(button);
      document.body.appendChild(button2);
    };
    const removeButtons = () => {
      button.remove();
      button = null;
      button2.remove();
      button2 = null;
    };

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

    afterEach(() => {
      removeButtons();
    });

    it('renders the modal when the button is clicked', async () => {
      button.click();

      await wrapper.vm.$nextTick();

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

    it('does not render the modal when a misconfigured button is clicked', async () => {
      button.removeAttribute('data-gl-modal-action');
      button.click();

      await wrapper.vm.$nextTick();

      expect(findModal().exists()).toBe(false);
    });

    it('does not render the modal when a button without the selector class is clicked', async () => {
      button2.click();

      await wrapper.vm.$nextTick();

      expect(findModal().exists()).toBe(false);
    });
  });
});