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

abuse_report_app_spec.js « 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: e519684bbc56e922beb209bb58ac3137f5e79cdd (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
import { shallowMount } from '@vue/test-utils';
import { GlAlert } from '@gitlab/ui';
import AbuseReportApp from '~/admin/abuse_report/components/abuse_report_app.vue';
import ReportHeader from '~/admin/abuse_report/components/report_header.vue';
import UserDetails from '~/admin/abuse_report/components/user_details.vue';
import ReportedContent from '~/admin/abuse_report/components/reported_content.vue';
import HistoryItems from '~/admin/abuse_report/components/history_items.vue';
import { SUCCESS_ALERT } from '~/admin/abuse_report/constants';
import { mockAbuseReport } from '../mock_data';

describe('AbuseReportApp', () => {
  let wrapper;

  const findAlert = () => wrapper.findComponent(GlAlert);
  const findReportHeader = () => wrapper.findComponent(ReportHeader);
  const findUserDetails = () => wrapper.findComponent(UserDetails);
  const findReportedContent = () => wrapper.findComponent(ReportedContent);
  const findHistoryItems = () => wrapper.findComponent(HistoryItems);

  const createComponent = (props = {}) => {
    wrapper = shallowMount(AbuseReportApp, {
      propsData: {
        abuseReport: mockAbuseReport,
        ...props,
      },
    });
  };

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

  it('does not show the alert by default', () => {
    expect(findAlert().exists()).toBe(false);
  });

  describe('when emitting the showAlert event from the report header', () => {
    const message = 'alert message';

    beforeEach(() => {
      findReportHeader().vm.$emit('showAlert', SUCCESS_ALERT, message);
    });

    it('shows the alert', () => {
      expect(findAlert().exists()).toBe(true);
    });

    it('displays the message', () => {
      expect(findAlert().text()).toBe(message);
    });

    it('sets the variant property', () => {
      expect(findAlert().props('variant')).toBe(SUCCESS_ALERT);
    });

    describe('when dismissing the alert', () => {
      beforeEach(() => {
        findAlert().vm.$emit('dismiss');
      });

      it('hides the alert', () => {
        expect(findAlert().exists()).toBe(false);
      });
    });
  });

  describe('ReportHeader', () => {
    it('renders ReportHeader', () => {
      expect(findReportHeader().props('user')).toBe(mockAbuseReport.user);
      expect(findReportHeader().props('report')).toBe(mockAbuseReport.report);
    });

    describe('when no user is present', () => {
      beforeEach(() => {
        createComponent({
          abuseReport: { ...mockAbuseReport, user: undefined },
        });
      });

      it('does not render the ReportHeader', () => {
        expect(findReportHeader().exists()).toBe(false);
      });
    });
  });

  describe('UserDetails', () => {
    it('renders UserDetails', () => {
      expect(findUserDetails().props('user')).toBe(mockAbuseReport.user);
    });

    describe('when no user is present', () => {
      beforeEach(() => {
        createComponent({
          abuseReport: { ...mockAbuseReport, user: undefined },
        });
      });

      it('does not render the UserDetails', () => {
        expect(findUserDetails().exists()).toBe(false);
      });
    });
  });

  it('renders ReportedContent', () => {
    expect(findReportedContent().props('report')).toBe(mockAbuseReport.report);
    expect(findReportedContent().props('reporter')).toBe(mockAbuseReport.reporter);
  });

  it('renders HistoryItems', () => {
    expect(findHistoryItems().props('report')).toBe(mockAbuseReport.report);
    expect(findHistoryItems().props('reporter')).toBe(mockAbuseReport.reporter);
  });
});