summaryrefslogtreecommitdiff
path: root/spec/graphql/mutations/issues/set_locked_spec.rb
blob: 1a0af0c6c6331e3c1062d1cc16b0edef73040300 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Mutations::Issues::SetLocked do
  let_it_be(:issue) { create(:issue) }
  let_it_be(:user) { create(:user) }

  subject(:mutation) { described_class.new(object: nil, context: { current_user: user }, field: nil) }

  specify { expect(described_class).to require_graphql_authorizations(:update_issue) }

  describe '#resolve' do
    let(:locked) { true }

    subject { mutation.resolve(project_path: issue.project.full_path, iid: issue.iid, locked: locked) }

    it_behaves_like 'permission level for issue mutation is correctly verified'

    context 'when the user can update the issue' do
      let(:mutated_issue) { subject[:issue] }

      before do
        issue.project.add_developer(user)
      end

      it 'returns the issue as discussion locked' do
        expect(mutated_issue).to eq(issue)
        expect(mutated_issue).to be_discussion_locked
        expect(subject[:errors]).to be_empty
      end

      context 'when passing locked as false' do
        let(:locked) { false }

        it 'unlocks the discussion' do
          issue.update!(discussion_locked: true)

          expect(mutated_issue).not_to be_discussion_locked
        end
      end
    end
  end
end