debian-mirror-gitlab/spec/models/concerns/partitioned_table_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
1 KiB
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe PartitionedTable do
describe '.partitioned_by' do
subject { my_class.partitioned_by(key, strategy: :monthly) }
let(:key) { :foo }
let(:my_class) do
Class.new do
include PartitionedTable
end
end
2021-09-30 23:02:18 +05:30
context 'with keyword arguments passed to the strategy' do
subject { my_class.partitioned_by(key, strategy: :monthly, retain_for: 3.months) }
it 'passes the keyword arguments to the strategy' do
expect(Gitlab::Database::Partitioning::MonthlyStrategy).to receive(:new).with(my_class, key, retain_for: 3.months).and_call_original
subject
end
end
2020-07-28 23:09:34 +05:30
it 'assigns the MonthlyStrategy as the partitioning strategy' do
subject
expect(my_class.partitioning_strategy).to be_a(Gitlab::Database::Partitioning::MonthlyStrategy)
end
it 'passes the partitioning key to the strategy instance' do
subject
expect(my_class.partitioning_strategy.partitioning_key).to eq(key)
end
end
end