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

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

require 'spec_helper'

RSpec.describe 'Querying a Board list' do
  include GraphqlHelpers

  let_it_be(:current_user) { create(:user) }
  let_it_be(:project) { create(:project) }
  let_it_be(:board) { create(:board, resource_parent: project) }
  let_it_be(:label) { create(:label, project: project, name: 'foo') }
  let_it_be(:list) { create(:list, board: board, label: label) }
  let_it_be(:issue1) { create(:issue, project: project, labels: [label]) }
  let_it_be(:issue2) { create(:issue, project: project, labels: [label], assignees: [current_user]) }
  let_it_be(:issue3) { create(:issue, project: project, labels: [label], confidential: true) }

  let(:filters) { {} }
  let(:query) do
    graphql_query_for(
      :board_list,
      { id: list.to_global_id.to_s, issueFilters: filters },
      %w[title issuesCount]
    )
  end

  subject { graphql_data['boardList'] }

  before do
    post_graphql(query, current_user: current_user)
  end

  context 'when the user has access to the list' do
    before_all do
      project.add_guest(current_user)
    end

    it_behaves_like 'a working graphql query'

    it { is_expected.to include({ 'issuesCount' => 2, 'title' => list.title }) }

    describe 'issue filters' do
      context 'with matching assignee username issue filters' do
        let(:filters) { { assigneeUsername: current_user.username } }

        it 'filters issues metadata' do
          is_expected.to include({ 'issuesCount' => 1, 'title' => list.title })
        end
      end

      context 'with unmatching assignee username issue filters' do
        let(:filters) { { assigneeUsername: 'foo' } }

        it 'filters issues metadata' do
          is_expected.to include({ 'issuesCount' => 0, 'title' => list.title })
        end
      end

      context 'when filtering by confidential' do
        let(:filters) { { confidential: true } }

        before_all do
          project.add_developer(current_user)
        end

        it 'filters issues metadata' do
          is_expected.to include({ 'issuesCount' => 1, 'title' => list.title })
        end
      end
    end
  end

  context 'when the user does not have access to the list' do
    it { is_expected.to be_nil }
  end

  context 'when ID argument is missing' do
    let(:query) do
      graphql_query_for('boardList', {}, 'title')
    end

    it 'raises an exception' do
      expect(graphql_errors).to include(a_hash_including('message' => "Field 'boardList' is missing required arguments: id"))
    end
  end

  context 'when list ID is not found' do
    let(:query) do
      graphql_query_for('boardList', { id: "gid://gitlab/List/#{non_existing_record_id}" }, 'title')
    end

    it { is_expected.to be_nil }
  end

  it 'does not have an N+1 performance issue' do
    a, b = create_list(:list, 2, board: board)
    ctx = { current_user: current_user }
    project.add_guest(current_user)

    baseline = graphql_query_for(:board_list, { id: global_id_of(a) }, 'title')
    query = <<~GQL
      query {
        a: #{query_graphql_field(:board_list, { id: global_id_of(a) }, 'title')}
        b: #{query_graphql_field(:board_list, { id: global_id_of(b) }, 'title')}
      }
    GQL

    control = ActiveRecord::QueryRecorder.new do
      run_with_clean_state(baseline, context: ctx)
    end

    expect { run_with_clean_state(query, context: ctx) }.not_to exceed_query_limit(control)
  end
end