summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/lib/gitlab/repository_size_checker_shared_examples.rb
blob: bb909ffe82a959ccdbc6a582f18c232b93e05dc4 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
# frozen_string_literal: true

RSpec.shared_examples 'checker size above limit' do
  context 'when size is above the limit' do
    let(:current_size) { 100 }

    it 'returns true' do
      expect(subject.above_size_limit?).to eq(true)
    end
  end
end

RSpec.shared_examples 'checker size not over limit' do
  it 'returns false when not over the limit' do
    expect(subject.above_size_limit?).to eq(false)
  end
end

RSpec.shared_examples 'checker size exceeded' do
  context 'when current size is below or equal to the limit' do
    let(:current_size) { 50 }

    it 'returns zero' do
      expect(subject.exceeded_size).to eq(0)
    end
  end

  context 'when current size is over the limit' do
    let(:current_size) { 51 }

    it 'returns zero' do
      expect(subject.exceeded_size).to eq(1.megabytes)
    end
  end

  context 'when change size will be over the limit' do
    let(:current_size) { 50 }

    it 'returns zero' do
      expect(subject.exceeded_size(1.megabytes)).to eq(1.megabytes)
    end
  end

  context 'when change size will not be over the limit' do
    let(:current_size) { 49 }

    it 'returns zero' do
      expect(subject.exceeded_size(1.megabytes)).to eq(0)
    end
  end
end