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

118 lines
3.2 KiB
Ruby
Raw Normal View History

2019-07-31 22:56:46 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe Projects::RunnersController do
2017-08-17 22:00:37 +05:30
let(:user) { create(:user) }
2017-09-10 17:25:29 +05:30
let(:project) { create(:project) }
2018-11-08 19:23:39 +05:30
let(:runner) { create(:ci_runner, :project, projects: [project]) }
2017-08-17 22:00:37 +05:30
let(:params) do
{
namespace_id: project.namespace,
project_id: project,
id: runner
}
end
before do
sign_in(user)
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2017-08-17 22:00:37 +05:30
end
describe '#update' do
it 'updates the runner and ticks the queue' do
new_desc = runner.description.swapcase
expect do
2019-02-15 15:39:39 +05:30
post :update, params: params.merge(runner: { description: new_desc } )
2017-08-17 22:00:37 +05:30
end.to change { runner.ensure_runner_queue_value }
runner.reload
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:found)
2017-08-17 22:00:37 +05:30
expect(runner.description).to eq(new_desc)
end
end
describe '#destroy' do
it 'destroys the runner' do
2019-02-15 15:39:39 +05:30
delete :destroy, params: params
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:found)
2017-08-17 22:00:37 +05:30
expect(Ci::Runner.find_by(id: runner.id)).to be_nil
end
end
describe '#resume' do
it 'marks the runner as active and ticks the queue' do
2021-04-29 21:17:54 +05:30
runner.update!(active: false)
2017-08-17 22:00:37 +05:30
expect do
2019-02-15 15:39:39 +05:30
post :resume, params: params
2017-08-17 22:00:37 +05:30
end.to change { runner.ensure_runner_queue_value }
runner.reload
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:found)
2017-08-17 22:00:37 +05:30
expect(runner.active).to eq(true)
end
end
describe '#pause' do
it 'marks the runner as inactive and ticks the queue' do
2021-04-29 21:17:54 +05:30
runner.update!(active: true)
2017-08-17 22:00:37 +05:30
expect do
2019-02-15 15:39:39 +05:30
post :pause, params: params
2017-08-17 22:00:37 +05:30
end.to change { runner.ensure_runner_queue_value }
runner.reload
2020-03-13 15:44:24 +05:30
expect(response).to have_gitlab_http_status(:found)
2017-08-17 22:00:37 +05:30
expect(runner.active).to eq(false)
end
end
2021-01-03 14:25:43 +05:30
describe '#toggle_shared_runners' do
let(:group) { create(:group) }
let(:project) { create(:project, group: group) }
2021-06-08 01:23:25 +05:30
it 'toggles shared_runners_enabled when the group allows shared runners' do
project.update!(shared_runners_enabled: true)
2021-01-03 14:25:43 +05:30
2021-06-08 01:23:25 +05:30
post :toggle_shared_runners, params: params
2021-01-03 14:25:43 +05:30
2021-06-08 01:23:25 +05:30
project.reload
2021-01-03 14:25:43 +05:30
2021-06-08 01:23:25 +05:30
expect(response).to have_gitlab_http_status(:ok)
expect(project.shared_runners_enabled).to eq(false)
2021-01-03 14:25:43 +05:30
end
2021-06-08 01:23:25 +05:30
it 'toggles shared_runners_enabled when the group disallows shared runners but allows overrides' do
group.update!(shared_runners_enabled: false, allow_descendants_override_disabled_shared_runners: true)
project.update!(shared_runners_enabled: false)
2021-01-03 14:25:43 +05:30
2021-06-08 01:23:25 +05:30
post :toggle_shared_runners, params: params
2021-02-22 17:27:13 +05:30
2021-06-08 01:23:25 +05:30
project.reload
2021-02-22 17:27:13 +05:30
2021-06-08 01:23:25 +05:30
expect(response).to have_gitlab_http_status(:ok)
expect(project.shared_runners_enabled).to eq(true)
end
2021-02-22 17:27:13 +05:30
2021-06-08 01:23:25 +05:30
it 'does not enable if the group disallows shared runners' do
group.update!(shared_runners_enabled: false, allow_descendants_override_disabled_shared_runners: false)
project.update!(shared_runners_enabled: false)
2021-02-22 17:27:13 +05:30
2021-06-08 01:23:25 +05:30
post :toggle_shared_runners, params: params
2021-02-22 17:27:13 +05:30
2021-06-08 01:23:25 +05:30
project.reload
2021-02-22 17:27:13 +05:30
2021-06-08 01:23:25 +05:30
expect(response).to have_gitlab_http_status(:unauthorized)
expect(project.shared_runners_enabled).to eq(false)
expect(json_response['error']).to eq('Cannot enable shared runners because parent group does not allow it')
2021-01-03 14:25:43 +05:30
end
end
2017-08-17 22:00:37 +05:30
end