Minor runner-related code refactorings
This commit is contained in:
parent
c3c503d259
commit
4cc77c3bf8
4 changed files with 22 additions and 21 deletions
|
@ -9,17 +9,18 @@ class Admin::RunnersController < Admin::ApplicationController
|
|||
end
|
||||
|
||||
def show
|
||||
set_builds_and_projects
|
||||
assign_builds_and_projects
|
||||
end
|
||||
|
||||
def update
|
||||
unless @runner.update_attributes(runner_params)
|
||||
set_builds_and_projects and return render 'show'
|
||||
end
|
||||
|
||||
respond_to do |format|
|
||||
format.js
|
||||
format.html { redirect_to admin_runner_path(@runner) }
|
||||
if @runner.update_attributes(runner_params)
|
||||
respond_to do |format|
|
||||
format.js
|
||||
format.html { redirect_to admin_runner_path(@runner) }
|
||||
end
|
||||
else
|
||||
assign_builds_and_projects
|
||||
render 'show'
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -55,7 +56,7 @@ class Admin::RunnersController < Admin::ApplicationController
|
|||
params.require(:runner).permit(Ci::Runner::FORM_EDITABLE)
|
||||
end
|
||||
|
||||
def set_builds_and_projects
|
||||
def assign_builds_and_projects
|
||||
@builds = runner.builds.order('id DESC').first(30)
|
||||
@projects =
|
||||
if params[:search].present?
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
.col-sm-10
|
||||
.checkbox
|
||||
= f.check_box :run_untagged
|
||||
%span.light Indicates whether runner can pick jobs without tags
|
||||
%span.light Indicates whether this runner can pick jobs without tags
|
||||
.form-group
|
||||
= label_tag :token, class: 'control-label' do
|
||||
Token
|
||||
|
|
|
@ -129,7 +129,7 @@ describe "Runners" do
|
|||
context 'when runner has tags' do
|
||||
before { runner.update_attribute(:tag_list, ['tag']) }
|
||||
|
||||
scenario 'user want to prevent runner from running untagged job' do
|
||||
scenario 'user wants to prevent runner from running untagged job' do
|
||||
visit runners_path(project)
|
||||
page.within('.activated-specific-runners') do
|
||||
first('small > a').click
|
||||
|
|
|
@ -16,7 +16,7 @@ describe Ci::API::API do
|
|||
before { post ci_api("/runners/register"), token: registration_token }
|
||||
|
||||
it 'creates runner with default values' do
|
||||
expect(response.status).to eq(201)
|
||||
expect(response).to have_http_status 201
|
||||
expect(Ci::Runner.first.run_untagged).to be true
|
||||
end
|
||||
end
|
||||
|
@ -28,7 +28,7 @@ describe Ci::API::API do
|
|||
end
|
||||
|
||||
it 'creates runner' do
|
||||
expect(response.status).to eq(201)
|
||||
expect(response).to have_http_status 201
|
||||
expect(Ci::Runner.first.description).to eq("server.hostname")
|
||||
end
|
||||
end
|
||||
|
@ -40,7 +40,7 @@ describe Ci::API::API do
|
|||
end
|
||||
|
||||
it 'creates runner' do
|
||||
expect(response.status).to eq(201)
|
||||
expect(response).to have_http_status 201
|
||||
expect(Ci::Runner.first.tag_list.sort).to eq(["tag1", "tag2"])
|
||||
end
|
||||
end
|
||||
|
@ -52,7 +52,7 @@ describe Ci::API::API do
|
|||
run_untagged: false,
|
||||
tag_list: ['tag']
|
||||
|
||||
expect(response.status).to eq(201)
|
||||
expect(response).to have_http_status 201
|
||||
expect(Ci::Runner.first.run_untagged).to be false
|
||||
end
|
||||
end
|
||||
|
@ -62,7 +62,7 @@ describe Ci::API::API do
|
|||
post ci_api("/runners/register"), token: registration_token,
|
||||
run_untagged: false
|
||||
|
||||
expect(response.status).to eq(404)
|
||||
expect(response).to have_http_status 404
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -72,7 +72,7 @@ describe Ci::API::API do
|
|||
before { post ci_api("/runners/register"), token: project.runners_token }
|
||||
|
||||
it 'creates runner' do
|
||||
expect(response.status).to eq(201)
|
||||
expect(response).to have_http_status 201
|
||||
expect(project.runners.size).to eq(1)
|
||||
end
|
||||
end
|
||||
|
@ -81,7 +81,7 @@ describe Ci::API::API do
|
|||
it 'returns 403 error' do
|
||||
post ci_api("/runners/register"), token: 'invalid'
|
||||
|
||||
expect(response.status).to eq(403)
|
||||
expect(response).to have_http_status 403
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -89,7 +89,7 @@ describe Ci::API::API do
|
|||
it 'returns 400 error' do
|
||||
post ci_api("/runners/register")
|
||||
|
||||
expect(response.status).to eq(400)
|
||||
expect(response).to have_http_status 400
|
||||
end
|
||||
end
|
||||
|
||||
|
@ -101,7 +101,7 @@ describe Ci::API::API do
|
|||
|
||||
it do
|
||||
post ci_api("/runners/register"), token: registration_token, info: { param => value }
|
||||
expect(response.status).to eq(201)
|
||||
expect(response).to have_http_status 201
|
||||
is_expected.to eq(value)
|
||||
end
|
||||
end
|
||||
|
@ -112,7 +112,7 @@ describe Ci::API::API do
|
|||
let!(:runner) { FactoryGirl.create(:ci_runner) }
|
||||
before { delete ci_api("/runners/delete"), token: runner.token }
|
||||
|
||||
it { expect(response.status).to eq(200) }
|
||||
it { expect(response).to have_http_status 200 }
|
||||
it { expect(Ci::Runner.count).to eq(0) }
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue