summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/requests/api/graphql/mutations/create_list_shared_examples.rb
blob: fe2cdbe3182a0a414a122f8cba7f9d4285ca92da (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.shared_examples 'board lists create request' do
  include GraphqlHelpers

  let_it_be(:current_user) { create(:user) }
  let_it_be(:dev_label) do
    create(:group_label, title: 'Development', color: '#FFAABB', group: group)
  end

  let(:mutation) { graphql_mutation(mutation_name, input) }
  let(:mutation_response) { graphql_mutation_response(mutation_name) }

  context 'the user is not allowed to read board lists' do
    let(:input) { { board_id: board.to_global_id.to_s, backlog: true } }

    it_behaves_like 'a mutation that returns a top-level access error'
  end

  context 'when user has permissions to admin board lists' do
    before do
      group.add_reporter(current_user)
    end

    describe 'backlog list' do
      let(:input) { { board_id: board.to_global_id.to_s, backlog: true } }

      it 'creates the list' do
        post_graphql_mutation(mutation, current_user: current_user)

        expect(response).to have_gitlab_http_status(:success)
        expect(mutation_response['list'])
          .to include('position' => nil, 'listType' => 'backlog')
      end
    end

    describe 'label list' do
      let(:input) { { board_id: board.to_global_id.to_s, label_id: dev_label.to_global_id.to_s } }

      it 'creates the list' do
        post_graphql_mutation(mutation, current_user: current_user)

        expect(response).to have_gitlab_http_status(:success)
        expect(mutation_response['list'])
          .to include('position' => 0, 'listType' => 'label', 'label' => include('title' => 'Development'))
      end
    end
  end
end