summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/mutations/boards/lists/update_spec.rb
blob: 8e24e0532117f3cdb826b9284644cbff9a2f4ca5 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'Update of an existing board list' do
  include GraphqlHelpers

  let_it_be(:current_user) { create(:user) }
  let_it_be(:group) { create(:group, :private) }
  let_it_be(:board) { create(:board, group: group) }
  let_it_be(:list) { create(:list, board: board, position: 0) }
  let_it_be(:list2) { create(:list, board: board) }
  let_it_be(:input) { { list_id: list.to_global_id.to_s, position: 1, collapsed: true } }
  let(:mutation) { graphql_mutation(:update_board_list, input) }
  let(:mutation_response) { graphql_mutation_response(:update_board_list) }

  context 'the user is not allowed to read board lists' do
    it_behaves_like 'a mutation that returns a top-level access error'
  end

  before do
    list.update_preferences_for(current_user, collapsed: false)
  end

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

    it 'updates the list position and collapsed state' do
      post_graphql_mutation(mutation, current_user: current_user)

      expect(response).to have_gitlab_http_status(:success)
      expect(mutation_response['list']).to include(
        'position' => 1,
        'collapsed' => true
      )
    end
  end

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

    it 'updates the list collapsed state but not the list position' 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,
        'collapsed' => true
      )
    end
  end
end