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

abuse_report_note_actions_spec.js « notes « components « abuse_report « admin « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1ddfb6145fcaee4896d5c0f95e5e6f4816858ca9 (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
import { GlButton } from '@gitlab/ui';
import { shallowMount } from '@vue/test-utils';
import { createMockDirective } from 'helpers/vue_mock_directive';
import ReplyButton from '~/notes/components/note_actions/reply_button.vue';
import AbuseReportNoteActions from '~/admin/abuse_report/components/notes/abuse_report_note_actions.vue';

describe('Abuse Report Note Actions', () => {
  let wrapper;

  const findReplyButton = () => wrapper.findComponent(ReplyButton);
  const findEditButton = () => wrapper.findComponent(GlButton);

  const createComponent = ({ showReplyButton = true, showEditButton = true } = {}) => {
    wrapper = shallowMount(AbuseReportNoteActions, {
      propsData: {
        showReplyButton,
        showEditButton,
      },
      directives: {
        GlTooltip: createMockDirective('gl-tooltip'),
      },
    });
  };

  describe('Default', () => {
    beforeEach(() => {
      createComponent();
    });

    it('should show reply button', () => {
      expect(findReplyButton().exists()).toBe(true);
    });

    it('should emit `startReplying` when reply button is clicked', () => {
      findReplyButton().vm.$emit('startReplying');

      expect(wrapper.emitted('startReplying')).toHaveLength(1);
    });

    it('should show edit button', () => {
      expect(findEditButton().exists()).toBe(true);
      expect(findEditButton().attributes()).toMatchObject({
        icon: 'pencil',
        title: 'Edit comment',
        'aria-label': 'Edit comment',
      });
    });

    it('should emit `startEditing` when edit button is clicked', () => {
      findEditButton().vm.$emit('click');

      expect(wrapper.emitted('startEditing')).toHaveLength(1);
    });
  });

  describe('When `showReplyButton` is false', () => {
    beforeEach(() => {
      createComponent({
        showReplyButton: false,
      });
    });

    it('should not show reply button', () => {
      expect(findReplyButton().exists()).toBe(false);
    });
  });

  describe('When `showEditButton` is false', () => {
    beforeEach(() => {
      createComponent({
        showEditButton: false,
      });
    });

    it('should not show edit button', () => {
      expect(findEditButton().exists()).toBe(false);
    });
  });
});