summaryrefslogtreecommitdiff
path: root/spec/frontend/notes/components/comment_type_dropdown_spec.js
blob: 8ac6144e5c86549222d6c8ab1f04b14a40d9a728 (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
import { GlDropdown, GlDropdownItem } from '@gitlab/ui';
import { mount } from '@vue/test-utils';
import { extendedWrapper } from 'helpers/vue_test_utils_helper';
import CommentTypeDropdown from '~/notes/components/comment_type_dropdown.vue';
import * as constants from '~/notes/constants';
import { COMMENT_FORM } from '~/notes/i18n';

describe('CommentTypeDropdown component', () => {
  let wrapper;

  const findCommentGlDropdown = () => wrapper.findComponent(GlDropdown);
  const findCommentDropdownOption = () => wrapper.findAllComponents(GlDropdownItem).at(0);
  const findDiscussionDropdownOption = () => wrapper.findAllComponents(GlDropdownItem).at(1);

  const mountComponent = ({ props = {} } = {}) => {
    wrapper = extendedWrapper(
      mount(CommentTypeDropdown, {
        propsData: {
          noteableDisplayName: 'issue',
          noteType: constants.COMMENT,
          ...props,
        },
      }),
    );
  };

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

  it('Should label action button "Comment" and correct dropdown item checked when selected', () => {
    mountComponent({ props: { noteType: constants.COMMENT } });

    expect(findCommentGlDropdown().props()).toMatchObject({ text: COMMENT_FORM.comment });
    expect(findCommentDropdownOption().props()).toMatchObject({ isChecked: true });
    expect(findDiscussionDropdownOption().props()).toMatchObject({ isChecked: false });
  });

  it('Should label action button "Start Thread" and correct dropdown item option checked when selected', () => {
    mountComponent({ props: { noteType: constants.DISCUSSION } });

    expect(findCommentGlDropdown().props()).toMatchObject({ text: COMMENT_FORM.startThread });
    expect(findCommentDropdownOption().props()).toMatchObject({ isChecked: false });
    expect(findDiscussionDropdownOption().props()).toMatchObject({ isChecked: true });
  });

  it('Should emit `change` event when clicking on an alternate dropdown option', () => {
    mountComponent({ props: { noteType: constants.DISCUSSION } });

    const event = {
      type: 'click',
      stopPropagation: jest.fn(),
      preventDefault: jest.fn(),
    };

    findCommentDropdownOption().vm.$emit('click', event);
    findDiscussionDropdownOption().vm.$emit('click', event);

    // ensure the native events don't trigger anything
    expect(event.stopPropagation).toHaveBeenCalledTimes(2);
    expect(event.preventDefault).toHaveBeenCalledTimes(2);

    expect(wrapper.emitted('change')[0]).toEqual([constants.COMMENT]);
    expect(wrapper.emitted('change').length).toEqual(1);
  });

  it('Should emit `click` event when clicking on the action button', () => {
    mountComponent({ props: { noteType: constants.DISCUSSION } });

    findCommentGlDropdown().vm.$emit('click');

    expect(wrapper.emitted('click').length > 0).toBe(true);
  });
});