debian-mirror-gitlab/spec/support/shared_examples/models/concerns/limitable_shared_examples.rb
2022-07-23 20:15:48 +02:00

63 lines
1.7 KiB
Ruby

# frozen_string_literal: true
RSpec.shared_examples 'includes Limitable concern' do
describe '#exceeds_limits?' do
let(:plan_limits) { create(:plan_limits, :default_plan) }
context 'without plan limits configured' do
it { expect(subject.exceeds_limits?).to eq false }
end
context 'without plan limits configured' do
before do
plan_limits.update!(subject.class.limit_name => 1)
end
it { expect(subject.exceeds_limits?).to eq false }
context 'with an existing model' do
before do
subject.clone.save!
end
it { expect(subject.exceeds_limits?).to eq true }
end
end
end
describe 'validations' do
let(:plan_limits) { create(:plan_limits, :default_plan) }
it { is_expected.to be_a(Limitable) }
context 'without plan limits configured' do
it 'can create new models' do
expect { subject.save! }.to change { described_class.count }
end
end
context 'with plan limits configured' do
before do
plan_limits.update!(subject.class.limit_name => 1)
end
it 'can create new models' do
expect { subject.save! }.to change { described_class.count }
end
context 'with an existing model' do
before do
subject.clone.save!
end
it 'cannot create new models exceeding the plan limits' do
expect do
expect { subject.save! }.to raise_error(ActiveRecord::RecordInvalid)
end
.not_to change { described_class.count }
expect(subject.errors[:base]).to contain_exactly("Maximum number of #{subject.class.limit_name.humanize(capitalize: false)} (1) exceeded")
end
end
end
end
end