summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/lib/gitlab/redis/multi_store_feature_flags_shared_examples.rb
blob: a5e4df1c272f6c826725d7c6ce997b3f9598dfdf (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
# frozen_string_literal: true

RSpec.shared_examples 'multi store feature flags' do |use_primary_and_secondary_stores, use_primary_store_as_default|
  context "with feature flag :#{use_primary_and_secondary_stores} is enabled" do
    before do
      stub_feature_flags(use_primary_and_secondary_stores => true)
    end

    it 'multi store is enabled' do
      subject.with do |redis_instance|
        expect(redis_instance.use_primary_and_secondary_stores?).to be true
      end
    end
  end

  context "with feature flag :#{use_primary_and_secondary_stores} is disabled" do
    before do
      stub_feature_flags(use_primary_and_secondary_stores => false)
    end

    it 'multi store is disabled' do
      subject.with do |redis_instance|
        expect(redis_instance.use_primary_and_secondary_stores?).to be false
      end
    end
  end

  context "with feature flag :#{use_primary_store_as_default} is enabled" do
    before do
      stub_feature_flags(use_primary_store_as_default => true)
    end

    it 'primary store is enabled' do
      subject.with do |redis_instance|
        expect(redis_instance.use_primary_store_as_default?).to be true
      end
    end
  end

  context "with feature flag :#{use_primary_store_as_default} is disabled" do
    before do
      stub_feature_flags(use_primary_store_as_default => false)
    end

    it 'primary store is disabled' do
      subject.with do |redis_instance|
        expect(redis_instance.use_primary_store_as_default?).to be false
      end
    end
  end
end