summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/build/cache_spec.rb
blob: 9188045988b8a6036e25db40bbecd1edad705b0e (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Build::Cache do
  describe '.initialize' do
    context 'when the multiple cache feature flag is disabled' do
      before do
        stub_feature_flags(multiple_cache_per_job: false)
      end

      it 'instantiates a cache seed' do
        cache_config = { key: 'key-a' }
        pipeline = double(::Ci::Pipeline)
        cache_seed = double(Gitlab::Ci::Pipeline::Seed::Build::Cache)
        allow(Gitlab::Ci::Pipeline::Seed::Build::Cache).to receive(:new).and_return(cache_seed)

        cache = described_class.new(cache_config, pipeline)

        expect(Gitlab::Ci::Pipeline::Seed::Build::Cache).to have_received(:new).with(pipeline, cache_config)
        expect(cache.instance_variable_get(:@cache)).to eq(cache_seed)
      end
    end

    context 'when the multiple cache feature flag is enabled' do
      context 'when the cache is an array' do
        it 'instantiates an array of cache seeds' do
          cache_config = [{ key: 'key-a' }, { key: 'key-b' }]
          pipeline = double(::Ci::Pipeline)
          cache_seed_a = double(Gitlab::Ci::Pipeline::Seed::Build::Cache)
          cache_seed_b = double(Gitlab::Ci::Pipeline::Seed::Build::Cache)
          allow(Gitlab::Ci::Pipeline::Seed::Build::Cache).to receive(:new).and_return(cache_seed_a, cache_seed_b)

          cache = described_class.new(cache_config, pipeline)

          expect(Gitlab::Ci::Pipeline::Seed::Build::Cache).to have_received(:new).with(pipeline, { key: 'key-a' })
          expect(Gitlab::Ci::Pipeline::Seed::Build::Cache).to have_received(:new).with(pipeline, { key: 'key-b' })
          expect(cache.instance_variable_get(:@cache)).to eq([cache_seed_a, cache_seed_b])
        end
      end

      context 'when the cache is a hash' do
        it 'instantiates a cache seed' do
          cache_config = { key: 'key-a' }
          pipeline = double(::Ci::Pipeline)
          cache_seed = double(Gitlab::Ci::Pipeline::Seed::Build::Cache)
          allow(Gitlab::Ci::Pipeline::Seed::Build::Cache).to receive(:new).and_return(cache_seed)

          cache = described_class.new(cache_config, pipeline)

          expect(Gitlab::Ci::Pipeline::Seed::Build::Cache).to have_received(:new).with(pipeline, cache_config)
          expect(cache.instance_variable_get(:@cache)).to eq([cache_seed])
        end
      end
    end
  end

  describe '#cache_attributes' do
    context 'when the multiple cache feature flag is disabled' do
      before do
        stub_feature_flags(multiple_cache_per_job: false)
      end

      it "returns the cache seed's build attributes" do
        cache_config = { key: 'key-a' }
        pipeline = double(::Ci::Pipeline)
        cache = described_class.new(cache_config, pipeline)

        attributes = cache.cache_attributes

        expect(attributes).to eq({
          options: { cache: { key: 'key-a' } }
        })
      end
    end

    context 'when the multiple cache feature flag is enabled' do
      context 'when there are no caches' do
        it 'returns an empty hash' do
          cache_config = []
          pipeline = double(::Ci::Pipeline)
          cache = described_class.new(cache_config, pipeline)

          attributes = cache.cache_attributes

          expect(attributes).to eq({})
        end
      end

      context 'when there are caches' do
        it 'returns the structured attributes for the caches' do
          cache_config = [{ key: 'key-a' }, { key: 'key-b' }]
          pipeline = double(::Ci::Pipeline)
          cache = described_class.new(cache_config, pipeline)

          attributes = cache.cache_attributes

          expect(attributes).to eq({
            options: { cache: cache_config }
          })
        end
      end
    end
  end
end