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

versioned_state_uploader_spec.rb « terraform « uploaders « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecc3f94348036ef739c783b69ad986426e89eee3 (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
# 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 UUID of the terraform state record' do
      expect(subject.filename).to eq("#{model.version}.tfstate")
    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
  end
end