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

74 lines
1.7 KiB
Ruby
Raw Normal View History

2018-10-15 14:42:47 +05:30
require 'spec_helper'
describe Groups::RunnersController do
let(:user) { create(:user) }
let(:group) { create(:group) }
2018-11-08 19:23:39 +05:30
let(:runner) { create(:ci_runner, :group, groups: [group]) }
2018-10-15 14:42:47 +05:30
let(:params) do
{
group_id: group,
id: runner
}
end
before do
sign_in(user)
2018-11-18 11:00:15 +05:30
group.add_maintainer(user)
2018-10-15 14:42:47 +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 } )
2018-10-15 14:42:47 +05:30
end.to change { runner.ensure_runner_queue_value }
runner.reload
expect(response).to have_gitlab_http_status(302)
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
2018-10-15 14:42:47 +05:30
expect(response).to have_gitlab_http_status(302)
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
runner.update(active: false)
expect do
2019-02-15 15:39:39 +05:30
post :resume, params: params
2018-10-15 14:42:47 +05:30
end.to change { runner.ensure_runner_queue_value }
runner.reload
expect(response).to have_gitlab_http_status(302)
expect(runner.active).to eq(true)
end
end
describe '#pause' do
it 'marks the runner as inactive and ticks the queue' do
runner.update(active: true)
expect do
2019-02-15 15:39:39 +05:30
post :pause, params: params
2018-10-15 14:42:47 +05:30
end.to change { runner.ensure_runner_queue_value }
runner.reload
expect(response).to have_gitlab_http_status(302)
expect(runner.active).to eq(false)
end
end
end