gitlab-org--gitlab-foss/spec/controllers/projects/variables_controller_spec.rb

128 lines
3.3 KiB
Ruby
Raw Normal View History

require 'spec_helper'
describe Projects::VariablesController do
let(:project) { create(:project) }
let(:user) { create(:user) }
before do
sign_in(user)
project.add_master(user)
end
describe 'GET #show' do
let(:variable) { create(:ci_variable) }
before do
project.variables << variable
end
subject do
get :show, namespace_id: project.namespace.to_param, project_id: project,
format: :json
end
it 'renders the ci_variable as json' do
subject
expect(response).to match_response_schema('variables')
end
end
describe 'POST #update' do
let(:variable) { create(:ci_variable) }
let(:variable_attributes) do
{ id: variable.id, key: variable.key,
value: variable.value,
protected: variable.protected?.to_s }
end
let(:new_variable_attributes) do
{ key: 'new_key', value: 'dummy_value',
protected: 'false' }
end
before do
project.variables << variable
end
context 'with invalid new variable parameters' do
subject do
patch :update,
namespace_id: project.namespace.to_param, project_id: project,
variables_attributes: [variable_attributes.merge(value: 'other_value'),
new_variable_attributes.merge(key: '..?')],
format: :json
end
it 'does not update the existing variable' do
expect { subject }.not_to change { variable.reload.value }
end
it 'does not create the new variable' do
expect { subject }.not_to change { project.variables.count }
end
it 'returns a bad request response' do
subject
expect(response).to have_gitlab_http_status(:bad_request)
end
end
context 'with valid new variable parameters' do
subject do
patch :update,
namespace_id: project.namespace.to_param, project_id: project,
variables_attributes: [variable_attributes.merge(value: 'other_value'),
new_variable_attributes],
format: :json
end
it 'updates the existing variable' do
expect { subject }.to change { variable.reload.value }.to('other_value')
end
it 'creates the new variable' do
expect { subject }.to change { project.variables.count }.by(1)
end
it 'returns a successful response' do
subject
expect(response).to have_gitlab_http_status(:ok)
end
2018-01-29 23:44:53 +00:00
it 'has all variables in response' do
subject
expect(response).to match_response_schema('variables')
2018-01-29 23:44:53 +00:00
end
end
context 'with a deleted variable' do
subject do
patch :update,
namespace_id: project.namespace.to_param, project_id: project,
variables_attributes: [variable_attributes.merge(_destroy: 'true')],
format: :json
end
it 'destroys the variable' do
expect { subject }.to change { project.variables.count }.by(-1)
expect { variable.reload }.to raise_error ActiveRecord::RecordNotFound
end
it 'returns a successful response' do
subject
expect(response).to have_gitlab_http_status(:ok)
end
2018-01-29 23:44:53 +00:00
it 'has all variables in response' do
subject
expect(response).to match_response_schema('variables')
2018-01-29 23:44:53 +00:00
end
end
end
end