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 62 63
|
# frozen_string_literal: true
RSpec.shared_examples 'includes Limitable concern' do
describe '#exceeds_limits?' do
let_it_be_with_reload(: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_it_be_with_reload(: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
|