debian-mirror-gitlab/spec/lib/gitlab/throttle_spec.rb

62 lines
1.7 KiB
Ruby
Raw Normal View History

2020-01-01 13:55:28 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::Throttle do
2020-01-01 13:55:28 +05:30
describe '.protected_paths_enabled?' do
subject { described_class.protected_paths_enabled? }
2020-05-24 23:13:21 +05:30
it 'returns Application Settings throttle_protected_paths_enabled?' do
expect(Gitlab::CurrentSettings.current_application_settings).to receive(:throttle_protected_paths_enabled?)
2020-01-01 13:55:28 +05:30
2020-05-24 23:13:21 +05:30
subject
2020-01-01 13:55:28 +05:30
end
end
2021-01-29 00:20:46 +05:30
describe '.bypass_header' do
subject { described_class.bypass_header }
it 'is nil' do
expect(subject).to be_nil
end
context 'when a header is configured' do
before do
stub_env('GITLAB_THROTTLE_BYPASS_HEADER', 'My-Custom-Header')
end
it 'is a funny upper case rack key' do
expect(subject).to eq('HTTP_MY_CUSTOM_HEADER')
end
end
end
2021-03-08 18:12:59 +05:30
describe '.rate_limiting_response_text' do
subject { described_class.rate_limiting_response_text }
context 'when the setting is not present' do
before do
stub_application_setting(rate_limiting_response_text: '')
end
it 'returns the default value with a trailing newline' do
expect(subject).to eq(described_class::DEFAULT_RATE_LIMITING_RESPONSE_TEXT + "\n")
end
end
context 'when the setting is present' do
let(:response_text) do
'Rate limit exceeded; see https://docs.gitlab.com/ee/user/gitlab_com/#gitlabcom-specific-rate-limits for more details'
end
before do
stub_application_setting(rate_limiting_response_text: response_text)
end
it 'returns the default value with a trailing newline' do
expect(subject).to eq(response_text + "\n")
end
end
end
2020-01-01 13:55:28 +05:30
end