Welcome to mirror list, hosted at ThFree Co, Russian Federation.

limitable_shared_examples.rb « concerns « models « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d21823661f837e4134d0dd687c58f657d5cee9aa (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
# frozen_string_literal: true

RSpec.shared_examples 'includes Limitable concern' do
  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.dup.save
        end

        it 'cannot create new models exceeding the plan limits' do
          expect { subject.save }.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