2015-01-22 12:40:03 -05:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: application_settings
|
|
|
|
#
|
2015-03-01 10:06:46 -05:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# default_projects_limit :integer
|
|
|
|
# signup_enabled :boolean
|
|
|
|
# signin_enabled :boolean
|
|
|
|
# gravatar_enabled :boolean
|
|
|
|
# sign_in_text :text
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# home_page_url :string(255)
|
|
|
|
# default_branch_protection :integer default(2)
|
|
|
|
# twitter_sharing_enabled :boolean default(TRUE)
|
|
|
|
# restricted_visibility_levels :text
|
2015-08-02 12:52:54 -04:00
|
|
|
# version_check_enabled :boolean default(TRUE)
|
2015-05-03 12:05:38 -04:00
|
|
|
# max_attachment_size :integer default(10), not null
|
|
|
|
# default_project_visibility :integer
|
|
|
|
# default_snippet_visibility :integer
|
|
|
|
# restricted_signup_domains :text
|
2015-08-02 12:52:54 -04:00
|
|
|
# user_oauth_applications :boolean default(TRUE)
|
|
|
|
# after_sign_out_path :string(255)
|
|
|
|
# session_expire_delay :integer default(10080), not null
|
2015-09-06 10:48:48 -04:00
|
|
|
# import_sources :text
|
2015-11-13 13:22:46 -05:00
|
|
|
# help_page_text :text
|
|
|
|
# admin_notification_email :string(255)
|
|
|
|
# shared_runners_enabled :boolean default(TRUE), not null
|
|
|
|
# max_artifacts_size :integer default(100), not null
|
2015-01-22 12:40:03 -05:00
|
|
|
#
|
|
|
|
|
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-11-05 10:22:37 -05:00
|
|
|
context 'restricted signup domains' do
|
2015-05-02 09:53:32 -04:00
|
|
|
it 'set single domain' do
|
|
|
|
setting.restricted_signup_domains_raw = 'example.com'
|
|
|
|
expect(setting.restricted_signup_domains).to eq(['example.com'])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'set multiple domains with spaces' do
|
|
|
|
setting.restricted_signup_domains_raw = 'example.com *.example.com'
|
|
|
|
expect(setting.restricted_signup_domains).to eq(['example.com', '*.example.com'])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'set multiple domains with newlines and a space' do
|
|
|
|
setting.restricted_signup_domains_raw = "example.com\n *.example.com"
|
|
|
|
expect(setting.restricted_signup_domains).to eq(['example.com', '*.example.com'])
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'set multiple domains with commas' do
|
|
|
|
setting.restricted_signup_domains_raw = "example.com, *.example.com"
|
|
|
|
expect(setting.restricted_signup_domains).to eq(['example.com', '*.example.com'])
|
|
|
|
end
|
|
|
|
end
|
2015-11-05 10:22:37 -05:00
|
|
|
|
|
|
|
context 'shared runners' do
|
|
|
|
let(:gl_project) { create(:empty_project) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow_any_instance_of(Project).to receive(:current_application_settings).and_return(setting)
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { gl_project.ensure_gitlab_ci_project.shared_runners_enabled }
|
|
|
|
|
|
|
|
context 'enabled' do
|
|
|
|
before { setting.update_attributes(shared_runners_enabled: true) }
|
|
|
|
|
|
|
|
it { is_expected.to be_truthy }
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'disabled' do
|
|
|
|
before { setting.update_attributes(shared_runners_enabled: false) }
|
|
|
|
|
|
|
|
it { is_expected.to be_falsey }
|
|
|
|
end
|
|
|
|
end
|
2015-01-08 12:53:35 -05:00
|
|
|
end
|