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

abuse_report_spec.rb « graphql « api « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ab0e92d838c96eac2f25f10a1ab098a0d7bde2e (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Querying an Abuse Report', feature_category: :insider_threat do
  include GraphqlHelpers

  let_it_be(:current_user) { create(:admin) }
  let_it_be(:abuse_report) { create(:abuse_report) }

  let(:global_id) { abuse_report.to_gid.to_s }
  let(:abuse_report_fields) { all_graphql_fields_for('AbuseReport', max_depth: 2) }
  let(:abuse_report_data) { graphql_data['abuseReport'] }

  let(:query) do
    graphql_query_for('abuseReport', { 'id' => global_id }, abuse_report_fields)
  end

  before do
    post_graphql(query, current_user: current_user)
  end

  context 'when the user is an admin' do
    it_behaves_like 'a working graphql query that returns data'

    it 'returns all fields' do
      expect(abuse_report_data).to include(
        'id' => global_id
      )
    end
  end

  context 'when the user is not an admin' do
    let(:current_user) { create(:user) }

    it 'returns nil' do
      expect(abuse_report_data).to be_nil
    end
  end

  describe 'labels' do
    let_it_be(:abuse_report_label) { create(:abuse_report_label, title: 'Label') }
    let_it_be(:abuse_report) { create(:abuse_report, labels: [abuse_report_label]) }

    let(:labels_response) do
      graphql_data_at(:abuse_report, :labels, :nodes)
    end

    let(:abuse_report_fields) do
      <<~GRAPHQL
        labels {
          nodes {
            id
            title
            description
            color
            textColor
          }
        }
      GRAPHQL
    end

    it 'returns labels' do
      expect(labels_response).to contain_exactly(
        a_graphql_entity_for(abuse_report_label)
      )
    end
  end

  describe 'notes' do
    let_it_be(:note) { create(:note, noteable: abuse_report, author: current_user) }

    let(:notes_response) do
      graphql_data_at(:abuse_report, :notes, :nodes)
    end

    let(:abuse_report_fields) do
      <<~GRAPHQL
        notes {
          nodes {
            #{all_graphql_fields_for('Note', max_depth: 2)}
          }
        }
      GRAPHQL
    end

    it 'returns notes' do
      expect(notes_response).to contain_exactly(
        a_graphql_entity_for(note)
      )
    end
  end

  describe 'discussions' do
    let_it_be(:discussion) do
      create(:discussion_note_on_abuse_report, noteable: abuse_report, author: current_user).to_discussion
    end

    let(:discussions_response) do
      graphql_data_at(:abuse_report, :discussions, :nodes)
    end

    let(:abuse_report_fields) do
      <<~GRAPHQL
        discussions {
          nodes {
            #{all_graphql_fields_for('Discussion', max_depth: 2)}
          }
        }
      GRAPHQL
    end

    it 'returns discussions' do
      expect(discussions_response).to contain_exactly(
        a_graphql_entity_for(discussion)
      )
    end
  end
end