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

106 lines
2.6 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'
describe Admin::RunnersController do
2019-07-07 11:18:12 +05:30
let!(:runner) { create(:ci_runner) }
2017-08-17 22:00:37 +05:30
before do
sign_in(create(:admin))
end
describe '#index' do
2019-07-07 11:18:12 +05:30
render_views
2017-08-17 22:00:37 +05:30
it 'lists all runners' do
get :index
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-08-17 22:00:37 +05:30
end
2019-07-07 11:18:12 +05:30
it 'avoids N+1 queries', :request_store do
get :index
control_count = ActiveRecord::QueryRecorder.new { get :index }.count
2019-09-30 21:07:59 +05:30
create_list(:ci_runner, 5, :tagged_only)
2019-07-07 11:18:12 +05:30
# There is still an N+1 query for `runner.builds.count`
2019-09-30 21:07:59 +05:30
# We also need to add 1 because it takes 2 queries to preload tags
expect { get :index }.not_to exceed_query_limit(control_count + 6)
2019-07-07 11:18:12 +05:30
expect(response).to have_gitlab_http_status(200)
expect(response.body).to have_content('tag1')
expect(response.body).to have_content('tag2')
end
2017-08-17 22:00:37 +05:30
end
describe '#show' do
it 'shows a particular runner' do
2019-02-15 15:39:39 +05:30
get :show, params: { id: runner.id }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(200)
2017-08-17 22:00:37 +05:30
end
it 'shows 404 for unknown runner' do
2019-02-15 15:39:39 +05:30
get :show, params: { id: 0 }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(404)
2017-08-17 22:00:37 +05:30
end
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: { id: runner.id, runner: { description: new_desc } }
2017-08-17 22:00:37 +05:30
end.to change { runner.ensure_runner_queue_value }
runner.reload
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(302)
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: { id: runner.id }
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(302)
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
runner.update(active: false)
expect do
2019-02-15 15:39:39 +05:30
post :resume, params: { id: runner.id }
2017-08-17 22:00:37 +05:30
end.to change { runner.ensure_runner_queue_value }
runner.reload
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(302)
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
runner.update(active: true)
expect do
2019-02-15 15:39:39 +05:30
post :pause, params: { id: runner.id }
2017-08-17 22:00:37 +05:30
end.to change { runner.ensure_runner_queue_value }
runner.reload
2018-03-17 18:26:18 +05:30
expect(response).to have_gitlab_http_status(302)
2017-08-17 22:00:37 +05:30
expect(runner.active).to eq(false)
end
end
end