2015-07-06 09:53:08 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-04-21 16:32:02 -04:00
|
|
|
describe API::Settings, 'Settings' do
|
2015-07-06 09:53:08 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:admin) { create(:admin) }
|
|
|
|
|
2015-07-06 10:47:19 -04:00
|
|
|
describe "GET /application/settings" do
|
2016-08-01 11:00:44 -04:00
|
|
|
it "returns application settings" do
|
2015-07-06 10:47:19 -04:00
|
|
|
get api("/application/settings", admin)
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2015-07-06 10:47:19 -04:00
|
|
|
expect(json_response).to be_an Hash
|
|
|
|
expect(json_response['default_projects_limit']).to eq(42)
|
2017-11-23 08:16:14 -05:00
|
|
|
expect(json_response['password_authentication_enabled_for_web']).to be_truthy
|
2017-07-13 12:10:01 -04:00
|
|
|
expect(json_response['repository_storages']).to eq(['default'])
|
2016-09-27 20:56:02 -04:00
|
|
|
expect(json_response['koding_enabled']).to be_falsey
|
|
|
|
expect(json_response['koding_url']).to be_nil
|
2016-11-28 12:41:29 -05:00
|
|
|
expect(json_response['plantuml_enabled']).to be_falsey
|
|
|
|
expect(json_response['plantuml_url']).to be_nil
|
2017-02-17 08:50:02 -05:00
|
|
|
expect(json_response['default_project_visibility']).to be_a String
|
|
|
|
expect(json_response['default_snippet_visibility']).to be_a String
|
|
|
|
expect(json_response['default_group_visibility']).to be_a String
|
2017-08-25 09:08:48 -04:00
|
|
|
expect(json_response['rsa_key_restriction']).to eq(0)
|
|
|
|
expect(json_response['dsa_key_restriction']).to eq(0)
|
|
|
|
expect(json_response['ecdsa_key_restriction']).to eq(0)
|
|
|
|
expect(json_response['ed25519_key_restriction']).to eq(0)
|
2017-10-12 10:35:59 -04:00
|
|
|
expect(json_response['circuitbreaker_failure_count_threshold']).not_to be_nil
|
2015-07-06 10:47:19 -04:00
|
|
|
end
|
2015-07-06 09:53:08 -04:00
|
|
|
end
|
|
|
|
|
2015-07-06 10:47:19 -04:00
|
|
|
describe "PUT /application/settings" do
|
2016-09-27 20:56:02 -04:00
|
|
|
context "custom repository storage type set in the config" do
|
|
|
|
before do
|
|
|
|
storages = { 'custom' => 'tmp/tests/custom_repositories' }
|
|
|
|
allow(Gitlab.config.repositories).to receive(:storages).and_return(storages)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "updates application settings" do
|
|
|
|
put api("/application/settings", admin),
|
2017-02-14 11:19:36 -05:00
|
|
|
default_projects_limit: 3,
|
2017-11-23 08:16:14 -05:00
|
|
|
password_authentication_enabled_for_web: false,
|
2017-07-13 12:10:01 -04:00
|
|
|
repository_storages: ['custom'],
|
2017-02-14 11:19:36 -05:00
|
|
|
koding_enabled: true,
|
|
|
|
koding_url: 'http://koding.example.com',
|
|
|
|
plantuml_enabled: true,
|
|
|
|
plantuml_url: 'http://plantuml.example.com',
|
2017-02-17 08:50:02 -05:00
|
|
|
default_snippet_visibility: 'internal',
|
|
|
|
restricted_visibility_levels: ['public'],
|
2017-06-13 12:46:02 -04:00
|
|
|
default_artifacts_expire_in: '2 days',
|
|
|
|
help_page_text: 'custom help text',
|
|
|
|
help_page_hide_commercial_content: true,
|
2017-07-31 17:34:47 -04:00
|
|
|
help_page_support_url: 'http://example.com/help',
|
2017-08-21 06:30:03 -04:00
|
|
|
project_export_enabled: false,
|
2017-08-25 09:08:48 -04:00
|
|
|
rsa_key_restriction: ApplicationSetting::FORBIDDEN_KEY_VALUE,
|
|
|
|
dsa_key_restriction: 2048,
|
|
|
|
ecdsa_key_restriction: 384,
|
2017-10-12 10:35:59 -04:00
|
|
|
ed25519_key_restriction: 256,
|
2017-11-13 10:52:07 -05:00
|
|
|
circuitbreaker_check_interval: 2
|
2017-08-15 13:44:37 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2016-09-27 20:56:02 -04:00
|
|
|
expect(json_response['default_projects_limit']).to eq(3)
|
2017-11-23 08:16:14 -05:00
|
|
|
expect(json_response['password_authentication_enabled_for_web']).to be_falsey
|
2016-11-03 10:12:20 -04:00
|
|
|
expect(json_response['repository_storages']).to eq(['custom'])
|
2016-09-27 20:56:02 -04:00
|
|
|
expect(json_response['koding_enabled']).to be_truthy
|
|
|
|
expect(json_response['koding_url']).to eq('http://koding.example.com')
|
2016-11-28 12:41:29 -05:00
|
|
|
expect(json_response['plantuml_enabled']).to be_truthy
|
|
|
|
expect(json_response['plantuml_url']).to eq('http://plantuml.example.com')
|
2017-02-17 08:50:02 -05:00
|
|
|
expect(json_response['default_snippet_visibility']).to eq('internal')
|
|
|
|
expect(json_response['restricted_visibility_levels']).to eq(['public'])
|
2017-02-14 11:19:36 -05:00
|
|
|
expect(json_response['default_artifacts_expire_in']).to eq('2 days')
|
2017-06-13 12:46:02 -04:00
|
|
|
expect(json_response['help_page_text']).to eq('custom help text')
|
|
|
|
expect(json_response['help_page_hide_commercial_content']).to be_truthy
|
|
|
|
expect(json_response['help_page_support_url']).to eq('http://example.com/help')
|
2017-07-31 17:34:47 -04:00
|
|
|
expect(json_response['project_export_enabled']).to be_falsey
|
2017-08-25 09:08:48 -04:00
|
|
|
expect(json_response['rsa_key_restriction']).to eq(ApplicationSetting::FORBIDDEN_KEY_VALUE)
|
|
|
|
expect(json_response['dsa_key_restriction']).to eq(2048)
|
|
|
|
expect(json_response['ecdsa_key_restriction']).to eq(384)
|
|
|
|
expect(json_response['ed25519_key_restriction']).to eq(256)
|
2017-11-13 10:52:07 -05:00
|
|
|
expect(json_response['circuitbreaker_check_interval']).to eq(2)
|
2016-09-27 20:56:02 -04:00
|
|
|
end
|
2016-06-29 23:35:00 -04:00
|
|
|
end
|
|
|
|
|
2016-09-27 20:56:02 -04:00
|
|
|
context "missing koding_url value when koding_enabled is true" do
|
|
|
|
it "returns a blank parameter error message" do
|
|
|
|
put api("/application/settings", admin), koding_enabled: true
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2016-12-13 03:00:41 -05:00
|
|
|
expect(json_response['error']).to eq('koding_url is missing')
|
2016-09-27 20:56:02 -04:00
|
|
|
end
|
2015-07-06 10:47:19 -04:00
|
|
|
end
|
2016-11-28 12:41:29 -05:00
|
|
|
|
|
|
|
context "missing plantuml_url value when plantuml_enabled is true" do
|
|
|
|
it "returns a blank parameter error message" do
|
|
|
|
put api("/application/settings", admin), plantuml_enabled: true
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2016-11-28 12:41:29 -05:00
|
|
|
expect(json_response['error']).to eq('plantuml_url is missing')
|
|
|
|
end
|
|
|
|
end
|
2015-07-06 09:53:08 -04:00
|
|
|
end
|
|
|
|
end
|