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

destroy_service_spec.rb « states « terraform « services « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5acf32cd73ce38ae42b94e5ecbd278be27298e43 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Terraform::States::DestroyService do
  let_it_be(:state) { create(:terraform_state, :with_version, :deletion_in_progress) }

  let(:file) { instance_double(Terraform::StateUploader, relative_path: 'path') }

  before do
    allow_next_found_instance_of(Terraform::StateVersion) do |version|
      allow(version).to receive(:file).and_return(file)
    end
  end

  describe '#execute' do
    subject { described_class.new(state).execute }

    it 'removes version files from object storage, followed by the state record' do
      expect(file).to receive(:remove!).once
      expect(state).to receive(:destroy!)

      subject
    end

    context 'state is not marked for deletion' do
      let(:state) { create(:terraform_state) }

      it 'does not delete the state' do
        expect(state).not_to receive(:destroy!)

        subject
      end
    end
  end
end