summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/throttle_spec.rb
blob: 674646a5f06365c85b316a66b9e2d0ce7a8892c9 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# frozen_string_literal: true

require 'spec_helper'

describe Gitlab::Throttle do
  describe '.protected_paths_enabled?' do
    subject { described_class.protected_paths_enabled? }

    context 'when omnibus protected paths throttle should be used' do
      before do
        expect(described_class).to receive(:should_use_omnibus_protected_paths?).and_return(true)
      end

      it { is_expected.to be_falsey }
    end

    context 'when omnibus protected paths throttle should not be used' do
      before do
        expect(described_class).to receive(:should_use_omnibus_protected_paths?).and_return(false)
      end

      it 'returns Application Settings throttle_protected_paths_enabled?' do
        expect(Gitlab::CurrentSettings.current_application_settings).to receive(:throttle_protected_paths_enabled?)

        subject
      end
    end
  end

  describe '.should_use_omnibus_protected_paths?' do
    subject { described_class.should_use_omnibus_protected_paths? }

    context 'when rack_attack.admin_area_protected_paths_enabled config is unspecified' do
      context 'when the omnibus protected paths throttle has been recently used (it has data)' do
        before do
          expect(described_class).to receive(:omnibus_protected_paths_present?).and_return(true)
        end

        it { is_expected.to be_truthy }
      end

      context 'when the omnibus protected paths throttle has not been recently used' do
        before do
          expect(described_class).to receive(:omnibus_protected_paths_present?).and_return(false)
        end

        it { is_expected.to be_falsey }
      end
    end

    context 'when rack_attack.admin_area_protected_paths_enabled config is false' do
      before do
        stub_config(rack_attack: {
          admin_area_protected_paths_enabled: false
        })
      end

      context 'when the omnibus protected paths throttle has been recently used (it has data)' do
        before do
          expect(described_class).to receive(:omnibus_protected_paths_present?).and_return(true)
        end

        it { is_expected.to be_truthy }
      end

      context 'when the omnibus protected paths throttle has not been recently used' do
        before do
          expect(described_class).to receive(:omnibus_protected_paths_present?).and_return(false)
        end

        it { is_expected.to be_falsey }
      end
    end

    context 'when rack_attack.admin_area_protected_paths_enabled config is true' do
      before do
        stub_config(rack_attack: {
          admin_area_protected_paths_enabled: true
        })

        expect(described_class).not_to receive(:omnibus_protected_paths_present?)
      end

      it { is_expected.to be_falsey }
    end
  end
end