2021-04-17 20:07:23 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe API::Admin::PlanLimits, 'PlanLimits' do
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:admin) { create(:admin) }
|
|
|
|
let_it_be(:plan) { create(:plan, name: 'default') }
|
|
|
|
|
|
|
|
describe 'GET /application/plan_limits' do
|
|
|
|
context 'as a non-admin user' do
|
|
|
|
it 'returns 403' do
|
|
|
|
get api('/application/plan_limits', user)
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'as an admin user' do
|
|
|
|
context 'no params' do
|
|
|
|
it 'returns plan limits' do
|
|
|
|
get api('/application/plan_limits', admin)
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
expect(json_response).to be_an Hash
|
|
|
|
expect(json_response['conan_max_file_size']).to eq(Plan.default.actual_limits.conan_max_file_size)
|
|
|
|
expect(json_response['generic_packages_max_file_size']).to eq(Plan.default.actual_limits.generic_packages_max_file_size)
|
|
|
|
expect(json_response['maven_max_file_size']).to eq(Plan.default.actual_limits.maven_max_file_size)
|
|
|
|
expect(json_response['npm_max_file_size']).to eq(Plan.default.actual_limits.npm_max_file_size)
|
|
|
|
expect(json_response['nuget_max_file_size']).to eq(Plan.default.actual_limits.nuget_max_file_size)
|
|
|
|
expect(json_response['pypi_max_file_size']).to eq(Plan.default.actual_limits.pypi_max_file_size)
|
2021-09-30 23:02:18 +05:30
|
|
|
expect(json_response['terraform_module_max_file_size']).to eq(Plan.default.actual_limits.terraform_module_max_file_size)
|
2021-04-17 20:07:23 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'correct plan name in params' do
|
|
|
|
before do
|
|
|
|
@params = { plan_name: 'default' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns plan limits' do
|
|
|
|
get api('/application/plan_limits', admin), params: @params
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
expect(json_response).to be_an Hash
|
|
|
|
expect(json_response['conan_max_file_size']).to eq(Plan.default.actual_limits.conan_max_file_size)
|
|
|
|
expect(json_response['generic_packages_max_file_size']).to eq(Plan.default.actual_limits.generic_packages_max_file_size)
|
|
|
|
expect(json_response['maven_max_file_size']).to eq(Plan.default.actual_limits.maven_max_file_size)
|
|
|
|
expect(json_response['npm_max_file_size']).to eq(Plan.default.actual_limits.npm_max_file_size)
|
|
|
|
expect(json_response['nuget_max_file_size']).to eq(Plan.default.actual_limits.nuget_max_file_size)
|
|
|
|
expect(json_response['pypi_max_file_size']).to eq(Plan.default.actual_limits.pypi_max_file_size)
|
2021-09-30 23:02:18 +05:30
|
|
|
expect(json_response['terraform_module_max_file_size']).to eq(Plan.default.actual_limits.terraform_module_max_file_size)
|
2021-04-17 20:07:23 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'invalid plan name in params' do
|
|
|
|
before do
|
|
|
|
@params = { plan_name: 'my-plan' }
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns validation error' do
|
|
|
|
get api('/application/plan_limits', admin), params: @params
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:bad_request)
|
|
|
|
expect(json_response['error']).to eq('plan_name does not have a valid value')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'PUT /application/plan_limits' do
|
|
|
|
context 'as a non-admin user' do
|
|
|
|
it 'returns 403' do
|
|
|
|
put api('/application/plan_limits', user), params: { plan_name: 'default' }
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:forbidden)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'as an admin user' do
|
|
|
|
context 'correct params' do
|
|
|
|
it 'updates multiple plan limits' do
|
|
|
|
put api('/application/plan_limits', admin), params: {
|
|
|
|
'plan_name': 'default',
|
|
|
|
'conan_max_file_size': 10,
|
|
|
|
'generic_packages_max_file_size': 20,
|
|
|
|
'maven_max_file_size': 30,
|
|
|
|
'npm_max_file_size': 40,
|
|
|
|
'nuget_max_file_size': 50,
|
2021-09-30 23:02:18 +05:30
|
|
|
'pypi_max_file_size': 60,
|
|
|
|
'terraform_module_max_file_size': 70
|
2021-04-17 20:07:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
expect(json_response).to be_an Hash
|
|
|
|
expect(json_response['conan_max_file_size']).to eq(10)
|
|
|
|
expect(json_response['generic_packages_max_file_size']).to eq(20)
|
|
|
|
expect(json_response['maven_max_file_size']).to eq(30)
|
|
|
|
expect(json_response['npm_max_file_size']).to eq(40)
|
|
|
|
expect(json_response['nuget_max_file_size']).to eq(50)
|
|
|
|
expect(json_response['pypi_max_file_size']).to eq(60)
|
2021-09-30 23:02:18 +05:30
|
|
|
expect(json_response['terraform_module_max_file_size']).to eq(70)
|
2021-04-17 20:07:23 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates single plan limits' do
|
|
|
|
put api('/application/plan_limits', admin), params: {
|
|
|
|
'plan_name': 'default',
|
|
|
|
'maven_max_file_size': 100
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
expect(json_response).to be_an Hash
|
|
|
|
expect(json_response['maven_max_file_size']).to eq(100)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'empty params' do
|
|
|
|
it 'fails to update plan limits' do
|
|
|
|
put api('/application/plan_limits', admin), params: {}
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:bad_request)
|
|
|
|
expect(json_response['error']).to match('plan_name is missing')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'params with wrong type' do
|
|
|
|
it 'fails to update plan limits' do
|
|
|
|
put api('/application/plan_limits', admin), params: {
|
|
|
|
'plan_name': 'default',
|
|
|
|
'conan_max_file_size': 'a',
|
|
|
|
'generic_packages_max_file_size': 'b',
|
|
|
|
'maven_max_file_size': 'c',
|
|
|
|
'npm_max_file_size': 'd',
|
|
|
|
'nuget_max_file_size': 'e',
|
2021-09-30 23:02:18 +05:30
|
|
|
'pypi_max_file_size': 'f',
|
|
|
|
'terraform_module_max_file_size': 'g'
|
2021-04-17 20:07:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:bad_request)
|
|
|
|
expect(json_response['error']).to include(
|
|
|
|
'conan_max_file_size is invalid',
|
|
|
|
'generic_packages_max_file_size is invalid',
|
|
|
|
'maven_max_file_size is invalid',
|
|
|
|
'generic_packages_max_file_size is invalid',
|
|
|
|
'npm_max_file_size is invalid',
|
|
|
|
'nuget_max_file_size is invalid',
|
2021-09-30 23:02:18 +05:30
|
|
|
'pypi_max_file_size is invalid',
|
|
|
|
'terraform_module_max_file_size is invalid'
|
2021-04-17 20:07:23 +05:30
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'missing plan_name in params' do
|
|
|
|
it 'fails to update plan limits' do
|
|
|
|
put api('/application/plan_limits', admin), params: { 'conan_max_file_size': 0 }
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:bad_request)
|
|
|
|
expect(json_response['error']).to match('plan_name is missing')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'additional undeclared params' do
|
|
|
|
before do
|
|
|
|
Plan.default.actual_limits.update!({ 'golang_max_file_size': 1000 })
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates only declared plan limits' do
|
|
|
|
put api('/application/plan_limits', admin), params: {
|
|
|
|
'plan_name': 'default',
|
|
|
|
'pypi_max_file_size': 200,
|
|
|
|
'golang_max_file_size': 999
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:ok)
|
|
|
|
expect(json_response).to be_an Hash
|
|
|
|
expect(json_response['pypi_max_file_size']).to eq(200)
|
|
|
|
expect(json_response['golang_max_file_size']).to be_nil
|
|
|
|
expect(Plan.default.actual_limits.golang_max_file_size).to eq(1000)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|