summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/database/partitioning/multi_database_partition_dropper_spec.rb
blob: 56d6ebb7aff6866f0fe3b48e46c856a1f0f7f01e (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Database::Partitioning::MultiDatabasePartitionDropper, '#drop_detached_partitions' do
  subject(:drop_detached_partitions) { multi_db_dropper.drop_detached_partitions }

  let(:multi_db_dropper) { described_class.new }

  let(:connection_wrapper1) { double(scope: scope1) }
  let(:connection_wrapper2) { double(scope: scope2) }

  let(:scope1) { double(connection: connection1) }
  let(:scope2) { double(connection: connection2) }

  let(:connection1) { double('connection') }
  let(:connection2) { double('connection') }

  let(:dropper_class) { Gitlab::Database::Partitioning::DetachedPartitionDropper }
  let(:dropper1) { double('partition dropper') }
  let(:dropper2) { double('partition dropper') }

  before do
    allow(multi_db_dropper).to receive(:databases).and_return({ db1: connection_wrapper1, db2: connection_wrapper2 })
  end

  it 'drops detached partitions for each database' do
    expect(Gitlab::Database::SharedModel).to receive(:using_connection).with(connection1).and_yield.ordered
    expect(dropper_class).to receive(:new).and_return(dropper1).ordered
    expect(dropper1).to receive(:perform)

    expect(Gitlab::Database::SharedModel).to receive(:using_connection).with(connection2).and_yield.ordered
    expect(dropper_class).to receive(:new).and_return(dropper2).ordered
    expect(dropper2).to receive(:perform)

    drop_detached_partitions
  end
end