summaryrefslogtreecommitdiff
path: root/spec/frontend/labels/delete_label_modal_spec.js
blob: c1e6ce879901dd820e579fa5310971a27183fa71 (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
import { TEST_HOST } from 'helpers/test_constants';
import { initDeleteLabelModal } from '~/labels';

describe('DeleteLabelModal', () => {
  const buttons = [
    {
      labelName: 'label 1',
      subjectName: 'GitLab Org',
      destroyPath: `${TEST_HOST}/1`,
    },
    {
      labelName: 'label 2',
      subjectName: 'GitLab Org',
      destroyPath: `${TEST_HOST}/2`,
    },
  ];

  beforeEach(() => {
    const buttonContainer = document.createElement('div');

    buttons.forEach((x) => {
      const button = document.createElement('button');
      button.setAttribute('class', 'js-delete-label-modal-button');
      button.setAttribute('data-label-name', x.labelName);
      button.setAttribute('data-subject-name', x.subjectName);
      button.setAttribute('data-destroy-path', x.destroyPath);
      button.innerHTML = 'Action';
      buttonContainer.appendChild(button);
    });

    document.body.appendChild(buttonContainer);
  });

  afterEach(() => {
    document.body.innerHTML = '';
  });

  const findJsHooks = () => document.querySelectorAll('.js-delete-label-modal-button');
  const findModal = () => document.querySelector('.gl-modal');

  it('starts with only js-containers', () => {
    expect(findJsHooks()).toHaveLength(buttons.length);
    expect(findModal()).toBe(null);
  });

  describe('when first button clicked', () => {
    beforeEach(() => {
      initDeleteLabelModal();
      findJsHooks().item(0).click();
    });

    it('does not replace js-containers with GlModal', () => {
      expect(findJsHooks()).toHaveLength(buttons.length);
    });

    it('renders GlModal', () => {
      expect(findModal()).not.toBe(null);
    });
  });

  describe.each`
    index
    ${0}
    ${1}
  `(`when multiple buttons exist`, ({ index }) => {
    beforeEach(() => {
      initDeleteLabelModal();
      findJsHooks().item(index).click();
    });

    it('correct props are passed to gl-modal', () => {
      expect(findModal().querySelector('.modal-title').innerHTML).toContain(
        buttons[index].labelName,
      );
      expect(findModal().querySelector('.modal-body').innerHTML).toContain(
        buttons[index].subjectName,
      );
      expect(findModal().querySelector('.modal-footer .btn-danger').href).toContain(
        buttons[index].destroyPath,
      );
    });
  });
});