debian-mirror-gitlab/spec/requests/api/settings_spec.rb

127 lines
5.9 KiB
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
require 'spec_helper'
2017-08-17 22:00:37 +05:30
describe API::Settings, 'Settings' do
2015-09-11 14:41:01 +05:30
let(:user) { create(:user) }
2018-12-13 13:39:08 +05:30
set(:admin) { create(:admin) }
2015-09-11 14:41:01 +05:30
describe "GET /application/settings" do
2016-09-13 17:45:13 +05:30
it "returns application settings" do
2015-09-11 14:41:01 +05:30
get api("/application/settings", admin)
2018-12-13 13:39:08 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2015-09-11 14:41:01 +05:30
expect(json_response).to be_an Hash
expect(json_response['default_projects_limit']).to eq(42)
2018-03-17 18:26:18 +05:30
expect(json_response['password_authentication_enabled_for_web']).to be_truthy
2017-09-10 17:25:29 +05:30
expect(json_response['repository_storages']).to eq(['default'])
2017-08-17 22:00:37 +05:30
expect(json_response['plantuml_enabled']).to be_falsey
expect(json_response['plantuml_url']).to be_nil
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
2018-03-17 18:26:18 +05:30
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)
2018-11-08 19:23:39 +05:30
expect(json_response['performance_bar_allowed_group_id']).to be_nil
2018-11-18 11:00:15 +05:30
expect(json_response['instance_statistics_visibility_private']).to be(false)
2018-11-08 19:23:39 +05:30
expect(json_response).not_to have_key('performance_bar_allowed_group_path')
expect(json_response).not_to have_key('performance_bar_enabled')
2015-09-11 14:41:01 +05:30
end
end
describe "PUT /application/settings" do
2018-11-08 19:23:39 +05:30
let(:group) { create(:group) }
2016-11-03 12:29:30 +05:30
context "custom repository storage type set in the config" do
before do
2018-10-15 14:42:47 +05:30
# Add a possible storage to the config
storages = Gitlab.config.repositories.storages
.merge({ 'custom' => 'tmp/tests/custom_repositories' })
2016-11-03 12:29:30 +05:30
allow(Gitlab.config.repositories).to receive(:storages).and_return(storages)
end
it "updates application settings" do
put api("/application/settings", admin),
2019-02-15 15:39:39 +05:30
params: {
default_projects_limit: 3,
password_authentication_enabled_for_web: false,
repository_storages: ['custom'],
plantuml_enabled: true,
plantuml_url: 'http://plantuml.example.com',
default_snippet_visibility: 'internal',
restricted_visibility_levels: ['public'],
default_artifacts_expire_in: '2 days',
help_page_text: 'custom help text',
help_page_hide_commercial_content: true,
help_page_support_url: 'http://example.com/help',
project_export_enabled: false,
rsa_key_restriction: ApplicationSetting::FORBIDDEN_KEY_VALUE,
dsa_key_restriction: 2048,
ecdsa_key_restriction: 384,
ed25519_key_restriction: 256,
enforce_terms: true,
terms: 'Hello world!',
performance_bar_allowed_group_path: group.full_path,
instance_statistics_visibility_private: true,
2019-03-02 22:35:43 +05:30
diff_max_patch_bytes: 150_000,
default_branch_protection: Gitlab::Access::PROTECTION_DEV_CAN_MERGE,
local_markdown_version: 3
2019-02-15 15:39:39 +05:30
}
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2016-11-03 12:29:30 +05:30
expect(json_response['default_projects_limit']).to eq(3)
2018-03-17 18:26:18 +05:30
expect(json_response['password_authentication_enabled_for_web']).to be_falsey
2016-11-24 13:41:30 +05:30
expect(json_response['repository_storages']).to eq(['custom'])
2017-08-17 22:00:37 +05:30
expect(json_response['plantuml_enabled']).to be_truthy
expect(json_response['plantuml_url']).to eq('http://plantuml.example.com')
expect(json_response['default_snippet_visibility']).to eq('internal')
expect(json_response['restricted_visibility_levels']).to eq(['public'])
expect(json_response['default_artifacts_expire_in']).to eq('2 days')
2017-09-10 17:25:29 +05:30
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')
2018-03-17 18:26:18 +05:30
expect(json_response['project_export_enabled']).to be_falsey
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)
2018-10-15 14:42:47 +05:30
expect(json_response['enforce_terms']).to be(true)
expect(json_response['terms']).to eq('Hello world!')
2018-11-08 19:23:39 +05:30
expect(json_response['performance_bar_allowed_group_id']).to eq(group.id)
2018-11-18 11:00:15 +05:30
expect(json_response['instance_statistics_visibility_private']).to be(true)
2018-12-05 23:21:45 +05:30
expect(json_response['diff_max_patch_bytes']).to eq(150_000)
2019-03-02 22:35:43 +05:30
expect(json_response['default_branch_protection']).to eq(Gitlab::Access::PROTECTION_DEV_CAN_MERGE)
expect(json_response['local_markdown_version']).to eq(3)
2016-11-03 12:29:30 +05:30
end
2016-08-24 12:49:21 +05:30
end
2018-11-08 19:23:39 +05:30
it "supports legacy performance_bar_allowed_group_id" do
put api("/application/settings", admin),
2019-02-15 15:39:39 +05:30
params: { performance_bar_allowed_group_id: group.full_path }
2018-11-08 19:23:39 +05:30
expect(response).to have_gitlab_http_status(200)
expect(json_response['performance_bar_allowed_group_id']).to eq(group.id)
end
it "supports legacy performance_bar_enabled" do
put api("/application/settings", admin),
2019-02-15 15:39:39 +05:30
params: {
performance_bar_enabled: false,
performance_bar_allowed_group_id: group.full_path
}
2018-11-08 19:23:39 +05:30
expect(response).to have_gitlab_http_status(200)
expect(json_response['performance_bar_allowed_group_id']).to be_nil
end
2017-08-17 22:00:37 +05:30
context "missing plantuml_url value when plantuml_enabled is true" do
it "returns a blank parameter error message" do
2019-02-15 15:39:39 +05:30
put api("/application/settings", admin), params: { plantuml_enabled: true }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('plantuml_url is missing')
2016-11-03 12:29:30 +05:30
end
2015-09-11 14:41:01 +05:30
end
end
end