summaryrefslogtreecommitdiff
path: root/spec/uploaders/terraform/versioned_state_uploader_spec.rb
blob: eeb54cb61c702aabded281f62f655a5518cc3d06 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Terraform::VersionedStateUploader do
  subject { model.file }

  let(:model) { create(:terraform_state_version, :with_file) }

  before do
    stub_terraform_state_object_storage
  end

  describe '#filename' do
    it 'contains the version of the terraform state record' do
      expect(subject.filename).to eq("#{model.version}.tfstate")
    end

    context 'legacy state with versioning disabled' do
      let(:state) { create(:legacy_terraform_state) }
      let(:model) { create(:terraform_state_version, terraform_state: state) }

      it 'contains the UUID of the terraform state record' do
        expect(subject.filename).to eq("#{model.uuid}.tfstate")
      end
    end
  end

  describe '#store_dir' do
    it 'hashes the project ID and UUID' do
      expect(Gitlab::HashedPath).to receive(:new)
        .with(model.uuid, root_hash: model.project_id)
        .and_return(:store_dir)

      expect(subject.store_dir).to eq(:store_dir)
    end

    context 'legacy state with versioning disabled' do
      let(:state) { create(:legacy_terraform_state) }
      let(:model) { create(:terraform_state_version, terraform_state: state) }

      it 'contains the ID of the project' do
        expect(subject.store_dir).to include(model.project_id.to_s)
      end
    end
  end
end