debian-mirror-gitlab/spec/controllers/groups/runners_controller_spec.rb

205 lines
5.1 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2018-10-15 14:42:47 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe Groups::RunnersController do
2019-09-04 21:01:54 +05:30
let(:user) { create(:user) }
let(:group) { create(:group) }
2018-11-08 19:23:39 +05:30
let(:runner) { create(:ci_runner, :group, groups: [group]) }
2019-09-04 21:01:54 +05:30
let(:params) { { group_id: group, id: runner } }
2018-10-15 14:42:47 +05:30
before do
sign_in(user)
2019-09-04 21:01:54 +05:30
end
describe '#show' do
context 'when user is owner' do
before do
group.add_owner(user)
end
it 'renders show with 200 status code' do
get :show, params: { group_id: group, id: runner }
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:ok)
2019-09-04 21:01:54 +05:30
expect(response).to render_template(:show)
end
end
context 'when user is not owner' do
before do
group.add_maintainer(user)
end
it 'renders a 404' do
get :show, params: { group_id: group, id: runner }
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:not_found)
2019-09-04 21:01:54 +05:30
end
end
end
describe '#edit' do
context 'when user is owner' do
before do
group.add_owner(user)
end
it 'renders show with 200 status code' do
get :edit, params: { group_id: group, id: runner }
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:ok)
2019-09-04 21:01:54 +05:30
expect(response).to render_template(:edit)
end
end
context 'when user is not owner' do
before do
group.add_maintainer(user)
end
it 'renders a 404' do
get :edit, params: { group_id: group, id: runner }
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:not_found)
2019-09-04 21:01:54 +05:30
end
end
2018-10-15 14:42:47 +05:30
end
describe '#update' do
2019-09-04 21:01:54 +05:30
context 'when user is an owner' do
before do
group.add_owner(user)
end
2018-10-15 14:42:47 +05:30
2019-09-04 21:01:54 +05:30
it 'updates the runner, ticks the queue, and redirects' do
new_desc = runner.description.swapcase
2018-10-15 14:42:47 +05:30
2019-09-04 21:01:54 +05:30
expect do
post :update, params: params.merge(runner: { description: new_desc } )
end.to change { runner.ensure_runner_queue_value }
2018-10-15 14:42:47 +05:30
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:found)
2019-09-04 21:01:54 +05:30
expect(runner.reload.description).to eq(new_desc)
end
end
context 'when user is not an owner' do
before do
group.add_maintainer(user)
end
it 'rejects the update and responds 404' do
old_desc = runner.description
expect do
post :update, params: params.merge(runner: { description: old_desc.swapcase } )
end.not_to change { runner.ensure_runner_queue_value }
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:not_found)
2019-09-04 21:01:54 +05:30
expect(runner.reload.description).to eq(old_desc)
end
2018-10-15 14:42:47 +05:30
end
end
describe '#destroy' do
2019-09-04 21:01:54 +05:30
context 'when user is an owner' do
before do
group.add_owner(user)
end
it 'destroys the runner and redirects' do
delete :destroy, params: params
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:found)
2019-09-04 21:01:54 +05:30
expect(Ci::Runner.find_by(id: runner.id)).to be_nil
end
end
context 'when user is not an owner' do
before do
group.add_maintainer(user)
end
it 'responds 404 and does not destroy the runner' do
delete :destroy, params: params
2018-10-15 14:42:47 +05:30
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:not_found)
2019-09-04 21:01:54 +05:30
expect(Ci::Runner.find_by(id: runner.id)).to be_present
end
2018-10-15 14:42:47 +05:30
end
end
describe '#resume' do
2019-09-04 21:01:54 +05:30
context 'when user is an owner' do
before do
group.add_owner(user)
end
2018-10-15 14:42:47 +05:30
2019-09-04 21:01:54 +05:30
it 'marks the runner as active, ticks the queue, and redirects' do
runner.update(active: false)
2018-10-15 14:42:47 +05:30
2019-09-04 21:01:54 +05:30
expect do
post :resume, params: params
end.to change { runner.ensure_runner_queue_value }
2018-10-15 14:42:47 +05:30
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:found)
2019-09-04 21:01:54 +05:30
expect(runner.reload.active).to eq(true)
end
end
context 'when user is not an owner' do
before do
group.add_maintainer(user)
end
it 'responds 404 and does not activate the runner' do
runner.update(active: false)
expect do
post :resume, params: params
end.not_to change { runner.ensure_runner_queue_value }
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:not_found)
2019-09-04 21:01:54 +05:30
expect(runner.reload.active).to eq(false)
end
2018-10-15 14:42:47 +05:30
end
end
describe '#pause' do
2019-09-04 21:01:54 +05:30
context 'when user is an owner' do
before do
group.add_owner(user)
end
it 'marks the runner as inactive, ticks the queue, and redirects' do
runner.update(active: true)
expect do
post :pause, params: params
end.to change { runner.ensure_runner_queue_value }
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:found)
2019-09-04 21:01:54 +05:30
expect(runner.reload.active).to eq(false)
end
end
context 'when user is not an owner' do
before do
group.add_maintainer(user)
end
2018-10-15 14:42:47 +05:30
2019-09-04 21:01:54 +05:30
it 'responds 404 and does not update the runner or queue' do
runner.update(active: true)
2018-10-15 14:42:47 +05:30
2019-09-04 21:01:54 +05:30
expect do
post :pause, params: params
end.not_to change { runner.ensure_runner_queue_value }
2018-10-15 14:42:47 +05:30
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:not_found)
2019-09-04 21:01:54 +05:30
expect(runner.reload.active).to eq(true)
end
2018-10-15 14:42:47 +05:30
end
end
end