2017-03-20 17:54:34 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Admin::ApplicationSettingsController do
|
|
|
|
include StubENV
|
|
|
|
|
2017-04-05 08:29:48 -04:00
|
|
|
let(:group) { create(:group) }
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project, namespace: group) }
|
2017-03-20 17:54:34 -04:00
|
|
|
let(:admin) { create(:admin) }
|
2017-04-05 08:29:48 -04:00
|
|
|
let(:user) { create(:user)}
|
2017-03-20 17:54:34 -04:00
|
|
|
|
|
|
|
before do
|
|
|
|
stub_env('IN_MEMORY_APPLICATION_SETTINGS', 'false')
|
|
|
|
end
|
|
|
|
|
2017-04-05 08:29:48 -04:00
|
|
|
describe 'GET #usage_data with no access' do
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns 404' do
|
|
|
|
get :usage_data, format: :html
|
|
|
|
|
|
|
|
expect(response.status).to eq(404)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #usage_data' do
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns HTML data' do
|
|
|
|
get :usage_data, format: :html
|
|
|
|
|
|
|
|
expect(response.body).to start_with('<span')
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns JSON data' do
|
|
|
|
get :usage_data, format: :json
|
|
|
|
|
|
|
|
body = JSON.parse(response.body)
|
|
|
|
expect(body["version"]).to eq(Gitlab::VERSION)
|
|
|
|
expect(body).to include('counts')
|
|
|
|
expect(response.status).to eq(200)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-23 06:13:11 -04:00
|
|
|
describe 'PUT #update' do
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
2018-01-19 07:04:45 -05:00
|
|
|
it 'updates the password_authentication_enabled_for_git setting' do
|
2018-12-17 17:52:17 -05:00
|
|
|
put :update, params: { application_setting: { password_authentication_enabled_for_git: "0" } }
|
2018-01-19 07:04:45 -05:00
|
|
|
|
|
|
|
expect(response).to redirect_to(admin_application_settings_path)
|
|
|
|
expect(ApplicationSetting.current.password_authentication_enabled_for_git).to eq(false)
|
|
|
|
end
|
|
|
|
|
2017-03-20 17:54:34 -04:00
|
|
|
it 'updates the default_project_visibility for string value' do
|
2018-12-17 17:52:17 -05:00
|
|
|
put :update, params: { application_setting: { default_project_visibility: "20" } }
|
2017-03-20 17:54:34 -04:00
|
|
|
|
|
|
|
expect(response).to redirect_to(admin_application_settings_path)
|
2017-03-23 10:25:42 -04:00
|
|
|
expect(ApplicationSetting.current.default_project_visibility).to eq(Gitlab::VisibilityLevel::PUBLIC)
|
2017-03-20 17:54:34 -04:00
|
|
|
end
|
|
|
|
|
2017-03-23 10:25:42 -04:00
|
|
|
it 'update the restricted levels for string values' do
|
2018-12-17 17:52:17 -05:00
|
|
|
put :update, params: { application_setting: { restricted_visibility_levels: %w[10 20] } }
|
2017-03-23 10:25:42 -04:00
|
|
|
|
|
|
|
expect(response).to redirect_to(admin_application_settings_path)
|
|
|
|
expect(ApplicationSetting.current.restricted_visibility_levels).to eq([10, 20])
|
|
|
|
end
|
|
|
|
|
2018-04-13 17:04:55 -04:00
|
|
|
it 'updates the restricted_visibility_levels when empty array is passed' do
|
2018-12-17 17:52:17 -05:00
|
|
|
put :update, params: { application_setting: { restricted_visibility_levels: [""] } }
|
2017-03-20 17:54:34 -04:00
|
|
|
|
|
|
|
expect(response).to redirect_to(admin_application_settings_path)
|
2017-03-23 10:25:42 -04:00
|
|
|
expect(ApplicationSetting.current.restricted_visibility_levels).to be_empty
|
2017-03-20 17:54:34 -04:00
|
|
|
end
|
2018-08-01 10:47:14 -04:00
|
|
|
|
|
|
|
it 'updates the receive_max_input_size setting' do
|
2018-12-17 17:52:17 -05:00
|
|
|
put :update, params: { application_setting: { receive_max_input_size: "1024" } }
|
2018-08-01 10:47:14 -04:00
|
|
|
|
|
|
|
expect(response).to redirect_to(admin_application_settings_path)
|
|
|
|
expect(ApplicationSetting.current.receive_max_input_size).to eq(1024)
|
|
|
|
end
|
2017-03-20 17:54:34 -04:00
|
|
|
end
|
2018-09-10 17:57:03 -04:00
|
|
|
|
|
|
|
describe 'PUT #reset_registration_token' do
|
|
|
|
before do
|
|
|
|
sign_in(admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
subject { put :reset_registration_token }
|
|
|
|
|
|
|
|
it 'resets runner registration token' do
|
|
|
|
expect { subject }.to change { ApplicationSetting.current.runners_registration_token }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redirects the user to admin runners page' do
|
|
|
|
subject
|
|
|
|
|
|
|
|
expect(response).to redirect_to(admin_runners_path)
|
|
|
|
end
|
|
|
|
end
|
2017-03-20 17:54:34 -04:00
|
|
|
end
|