summaryrefslogtreecommitdiff
path: root/spec/migrations/20221102090943_create_second_partition_for_builds_metadata_spec.rb
blob: b4bd51363830f5c4ae19455c7e89d898d16c1223 (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
# frozen_string_literal: true

require 'spec_helper'
require_migration!

RSpec.describe CreateSecondPartitionForBuildsMetadata, :migration, feature_category: :continuous_integration do
  let(:migration) { described_class.new }
  let(:partitions) { table(:ci_partitions) }

  describe '#up' do
    context 'when on sass' do
      before do
        allow(Gitlab).to receive(:com?).and_return(true)
      end

      it 'creates a new partition' do
        expect { migrate! }.to change { partitions_count }.by(1)
      end
    end

    context 'when self-managed' do
      before do
        allow(Gitlab).to receive(:com?).and_return(false)
      end

      it 'does not create the partition' do
        expect { migrate! }.not_to change { partitions_count }
      end
    end
  end

  describe '#down' do
    context 'when on sass' do
      before do
        allow(Gitlab).to receive(:com?).and_return(true)
      end

      it 'removes the partition' do
        migrate!

        expect { migration.down }.to change { partitions_count }.by(-1)
      end
    end

    context 'when self-managed' do
      before do
        allow(Gitlab).to receive(:com?).and_return(false)
      end

      it 'does not change the partitions count' do
        migrate!

        expect { migration.down }.not_to change { partitions_count }
      end
    end
  end

  def partitions_count
    Gitlab::Database::PostgresPartition.for_parent_table(:p_ci_builds_metadata).size
  end
end