2015-12-31 09:19:13 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2017-04-21 16:32:02 -04:00
|
|
|
describe API::Variables do
|
2015-12-31 09:19:13 -05:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:user2) { create(:user) }
|
2017-08-02 15:55:11 -04:00
|
|
|
let!(:project) { create(:project, creator_id: user.id) }
|
2018-07-11 10:36:08 -04:00
|
|
|
let!(:maintainer) { create(:project_member, :maintainer, user: user, project: project) }
|
2016-03-06 16:53:22 -05:00
|
|
|
let!(:developer) { create(:project_member, :developer, user: user2, project: project) }
|
2015-12-31 09:19:13 -05:00
|
|
|
let!(:variable) { create(:ci_variable, project: project) }
|
|
|
|
|
|
|
|
describe 'GET /projects/:id/variables' do
|
|
|
|
context 'authorized user with proper permissions' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'returns project variables' do
|
2015-12-31 09:19:13 -05:00
|
|
|
get api("/projects/#{project.id}/variables", user)
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2015-12-31 09:19:13 -05:00
|
|
|
expect(json_response).to be_a(Array)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'authorized user with invalid permissions' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'does not return project variables' do
|
2015-12-31 09:19:13 -05:00
|
|
|
get api("/projects/#{project.id}/variables", user2)
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2015-12-31 09:19:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'unauthorized user' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'does not return project variables' do
|
2015-12-31 09:19:13 -05:00
|
|
|
get api("/projects/#{project.id}/variables")
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(401)
|
2015-12-31 09:19:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-07 07:49:38 -05:00
|
|
|
describe 'GET /projects/:id/variables/:key' do
|
2015-12-31 09:19:13 -05:00
|
|
|
context 'authorized user with proper permissions' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'returns project variable details' do
|
2015-12-31 10:25:49 -05:00
|
|
|
get api("/projects/#{project.id}/variables/#{variable.key}", user)
|
2015-12-31 09:19:13 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2015-12-31 10:25:49 -05:00
|
|
|
expect(json_response['value']).to eq(variable.value)
|
2017-05-25 07:49:46 -04:00
|
|
|
expect(json_response['protected']).to eq(variable.protected?)
|
2019-05-16 16:07:42 -04:00
|
|
|
expect(json_response['masked']).to eq(variable.masked?)
|
2019-05-06 09:11:42 -04:00
|
|
|
expect(json_response['variable_type']).to eq('env_var')
|
2015-12-31 09:19:13 -05:00
|
|
|
end
|
2015-12-31 11:03:11 -05:00
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'responds with 404 Not Found if requesting non-existing variable' do
|
2016-01-07 07:49:38 -05:00
|
|
|
get api("/projects/#{project.id}/variables/non_existing_variable", user)
|
2015-12-31 11:03:11 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2015-12-31 11:03:11 -05:00
|
|
|
end
|
2015-12-31 09:19:13 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'authorized user with invalid permissions' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'does not return project variable details' do
|
2016-01-07 07:49:38 -05:00
|
|
|
get api("/projects/#{project.id}/variables/#{variable.key}", user2)
|
2015-12-31 09:19:13 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2015-12-31 09:19:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'unauthorized user' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'does not return project variable details' do
|
2016-01-07 07:49:38 -05:00
|
|
|
get api("/projects/#{project.id}/variables/#{variable.key}")
|
2015-12-31 10:25:49 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(401)
|
2015-12-31 10:25:49 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-31 16:30:07 -05:00
|
|
|
describe 'POST /projects/:id/variables' do
|
|
|
|
context 'authorized user with proper permissions' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'creates variable' do
|
2015-12-31 16:30:07 -05:00
|
|
|
expect do
|
2019-05-16 16:07:42 -04:00
|
|
|
post api("/projects/#{project.id}/variables", user), params: { key: 'TEST_VARIABLE_2', value: 'PROTECTED_VALUE_2', protected: true, masked: true }
|
2017-08-09 05:52:22 -04:00
|
|
|
end.to change {project.variables.count}.by(1)
|
2015-12-31 16:30:07 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2015-12-31 16:30:07 -05:00
|
|
|
expect(json_response['key']).to eq('TEST_VARIABLE_2')
|
2019-02-26 19:22:51 -05:00
|
|
|
expect(json_response['value']).to eq('PROTECTED_VALUE_2')
|
2017-05-26 03:35:30 -04:00
|
|
|
expect(json_response['protected']).to be_truthy
|
2019-05-16 16:07:42 -04:00
|
|
|
expect(json_response['masked']).to be_truthy
|
2019-05-06 09:11:42 -04:00
|
|
|
expect(json_response['variable_type']).to eq('env_var')
|
2015-12-31 16:30:07 -05:00
|
|
|
end
|
|
|
|
|
2017-06-27 03:20:11 -04:00
|
|
|
it 'creates variable with optional attributes' do
|
|
|
|
expect do
|
2019-05-06 09:11:42 -04:00
|
|
|
post api("/projects/#{project.id}/variables", user), params: { variable_type: 'file', key: 'TEST_VARIABLE_2', value: 'VALUE_2' }
|
2017-08-09 05:52:22 -04:00
|
|
|
end.to change {project.variables.count}.by(1)
|
2017-06-27 03:20:11 -04:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(201)
|
2017-06-27 03:20:11 -04:00
|
|
|
expect(json_response['key']).to eq('TEST_VARIABLE_2')
|
|
|
|
expect(json_response['value']).to eq('VALUE_2')
|
|
|
|
expect(json_response['protected']).to be_falsey
|
2019-05-16 16:07:42 -04:00
|
|
|
expect(json_response['masked']).to be_falsey
|
2019-05-06 09:11:42 -04:00
|
|
|
expect(json_response['variable_type']).to eq('file')
|
2017-06-27 03:20:11 -04:00
|
|
|
end
|
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'does not allow to duplicate variable key' do
|
2015-12-31 16:30:07 -05:00
|
|
|
expect do
|
2018-12-17 17:52:17 -05:00
|
|
|
post api("/projects/#{project.id}/variables", user), params: { key: variable.key, value: 'VALUE_2' }
|
2017-08-09 05:52:22 -04:00
|
|
|
end.to change {project.variables.count}.by(0)
|
2015-12-31 16:30:07 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(400)
|
2015-12-31 16:30:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'authorized user with invalid permissions' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'does not create variable' do
|
2015-12-31 16:30:07 -05:00
|
|
|
post api("/projects/#{project.id}/variables", user2)
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2015-12-31 16:30:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'unauthorized user' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'does not create variable' do
|
2015-12-31 16:30:07 -05:00
|
|
|
post api("/projects/#{project.id}/variables")
|
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(401)
|
2015-12-31 16:30:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-01-07 07:49:38 -05:00
|
|
|
describe 'PUT /projects/:id/variables/:key' do
|
2015-12-31 10:25:49 -05:00
|
|
|
context 'authorized user with proper permissions' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'updates variable data' do
|
2018-02-05 12:42:58 -05:00
|
|
|
initial_variable = project.variables.reload.first
|
2015-12-31 10:25:49 -05:00
|
|
|
value_before = initial_variable.value
|
|
|
|
|
2019-05-06 09:11:42 -04:00
|
|
|
put api("/projects/#{project.id}/variables/#{variable.key}", user), params: { variable_type: 'file', value: 'VALUE_1_UP', protected: true }
|
2015-12-31 10:25:49 -05:00
|
|
|
|
2018-02-05 12:42:58 -05:00
|
|
|
updated_variable = project.variables.reload.first
|
2015-12-31 10:25:49 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(200)
|
2015-12-31 10:25:49 -05:00
|
|
|
expect(value_before).to eq(variable.value)
|
|
|
|
expect(updated_variable.value).to eq('VALUE_1_UP')
|
2017-05-25 07:49:46 -04:00
|
|
|
expect(updated_variable).to be_protected
|
2019-05-06 09:11:42 -04:00
|
|
|
expect(updated_variable.variable_type).to eq('file')
|
2015-12-31 10:25:49 -05:00
|
|
|
end
|
2015-12-31 11:03:11 -05:00
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'responds with 404 Not Found if requesting non-existing variable' do
|
2016-01-07 07:49:38 -05:00
|
|
|
put api("/projects/#{project.id}/variables/non_existing_variable", user)
|
2015-12-31 11:03:11 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2015-12-31 11:03:11 -05:00
|
|
|
end
|
2015-12-31 10:25:49 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'authorized user with invalid permissions' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'does not update variable' do
|
2016-01-07 07:49:38 -05:00
|
|
|
put api("/projects/#{project.id}/variables/#{variable.key}", user2)
|
2015-12-31 10:25:49 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2015-12-31 10:25:49 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'unauthorized user' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'does not update variable' do
|
2016-01-07 07:49:38 -05:00
|
|
|
put api("/projects/#{project.id}/variables/#{variable.key}")
|
2015-12-31 09:19:13 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(401)
|
2015-12-31 09:19:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-12-31 10:56:03 -05:00
|
|
|
|
2016-01-07 07:49:38 -05:00
|
|
|
describe 'DELETE /projects/:id/variables/:key' do
|
2015-12-31 10:56:03 -05:00
|
|
|
context 'authorized user with proper permissions' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'deletes variable' do
|
2015-12-31 10:56:03 -05:00
|
|
|
expect do
|
2016-01-07 07:49:38 -05:00
|
|
|
delete api("/projects/#{project.id}/variables/#{variable.key}", user)
|
2017-02-20 13:18:12 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(204)
|
2017-08-09 05:52:22 -04:00
|
|
|
end.to change {project.variables.count}.by(-1)
|
2015-12-31 10:56:03 -05:00
|
|
|
end
|
2015-12-31 11:03:11 -05:00
|
|
|
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'responds with 404 Not Found if requesting non-existing variable' do
|
2016-01-07 07:49:38 -05:00
|
|
|
delete api("/projects/#{project.id}/variables/non_existing_variable", user)
|
2015-12-31 11:03:11 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(404)
|
2015-12-31 11:03:11 -05:00
|
|
|
end
|
2015-12-31 10:56:03 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'authorized user with invalid permissions' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'does not delete variable' do
|
2016-01-07 07:49:38 -05:00
|
|
|
delete api("/projects/#{project.id}/variables/#{variable.key}", user2)
|
2015-12-31 10:56:03 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(403)
|
2015-12-31 10:56:03 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'unauthorized user' do
|
2016-08-01 11:00:44 -04:00
|
|
|
it 'does not delete variable' do
|
2016-01-07 07:49:38 -05:00
|
|
|
delete api("/projects/#{project.id}/variables/#{variable.key}")
|
2015-12-31 10:56:03 -05:00
|
|
|
|
2017-10-19 14:28:19 -04:00
|
|
|
expect(response).to have_gitlab_http_status(401)
|
2015-12-31 10:56:03 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-12-31 09:19:13 -05:00
|
|
|
end
|