2015-01-08 12:53:35 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe ApplicationSetting, models: true do
|
2015-11-05 10:22:37 -05:00
|
|
|
let(:setting) { ApplicationSetting.create_from_defaults }
|
2015-05-02 09:53:32 -04:00
|
|
|
|
2015-11-05 10:22:37 -05:00
|
|
|
it { expect(setting).to be_valid }
|
2017-04-24 15:12:05 -04:00
|
|
|
it { expect(setting.uuid).to be_present }
|
2015-05-02 09:53:32 -04:00
|
|
|
|
2015-12-01 18:45:36 -05:00
|
|
|
describe 'validations' do
|
|
|
|
let(:http) { 'http://example.com' }
|
|
|
|
let(:https) { 'https://example.com' }
|
|
|
|
let(:ftp) { 'ftp://example.com' }
|
|
|
|
|
|
|
|
it { is_expected.to allow_value(nil).for(:home_page_url) }
|
|
|
|
it { is_expected.to allow_value(http).for(:home_page_url) }
|
|
|
|
it { is_expected.to allow_value(https).for(:home_page_url) }
|
|
|
|
it { is_expected.not_to allow_value(ftp).for(:home_page_url) }
|
|
|
|
|
|
|
|
it { is_expected.to allow_value(nil).for(:after_sign_out_path) }
|
|
|
|
it { is_expected.to allow_value(http).for(:after_sign_out_path) }
|
|
|
|
it { is_expected.to allow_value(https).for(:after_sign_out_path) }
|
|
|
|
it { is_expected.not_to allow_value(ftp).for(:after_sign_out_path) }
|
2016-02-05 04:12:36 -05:00
|
|
|
|
2016-05-05 03:34:51 -04:00
|
|
|
describe 'disabled_oauth_sign_in_sources validations' do
|
|
|
|
before do
|
|
|
|
allow(Devise).to receive(:omniauth_providers).and_return([:github])
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to allow_value(['github']).for(:disabled_oauth_sign_in_sources) }
|
|
|
|
it { is_expected.not_to allow_value(['test']).for(:disabled_oauth_sign_in_sources) }
|
|
|
|
end
|
2016-05-04 08:57:00 -04:00
|
|
|
|
2017-02-14 11:19:36 -05:00
|
|
|
describe 'default_artifacts_expire_in' do
|
2017-02-16 10:40:13 -05:00
|
|
|
it 'sets an error if it cannot parse' do
|
2017-02-14 11:19:36 -05:00
|
|
|
setting.update(default_artifacts_expire_in: 'a')
|
|
|
|
|
2017-02-16 10:40:13 -05:00
|
|
|
expect_invalid
|
2017-02-14 11:19:36 -05:00
|
|
|
end
|
|
|
|
|
2017-02-16 10:40:13 -05:00
|
|
|
it 'sets an error if it is blank' do
|
|
|
|
setting.update(default_artifacts_expire_in: ' ')
|
2017-02-15 02:31:25 -05:00
|
|
|
|
2017-02-16 10:40:13 -05:00
|
|
|
expect_invalid
|
2017-02-15 02:31:25 -05:00
|
|
|
end
|
|
|
|
|
2017-02-14 11:19:36 -05:00
|
|
|
it 'sets the value if it is valid' do
|
|
|
|
setting.update(default_artifacts_expire_in: '30 days')
|
|
|
|
|
|
|
|
expect(setting).to be_valid
|
|
|
|
expect(setting.default_artifacts_expire_in).to eq('30 days')
|
|
|
|
end
|
|
|
|
|
2017-02-16 10:40:13 -05:00
|
|
|
it 'sets the value if it is 0' do
|
|
|
|
setting.update(default_artifacts_expire_in: '0')
|
2017-02-14 11:19:36 -05:00
|
|
|
|
|
|
|
expect(setting).to be_valid
|
2017-02-16 10:40:13 -05:00
|
|
|
expect(setting.default_artifacts_expire_in).to eq('0')
|
|
|
|
end
|
|
|
|
|
|
|
|
def expect_invalid
|
|
|
|
expect(setting).to be_invalid
|
|
|
|
expect(setting.errors.messages)
|
2017-02-21 05:46:52 -05:00
|
|
|
.to have_key(:default_artifacts_expire_in)
|
2017-02-14 11:19:36 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-02-05 04:12:36 -05:00
|
|
|
it { is_expected.to validate_presence_of(:max_attachment_size) }
|
|
|
|
|
|
|
|
it do
|
|
|
|
is_expected.to validate_numericality_of(:max_attachment_size)
|
|
|
|
.only_integer
|
|
|
|
.is_greater_than(0)
|
|
|
|
end
|
2016-02-09 09:51:06 -05:00
|
|
|
|
|
|
|
it_behaves_like 'an object with email-formated attributes', :admin_notification_email do
|
|
|
|
subject { setting }
|
|
|
|
end
|
2016-06-29 23:35:00 -04:00
|
|
|
|
2016-11-03 10:12:20 -04:00
|
|
|
# Upgraded databases will have this sort of content
|
|
|
|
context 'repository_storages is a String, not an Array' do
|
|
|
|
before { setting.__send__(:raw_write_attribute, :repository_storages, 'default') }
|
|
|
|
|
|
|
|
it { expect(setting.repository_storages_before_type_cast).to eq('default') }
|
|
|
|
it { expect(setting.repository_storages).to eq(['default']) }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'repository storages' do
|
2016-06-29 23:35:00 -04:00
|
|
|
before do
|
2016-11-03 10:12:20 -04:00
|
|
|
storages = {
|
|
|
|
'custom1' => 'tmp/tests/custom_repositories_1',
|
|
|
|
'custom2' => 'tmp/tests/custom_repositories_2',
|
2017-05-03 07:22:03 -04:00
|
|
|
'custom3' => 'tmp/tests/custom_repositories_3'
|
2016-11-03 10:12:20 -04:00
|
|
|
|
|
|
|
}
|
2016-06-29 23:35:00 -04:00
|
|
|
allow(Gitlab.config.repositories).to receive(:storages).and_return(storages)
|
|
|
|
end
|
|
|
|
|
2016-11-03 10:12:20 -04:00
|
|
|
describe 'inclusion' do
|
|
|
|
it { is_expected.to allow_value('custom1').for(:repository_storages) }
|
2017-02-22 12:46:57 -05:00
|
|
|
it { is_expected.to allow_value(%w(custom2 custom3)).for(:repository_storages) }
|
2016-11-03 10:12:20 -04:00
|
|
|
it { is_expected.not_to allow_value('alternative').for(:repository_storages) }
|
2017-02-22 12:46:57 -05:00
|
|
|
it { is_expected.not_to allow_value(%w(alternative custom1)).for(:repository_storages) }
|
2016-11-03 10:12:20 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe 'presence' do
|
|
|
|
it { is_expected.not_to allow_value([]).for(:repository_storages) }
|
|
|
|
it { is_expected.not_to allow_value("").for(:repository_storages) }
|
|
|
|
it { is_expected.not_to allow_value(nil).for(:repository_storages) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '.pick_repository_storage' do
|
|
|
|
it 'uses Array#sample to pick a random storage' do
|
|
|
|
array = double('array', sample: 'random')
|
|
|
|
expect(setting).to receive(:repository_storages).and_return(array)
|
|
|
|
|
|
|
|
expect(setting.pick_repository_storage).to eq('random')
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#repository_storage' do
|
|
|
|
it 'returns the first storage' do
|
2017-02-22 12:46:57 -05:00
|
|
|
setting.repository_storages = %w(good bad)
|
2016-11-03 10:12:20 -04:00
|
|
|
|
|
|
|
expect(setting.repository_storage).to eq('good')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#repository_storage=' do
|
|
|
|
it 'overwrites repository_storages' do
|
|
|
|
setting.repository_storage = 'overwritten'
|
|
|
|
|
|
|
|
expect(setting.repository_storages).to eq(['overwritten'])
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-06-29 23:35:00 -04:00
|
|
|
end
|
2016-10-27 08:59:52 -04:00
|
|
|
|
|
|
|
context 'housekeeping settings' do
|
|
|
|
it { is_expected.not_to allow_value(0).for(:housekeeping_incremental_repack_period) }
|
|
|
|
|
|
|
|
it 'wants the full repack period to be longer than the incremental repack period' do
|
|
|
|
subject.housekeeping_incremental_repack_period = 2
|
|
|
|
subject.housekeeping_full_repack_period = 1
|
|
|
|
|
|
|
|
expect(subject).not_to be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'wants the gc period to be longer than the full repack period' do
|
|
|
|
subject.housekeeping_full_repack_period = 2
|
|
|
|
subject.housekeeping_gc_period = 1
|
|
|
|
|
|
|
|
expect(subject).not_to be_valid
|
|
|
|
end
|
|
|
|
end
|
2015-12-01 18:45:36 -05:00
|
|
|
end
|
|
|
|
|
2015-11-05 10:22:37 -05:00
|
|
|
context 'restricted signup domains' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'sets single domain' do
|
2016-07-15 19:30:38 -04:00
|
|
|
setting.domain_whitelist_raw = 'example.com'
|
|
|
|
expect(setting.domain_whitelist).to eq(['example.com'])
|
2015-05-02 09:53:32 -04:00
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'sets multiple domains with spaces' do
|
2016-07-15 19:30:38 -04:00
|
|
|
setting.domain_whitelist_raw = 'example.com *.example.com'
|
|
|
|
expect(setting.domain_whitelist).to eq(['example.com', '*.example.com'])
|
2015-05-02 09:53:32 -04:00
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'sets multiple domains with newlines and a space' do
|
2016-07-15 19:30:38 -04:00
|
|
|
setting.domain_whitelist_raw = "example.com\n *.example.com"
|
|
|
|
expect(setting.domain_whitelist).to eq(['example.com', '*.example.com'])
|
2015-05-02 09:53:32 -04:00
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'sets multiple domains with commas' do
|
2016-07-15 19:30:38 -04:00
|
|
|
setting.domain_whitelist_raw = "example.com, *.example.com"
|
|
|
|
expect(setting.domain_whitelist).to eq(['example.com', '*.example.com'])
|
2015-05-02 09:53:32 -04:00
|
|
|
end
|
|
|
|
end
|
2016-07-14 14:19:40 -04:00
|
|
|
|
|
|
|
context 'blacklisted signup domains' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'sets single domain' do
|
2016-07-14 14:19:40 -04:00
|
|
|
setting.domain_blacklist_raw = 'example.com'
|
2016-07-15 14:20:45 -04:00
|
|
|
expect(setting.domain_blacklist).to contain_exactly('example.com')
|
2016-07-14 14:19:40 -04:00
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'sets multiple domains with spaces' do
|
2016-07-14 14:19:40 -04:00
|
|
|
setting.domain_blacklist_raw = 'example.com *.example.com'
|
2016-07-15 14:20:45 -04:00
|
|
|
expect(setting.domain_blacklist).to contain_exactly('example.com', '*.example.com')
|
2016-07-14 14:19:40 -04:00
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'sets multiple domains with newlines and a space' do
|
2016-07-14 14:19:40 -04:00
|
|
|
setting.domain_blacklist_raw = "example.com\n *.example.com"
|
2016-07-15 14:20:45 -04:00
|
|
|
expect(setting.domain_blacklist).to contain_exactly('example.com', '*.example.com')
|
2016-07-14 14:19:40 -04:00
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'sets multiple domains with commas' do
|
2016-07-14 14:19:40 -04:00
|
|
|
setting.domain_blacklist_raw = "example.com, *.example.com"
|
2016-07-15 14:20:45 -04:00
|
|
|
expect(setting.domain_blacklist).to contain_exactly('example.com', '*.example.com')
|
2016-07-14 14:19:40 -04:00
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'sets multiple domains with semicolon' do
|
2016-07-18 18:49:33 -04:00
|
|
|
setting.domain_blacklist_raw = "example.com; *.example.com"
|
|
|
|
expect(setting.domain_blacklist).to contain_exactly('example.com', '*.example.com')
|
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'sets multiple domains with mixture of everything' do
|
2016-07-18 18:49:33 -04:00
|
|
|
setting.domain_blacklist_raw = "example.com; *.example.com\n test.com\sblock.com yes.com"
|
|
|
|
expect(setting.domain_blacklist).to contain_exactly('example.com', '*.example.com', 'test.com', 'block.com', 'yes.com')
|
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'sets multiple domain with file' do
|
2016-07-18 18:49:33 -04:00
|
|
|
setting.domain_blacklist_file = File.open(Rails.root.join('spec/fixtures/', 'domain_blacklist.txt'))
|
2016-07-15 14:20:45 -04:00
|
|
|
expect(setting.domain_blacklist).to contain_exactly('example.com', 'test.com', 'foo.bar')
|
2016-07-14 14:19:40 -04:00
|
|
|
end
|
|
|
|
end
|
2017-05-09 15:40:19 -04:00
|
|
|
|
|
|
|
describe 'usage ping settings' do
|
|
|
|
context 'when the usage ping is disabled in gitlab.yml' do
|
|
|
|
before do
|
|
|
|
allow(Settings.gitlab).to receive(:usage_ping_enabled).and_return(false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not allow the usage ping to be configured' do
|
|
|
|
expect(setting.usage_ping_can_be_configured?).to be_falsey
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the usage ping is disabled in the DB' do
|
|
|
|
before do
|
|
|
|
setting.usage_ping_enabled = false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false for usage_ping_enabled' do
|
|
|
|
expect(setting.usage_ping_enabled).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the usage ping is enabled in the DB' do
|
|
|
|
before do
|
|
|
|
setting.usage_ping_enabled = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false for usage_ping_enabled' do
|
|
|
|
expect(setting.usage_ping_enabled).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the usage ping is enabled in gitlab.yml' do
|
|
|
|
before do
|
|
|
|
allow(Settings.gitlab).to receive(:usage_ping_enabled).and_return(true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows the usage ping to be configured' do
|
|
|
|
expect(setting.usage_ping_can_be_configured?).to be_truthy
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the usage ping is disabled in the DB' do
|
|
|
|
before do
|
|
|
|
setting.usage_ping_enabled = false
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns false for usage_ping_enabled' do
|
|
|
|
expect(setting.usage_ping_enabled).to be_falsey
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when the usage ping is enabled in the DB' do
|
|
|
|
before do
|
|
|
|
setting.usage_ping_enabled = true
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns true for usage_ping_enabled' do
|
|
|
|
expect(setting.usage_ping_enabled).to be_truthy
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-01-08 12:53:35 -05:00
|
|
|
end
|