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 }
|
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
|
|
|
|
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
|
|
|
|
|
|
|
context 'repository storages inclussion' do
|
|
|
|
before do
|
|
|
|
storages = { 'custom' => 'tmp/tests/custom_repositories' }
|
|
|
|
allow(Gitlab.config.repositories).to receive(:storages).and_return(storages)
|
|
|
|
end
|
|
|
|
|
|
|
|
it { is_expected.to allow_value('custom').for(:repository_storage) }
|
|
|
|
it { is_expected.not_to allow_value('alternative').for(:repository_storage) }
|
|
|
|
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
|
2015-01-08 12:53:35 -05:00
|
|
|
end
|