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

36 lines
1.2 KiB
Ruby
Raw Normal View History

2015-09-11 14:41:01 +05:30
require 'spec_helper'
describe API::API, 'Settings', api: true do
include ApiHelpers
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)
expect(json_response['signin_enabled']).to be_truthy
2016-08-24 12:49:21 +05:30
expect(json_response['repository_storage']).to eq('default')
2015-09-11 14:41:01 +05:30
end
end
describe "PUT /application/settings" do
2016-08-24 12:49:21 +05:30
before do
storages = { 'custom' => 'tmp/tests/custom_repositories' }
allow(Gitlab.config.repositories).to receive(:storages).and_return(storages)
end
2016-09-13 17:45:13 +05:30
it "updates application settings" do
2015-09-11 14:41:01 +05:30
put api("/application/settings", admin),
2016-08-24 12:49:21 +05:30
default_projects_limit: 3, signin_enabled: false, repository_storage: 'custom'
expect(response).to have_http_status(200)
2015-09-11 14:41:01 +05:30
expect(json_response['default_projects_limit']).to eq(3)
expect(json_response['signin_enabled']).to be_falsey
2016-08-24 12:49:21 +05:30
expect(json_response['repository_storage']).to eq('custom')
2015-09-11 14:41:01 +05:30
end
end
end