debian-mirror-gitlab/spec/requests/api/admin/ci/variables_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

218 lines
7.2 KiB
Ruby
Raw Normal View History

2020-05-24 23:13:21 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-06-20 00:43:36 +05:30
RSpec.describe ::API::Admin::Ci::Variables, :aggregate_failures, feature_category: :pipeline_composition do
2020-05-24 23:13:21 +05:30
let_it_be(:admin) { create(:admin) }
let_it_be(:user) { create(:user) }
2023-05-27 22:25:52 +05:30
let_it_be(:variable) { create(:ci_instance_variable) }
let_it_be(:path) { '/admin/ci/variables' }
2020-05-24 23:13:21 +05:30
describe 'GET /admin/ci/variables' do
2023-05-27 22:25:52 +05:30
it_behaves_like 'GET request permissions for admin mode'
2020-05-24 23:13:21 +05:30
2023-06-20 00:43:36 +05:30
it 'returns instance-level variables for admins' do
2023-05-27 22:25:52 +05:30
get api(path, admin, admin_mode: true)
2020-05-24 23:13:21 +05:30
expect(json_response).to be_a(Array)
end
it 'does not return instance-level variables for unauthorized users' do
2023-05-27 22:25:52 +05:30
get api(path, admin_mode: true)
2020-05-24 23:13:21 +05:30
expect(response).to have_gitlab_http_status(:unauthorized)
end
end
describe 'GET /admin/ci/variables/:key' do
2023-05-27 22:25:52 +05:30
let_it_be(:path) { "/admin/ci/variables/#{variable.key}" }
it_behaves_like 'GET request permissions for admin mode'
2020-05-24 23:13:21 +05:30
2023-06-20 00:43:36 +05:30
it 'returns instance-level variable details for admins' do
2023-05-27 22:25:52 +05:30
get api(path, admin, admin_mode: true)
2020-05-24 23:13:21 +05:30
expect(json_response['value']).to eq(variable.value)
expect(json_response['protected']).to eq(variable.protected?)
expect(json_response['variable_type']).to eq(variable.variable_type)
end
it 'responds with 404 Not Found if requesting non-existing variable' do
2023-05-27 22:25:52 +05:30
get api('/admin/ci/variables/non_existing_variable', admin, admin_mode: true)
2020-05-24 23:13:21 +05:30
expect(response).to have_gitlab_http_status(:not_found)
end
it 'does not return instance-level variable details for unauthorized users' do
2023-05-27 22:25:52 +05:30
get api(path, admin_mode: true)
2020-05-24 23:13:21 +05:30
expect(response).to have_gitlab_http_status(:unauthorized)
end
end
describe 'POST /admin/ci/variables' do
2023-05-27 22:25:52 +05:30
it_behaves_like 'POST request permissions for admin mode' do
let(:params) { { key: 'KEY', value: 'VALUE' } }
end
2020-05-24 23:13:21 +05:30
2023-05-27 22:25:52 +05:30
context 'authorized user with proper permissions' do
2023-06-20 00:43:36 +05:30
it 'creates variable for admins' do
2020-05-24 23:13:21 +05:30
expect do
2023-05-27 22:25:52 +05:30
post api(path, admin, admin_mode: true),
2020-05-24 23:13:21 +05:30
params: {
key: 'TEST_VARIABLE_2',
value: 'PROTECTED_VALUE_2',
protected: true,
2023-01-13 00:05:48 +05:30
masked: true,
raw: true
2020-05-24 23:13:21 +05:30
}
end.to change { ::Ci::InstanceVariable.count }.by(1)
expect(json_response['key']).to eq('TEST_VARIABLE_2')
expect(json_response['value']).to eq('PROTECTED_VALUE_2')
expect(json_response['protected']).to be_truthy
expect(json_response['masked']).to be_truthy
2023-01-13 00:05:48 +05:30
expect(json_response['raw']).to be_truthy
2020-05-24 23:13:21 +05:30
expect(json_response['variable_type']).to eq('env_var')
end
2023-01-13 00:05:48 +05:30
it 'masks the new value when logging' do
masked_params = { 'key' => 'VAR_KEY', 'value' => '[FILTERED]', 'protected' => 'true', 'masked' => 'true' }
expect(::API::API::LOGGER).to receive(:info).with(include(params: include(masked_params)))
2023-05-27 22:25:52 +05:30
post api(path, user, admin_mode: true),
2023-01-13 00:05:48 +05:30
params: { key: 'VAR_KEY', value: 'SENSITIVE', protected: true, masked: true }
end
2023-06-20 00:43:36 +05:30
it 'creates variable with optional attributes' do
2020-05-24 23:13:21 +05:30
expect do
2023-05-27 22:25:52 +05:30
post api(path, admin, admin_mode: true),
2020-05-24 23:13:21 +05:30
params: {
variable_type: 'file',
key: 'TEST_VARIABLE_2',
value: 'VALUE_2'
}
end.to change { ::Ci::InstanceVariable.count }.by(1)
expect(json_response['key']).to eq('TEST_VARIABLE_2')
expect(json_response['value']).to eq('VALUE_2')
expect(json_response['protected']).to be_falsey
expect(json_response['masked']).to be_falsey
2023-01-13 00:05:48 +05:30
expect(json_response['raw']).to be_falsey
2020-05-24 23:13:21 +05:30
expect(json_response['variable_type']).to eq('file')
end
it 'does not allow to duplicate variable key' do
expect do
2023-05-27 22:25:52 +05:30
post api(path, admin, admin_mode: true),
2020-05-24 23:13:21 +05:30
params: { key: variable.key, value: 'VALUE_2' }
end.not_to change { ::Ci::InstanceVariable.count }
expect(response).to have_gitlab_http_status(:bad_request)
end
2020-06-23 00:09:42 +05:30
2023-06-20 00:43:36 +05:30
it 'does not allow values above 10,000 characters' do
2020-06-23 00:09:42 +05:30
too_long_message = <<~MESSAGE.strip
2020-10-24 23:57:45 +05:30
The value of the provided variable exceeds the 10000 character limit
2020-06-23 00:09:42 +05:30
MESSAGE
expect do
2023-05-27 22:25:52 +05:30
post api(path, admin, admin_mode: true),
2020-10-24 23:57:45 +05:30
params: { key: 'too_long', value: SecureRandom.hex(10_001) }
2020-06-23 00:09:42 +05:30
end.not_to change { ::Ci::InstanceVariable.count }
expect(response).to have_gitlab_http_status(:bad_request)
expect(json_response).to match('message' =>
2020-10-24 23:57:45 +05:30
a_hash_including('value' => [too_long_message]))
2020-06-23 00:09:42 +05:30
end
2020-05-24 23:13:21 +05:30
end
context 'unauthorized user' do
it 'does not create variable' do
2023-05-27 22:25:52 +05:30
post api(path, admin_mode: true)
2020-05-24 23:13:21 +05:30
expect(response).to have_gitlab_http_status(:unauthorized)
end
end
end
describe 'PUT /admin/ci/variables/:key' do
2023-05-27 22:25:52 +05:30
let_it_be(:path) { "/admin/ci/variables/#{variable.key}" }
let_it_be(:params) do
{
variable_type: 'file',
value: 'VALUE_1_UP',
protected: true,
masked: true,
raw: true
}
end
it_behaves_like 'PUT request permissions for admin mode'
2020-05-24 23:13:21 +05:30
context 'authorized user with proper permissions' do
2023-06-20 00:43:36 +05:30
it 'updates variable data' do
2023-05-27 22:25:52 +05:30
put api(path, admin, admin_mode: true), params: params
2020-05-24 23:13:21 +05:30
expect(variable.reload.value).to eq('VALUE_1_UP')
expect(variable.reload).to be_protected
expect(json_response['variable_type']).to eq('file')
expect(json_response['masked']).to be_truthy
2023-01-13 00:05:48 +05:30
expect(json_response['raw']).to be_truthy
end
it 'masks the new value when logging' do
masked_params = { 'value' => '[FILTERED]', 'protected' => 'true', 'masked' => 'true' }
expect(::API::API::LOGGER).to receive(:info).with(include(params: include(masked_params)))
2023-05-27 22:25:52 +05:30
put api(path, admin, admin_mode: true),
2023-01-13 00:05:48 +05:30
params: { value: 'SENSITIVE', protected: true, masked: true }
2020-05-24 23:13:21 +05:30
end
it 'responds with 404 Not Found if requesting non-existing variable' do
2023-05-27 22:25:52 +05:30
put api('/admin/ci/variables/non_existing_variable', admin, admin_mode: true)
2020-05-24 23:13:21 +05:30
expect(response).to have_gitlab_http_status(:not_found)
end
end
context 'unauthorized user' do
it 'does not update variable' do
2023-05-27 22:25:52 +05:30
put api(path, admin_mode: true)
2020-05-24 23:13:21 +05:30
expect(response).to have_gitlab_http_status(:unauthorized)
end
end
end
describe 'DELETE /admin/ci/variables/:key' do
2023-05-27 22:25:52 +05:30
let_it_be(:path) { "/admin/ci/variables/#{variable.key}" }
it_behaves_like 'DELETE request permissions for admin mode'
2020-05-24 23:13:21 +05:30
context 'authorized user with proper permissions' do
it 'deletes variable' do
expect do
2023-05-27 22:25:52 +05:30
delete api(path, admin, admin_mode: true)
2020-05-24 23:13:21 +05:30
end.to change { ::Ci::InstanceVariable.count }.by(-1)
end
it 'responds with 404 Not Found if requesting non-existing variable' do
2023-05-27 22:25:52 +05:30
delete api('/admin/ci/variables/non_existing_variable', admin, admin_mode: true)
2020-05-24 23:13:21 +05:30
expect(response).to have_gitlab_http_status(:not_found)
end
end
context 'unauthorized user' do
it 'does not delete variable' do
2023-05-27 22:25:52 +05:30
delete api(path, admin_mode: true)
2020-05-24 23:13:21 +05:30
expect(response).to have_gitlab_http_status(:unauthorized)
end
end
end
end