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

83 lines
3.6 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) }
let(:admin) { create(:admin) }
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)
2016-08-24 12:49:21 +05:30
expect(response).to have_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)
2017-09-10 17:25:29 +05:30
expect(json_response['password_authentication_enabled']).to be_truthy
expect(json_response['repository_storages']).to eq(['default'])
2016-11-03 12:29:30 +05:30
expect(json_response['koding_enabled']).to be_falsey
expect(json_response['koding_url']).to be_nil
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
2015-09-11 14:41:01 +05:30
end
end
describe "PUT /application/settings" do
2016-11-03 12:29:30 +05:30
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-08-17 22:00:37 +05:30
default_projects_limit: 3,
2017-09-10 17:25:29 +05:30
password_authentication_enabled: false,
repository_storages: ['custom'],
2017-08-17 22:00:37 +05:30
koding_enabled: true,
koding_url: 'http://koding.example.com',
plantuml_enabled: true,
plantuml_url: 'http://plantuml.example.com',
default_snippet_visibility: 'internal',
restricted_visibility_levels: ['public'],
2017-09-10 17:25:29 +05:30
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'
2016-11-03 12:29:30 +05:30
expect(response).to have_http_status(200)
expect(json_response['default_projects_limit']).to eq(3)
2017-09-10 17:25:29 +05:30
expect(json_response['password_authentication_enabled']).to be_falsey
2016-11-24 13:41:30 +05:30
expect(json_response['repository_storages']).to eq(['custom'])
2016-11-03 12:29:30 +05:30
expect(json_response['koding_enabled']).to be_truthy
expect(json_response['koding_url']).to eq('http://koding.example.com')
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')
2016-11-03 12:29:30 +05:30
end
2016-08-24 12:49:21 +05:30
end
2016-11-03 12:29:30 +05:30
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
expect(response).to have_http_status(400)
2017-08-17 22:00:37 +05:30
expect(json_response['error']).to eq('koding_url is missing')
end
end
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
expect(response).to have_http_status(400)
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