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
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe '1_settings', feature_category: :shared do
include_context 'when loading 1_settings initializer'
it 'settings do not change after reload', quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/501317' do
original_settings = Settings.to_h
load_settings
new_settings = Settings.to_h
# Gitlab::Pages::Settings is a SimpleDelegator, so each time the settings
# are reloaded a new SimpleDelegator wraps the original object. Convert
# the settings to a Hash to ensure the comparison works.
[new_settings, original_settings].each do |settings|
settings['pages'] = settings['pages'].to_h
end
expect(new_settings).to eq(original_settings)
end
describe 'DNS rebinding protection' do
subject(:dns_rebinding_protection_enabled) { Settings.gitlab.dns_rebinding_protection_enabled }
let(:http_proxy) { nil }
before do
# Reset it, because otherwise we might memoize the value across tests.
Settings.gitlab['dns_rebinding_protection_enabled'] = nil
stub_env('http_proxy', http_proxy)
load_settings
end
it { is_expected.to be(true) }
context 'when an HTTP proxy environment variable is set' do
let(:http_proxy) { 'http://myproxy.com:8080' }
it { is_expected.to be(false) }
end
end
end
|