summaryrefslogtreecommitdiff
path: root/spec/requests/api/graphql/terraform/state/unlock_spec.rb
blob: e90730f2d8ffafb3c4fd15f9786a5c8840ae29ee (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'unlock a terraform state' do
  include GraphqlHelpers

  let_it_be(:project) { create(:project) }
  let_it_be(:user) { create(:user, maintainer_projects: [project]) }

  let(:state) { create(:terraform_state, :locked, project: project) }
  let(:mutation) { graphql_mutation(:terraform_state_unlock, id: state.to_global_id.to_s) }

  before do
    expect(state).to be_locked
    post_graphql_mutation(mutation, current_user: user)
  end

  include_examples 'a working graphql query'

  it 'unlocks the state' do
    expect(state.reload).not_to be_locked
  end
end