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
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'abuse_report_labels', feature_category: :insider_threat do
include GraphqlHelpers
let_it_be(:current_user) { create(:admin) }
let_it_be(:project_label) { create(:label) }
let_it_be(:label_one) { create(:abuse_report_label, title: 'Uno') }
let_it_be(:label_two) { create(:abuse_report_label, title: 'Dos') }
let(:fields) do
<<~GRAPHQL
nodes {
id
title
description
color
textColor
}
GRAPHQL
end
let(:arguments) { { searchTerm: '' } }
let(:query) { graphql_query_for('abuseReportLabels', arguments, fields) }
before do
post_graphql(query, current_user: current_user)
end
it_behaves_like 'a working graphql query that returns data'
it 'returns abuse report labels sorted by title in ascending order' do
expect(graphql_data_at('abuseReportLabels', 'nodes').size).to eq 2
expect(graphql_data_at('abuseReportLabels', 'nodes', 0)).to match(a_graphql_entity_for(label_two))
expect(graphql_data_at('abuseReportLabels', 'nodes', 1)).to match(a_graphql_entity_for(label_one))
end
context 'when current user is not an admin' do
let_it_be(:current_user) { create(:user) }
it_behaves_like 'a working graphql query'
it 'does not contain any data' do
expect(graphql_data_at('abuseReportLabels', 'nodes')).to be_empty
end
end
context 'with a search term param' do
let(:arguments) { { searchTerm: 'uno' } }
it 'returns only matching abuse report labels' do
expect(graphql_data_at('abuseReportLabels', 'nodes').size).to eq 1
expect(graphql_data_at('abuseReportLabels', 'nodes', 0)).to match(a_graphql_entity_for(label_one))
end
end
end
|