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

unlock_spec.rb « state « terraform « mutations « graphql « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4918a1c4abfcfc5c60367ba906b6318fdb1d2c85 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Mutations::Terraform::State::Unlock do
  let_it_be(:user) { create(:user) }
  let_it_be(:state) { create(:terraform_state, :locked) }

  let(:mutation) do
    described_class.new(
      object: double,
      context: { current_user: user },
      field: double
    )
  end

  it { expect(described_class.graphql_name).to eq('TerraformStateUnlock') }
  it { expect(described_class).to require_graphql_authorizations(:admin_terraform_state) }

  describe '#resolve' do
    let(:global_id) { state.to_global_id }

    subject { mutation.resolve(id: global_id) }

    context 'user does not have permission' do
      it 'raises an error', :aggregate_failures do
        expect { subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
        expect(state.reload).to be_locked
      end
    end

    context 'user has permission' do
      before do
        state.project.add_maintainer(user)
      end

      it 'unlocks the state', :aggregate_failures do
        expect(subject).to eq(errors: [])
        expect(state.reload).not_to be_locked
      end

      context 'state is already unlocked' do
        let(:state) { create(:terraform_state) }

        it 'does not modify the state' do
          expect(subject).to eq(errors: [])
          expect(state.reload).not_to be_locked
        end
      end
    end

    context 'with invalid params' do
      let(:global_id) { user.to_global_id }

      it 'raises an error', :aggregate_failures do
        expect { subject }.to raise_error(Gitlab::Graphql::Errors::ResourceNotAvailable)
        expect(state.reload).to be_locked
      end
    end
  end
end