Use event `enqueue` instead of `queue`

This commit is contained in:
Kamil Trzcinski 2016-08-12 13:57:58 +02:00
parent d7b681512b
commit ea4ac57853
6 changed files with 34 additions and 23 deletions

View File

@ -59,7 +59,7 @@ module Ci
when: build.when,
user: user,
environment: build.environment,
status_event: 'queue'
status_event: 'enqueue'
)
MergeRequests::AddTodoWhenBuildFailsService.new(build.project, nil).close(new_build)
new_build
@ -102,7 +102,7 @@ module Ci
def play(current_user = nil)
# Try to queue a current build
if self.queue
if self.enqueue
self.update(user: current_user)
self
else

View File

@ -20,7 +20,7 @@ module Ci
after_save :keep_around_commits
state_machine :status, initial: :created do
event :queue do
event :enqueue do
transition created: :pending
transition any - [:created, :pending] => :running
end
@ -224,18 +224,12 @@ module Ci
def build_updated
case latest_builds_status
when 'pending'
queue
when 'running'
run
when 'success'
succeed
when 'failed'
drop
when 'canceled'
cancel
when 'skipped'
skip
when 'pending' then enqueue
when 'running' then run
when 'success' then succeed
when 'failed' then drop
when 'canceled' then cancel
when 'skipped' then skip
end
end

View File

@ -26,7 +26,7 @@ class CommitStatus < ActiveRecord::Base
scope :ignored, -> { where(allow_failure: true, status: [:failed, :canceled]) }
state_machine :status do
event :queue do
event :enqueue do
transition [:created, :skipped] => :pending
end

View File

@ -37,7 +37,7 @@ module Ci
return false unless Statuseable::COMPLETED_STATUSES.include?(current_status)
if valid_statuses_for_when(build.when).include?(current_status)
build.queue
build.enqueue
true
else
build.skip

View File

@ -886,8 +886,10 @@ describe Ci::Build, models: true do
is_expected.to eq(build)
end
context 'for success build' do
before { build.queue }
context 'for successful build' do
before do
build.success
end
it 'creates a new build' do
is_expected.to be_pending

View File

@ -143,7 +143,7 @@ describe Ci::Pipeline, models: true do
expect(pipeline.reload.started_at).not_to be_nil
end
it 'do not update on transitioning to success' do
it 'does not update on transitioning to success' do
build.success
expect(pipeline.reload.started_at).to be_nil
@ -157,7 +157,7 @@ describe Ci::Pipeline, models: true do
expect(pipeline.reload.finished_at).not_to be_nil
end
it 'do not update on transitioning to running' do
it 'does not update on transitioning to running' do
build.run
expect(pipeline.reload.finished_at).to be_nil
@ -257,14 +257,16 @@ describe Ci::Pipeline, models: true do
subject { pipeline.reload.status }
context 'on queuing' do
before { build.queue }
before do
build.enqueue
end
it { is_expected.to eq('pending') }
end
context 'on run' do
before do
build.queue
build.enqueue
build.run
end
@ -294,5 +296,18 @@ describe Ci::Pipeline, models: true do
it { is_expected.to eq('canceled') }
end
context 'on failure and build retry' do
before do
build.drop
Ci::Build.retry(build)
end
# We are changing a state: created > failed > running
# Instead of: created > failed > pending
# Since the pipeline already run, so it should not be pending anymore
it { is_expected.to eq('running') }
end
end
end