summaryrefslogtreecommitdiff
path: root/spec/support/shared_contexts/requests/api/graphql/group_and_project_boards_query_shared_context.rb
blob: 4c80bbef153695c92d998cb6393d457dd02c154c (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
# frozen_string_literal: true

RSpec.shared_context 'group and project boards query context' do
  let_it_be(:user) { create :user }
  let(:current_user) { user }
  let(:params) { '' }
  let(:board_parent_type) { board_parent.class.to_s.downcase }
  let(:boards_data) { graphql_data[board_parent_type]['boards']['edges'] }
  let(:board_data) { graphql_data[board_parent_type]['board'] }
  let(:start_cursor) { graphql_data[board_parent_type]['boards']['pageInfo']['startCursor'] }
  let(:end_cursor) { graphql_data[board_parent_type]['boards']['pageInfo']['endCursor'] }

  def query(board_params = params)
    graphql_query_for(
      board_parent_type,
      { 'fullPath' => board_parent.full_path },
      <<~BOARDS
        #{field_with_params('boards', board_params)} {
          pageInfo {
            startCursor
            endCursor
          }
          edges {
            node {
              #{all_graphql_fields_for('boards'.classify)}
            }
          }
        }
    BOARDS
    )
  end

  def query_single_board(board_params = params)
    graphql_query_for(
      board_parent_type,
      { 'fullPath' => board_parent.full_path },
      <<~BOARD
        #{field_with_params('board', board_params)} {
          #{all_graphql_fields_for('board'.classify)}
        }
      BOARD
    )
  end

  def grab_names(data = boards_data)
    data.map do |board|
      board.dig('node', 'name')
    end
  end
end