Commit 260d754c authored by Kamil Trzcinski's avatar Kamil Trzcinski

Fix handling of allowed to failure jobs

parent 6d80b94a
...@@ -114,7 +114,7 @@ module Ci ...@@ -114,7 +114,7 @@ module Ci
pluck('sg.stage', status_sql) pluck('sg.stage', status_sql)
stages_with_statuses.map do |stage| stages_with_statuses.map do |stage|
Ci::Stage.new(self, stage.first, status: stage.last) Ci::Stage.new(self, name: stage.first, status: stage.last)
end end
end end
......
...@@ -31,14 +31,9 @@ class CommitStatus < ActiveRecord::Base ...@@ -31,14 +31,9 @@ class CommitStatus < ActiveRecord::Base
end end
scope :exclude_ignored, -> do scope :exclude_ignored, -> do
quoted_when = connection.quote_column_name('when')
# We want to ignore failed_but_allowed jobs # We want to ignore failed_but_allowed jobs
where("allow_failure = ? OR status IN (?)", where("allow_failure = ? OR status IN (?)",
false, all_state_names - [:failed, :canceled]). false, all_state_names - [:failed, :canceled])
# We want to ignore skipped manual jobs
where("#{quoted_when} <> ? OR status <> ?", 'manual', 'skipped').
# We want to ignore skipped on_failure
where("#{quoted_when} <> ? OR status <> ?", 'on_failure', 'skipped')
end end
scope :latest_ordered, -> { latest.ordered.includes(project: :namespace) } scope :latest_ordered, -> { latest.ordered.includes(project: :namespace) }
......
...@@ -24,8 +24,9 @@ module HasStatus ...@@ -24,8 +24,9 @@ module HasStatus
"(CASE "(CASE
WHEN (#{builds})=(#{skipped}) THEN 'skipped' WHEN (#{builds})=(#{skipped}) THEN 'skipped'
WHEN (#{builds})=(#{success}) THEN 'success'
WHEN (#{builds})=(#{created}) THEN 'created' WHEN (#{builds})=(#{created}) THEN 'created'
WHEN (#{builds})=(#{success})+(#{skipped}) THEN 'success' WHEN (#{builds})=(#{success})+(#{skipped}) THEN 'skipped'
WHEN (#{builds})=(#{success})+(#{skipped})+(#{canceled}) THEN 'canceled' WHEN (#{builds})=(#{success})+(#{skipped})+(#{canceled}) THEN 'canceled'
WHEN (#{builds})=(#{created})+(#{skipped})+(#{pending}) THEN 'pending' WHEN (#{builds})=(#{created})+(#{skipped})+(#{pending}) THEN 'pending'
WHEN (#{running})+(#{pending})+(#{created})>0 THEN 'running' WHEN (#{running})+(#{pending})+(#{created})>0 THEN 'running'
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
Cant find HEAD commit for this branch Cant find HEAD commit for this branch
%td.stage-cell %td.stage-cell
- pipeline.stages_with_statuses.each do |stage| - pipeline.stages.each do |stage|
- if stage.status - if stage.status
- tooltip = "#{stage.name.titleize}: #{stage.status || 'not found'}" - tooltip = "#{stage.name.titleize}: #{stage.status || 'not found'}"
.stage-container .stage-container
......
...@@ -20,8 +20,6 @@ describe Ci::Pipeline, models: true do ...@@ -20,8 +20,6 @@ describe Ci::Pipeline, models: true do
it { is_expected.to respond_to :git_author_email } it { is_expected.to respond_to :git_author_email }
it { is_expected.to respond_to :short_sha } it { is_expected.to respond_to :short_sha }
it { is_expected.to delegate_method(:stages).to(:statuses) }
describe '#valid_commit_sha' do describe '#valid_commit_sha' do
context 'commit.sha can not start with 00000000' do context 'commit.sha can not start with 00000000' do
before do before do
...@@ -125,16 +123,51 @@ describe Ci::Pipeline, models: true do ...@@ -125,16 +123,51 @@ describe Ci::Pipeline, models: true do
end end
describe '#stages' do describe '#stages' do
let(:pipeline2) { FactoryGirl.create :ci_pipeline, project: project }
subject { CommitStatus.where(pipeline: [pipeline, pipeline2]).stages }
before do before do
FactoryGirl.create :ci_build, pipeline: pipeline2, stage: 'test', stage_idx: 1 create(:commit_status, pipeline: pipeline, stage: 'build', name: 'linux', stage_idx: 0, status: 'success')
FactoryGirl.create :ci_build, pipeline: pipeline, stage: 'build', stage_idx: 0 create(:commit_status, pipeline: pipeline, stage: 'build', name: 'mac', stage_idx: 0, status: 'failed')
create(:commit_status, pipeline: pipeline, stage: 'deploy', name: 'staging', stage_idx: 2, status: 'running')
create(:commit_status, pipeline: pipeline, stage: 'test', name: 'rspec', stage_idx: 1, status: 'success')
end end
it 'return all stages' do subject { pipeline.stages }
is_expected.to eq(%w(build test))
context 'stages list' do
it 'returns ordered list of stages' do
expect(subject.map(&:name)).to eq(%w[build test deploy])
end
end
it 'returns a valid number of stages' do
expect(pipeline.stages_count).to eq(3)
end
context 'stages with statuses' do
let(:statuses) do
subject.map do |stage|
[stage.name, stage.status]
end
end
it 'returns list of stages with statuses' do
expect(statuses).to eq([['build', 'failed'],
['test', 'success'],
['deploy', 'running']
])
end
context 'when build is retried' do
before do
create(:commit_status, pipeline: pipeline, stage: 'build', name: 'mac', stage_idx: 0, status: 'success')
end
it 'ignores the previous state' do
expect(statuses).to eq([['build', 'success'],
['test', 'success'],
['deploy', 'running']
])
end
end
end end
end end
......
...@@ -175,7 +175,7 @@ describe CommitStatus, models: true do ...@@ -175,7 +175,7 @@ describe CommitStatus, models: true do
end end
it 'returns statuses without what we want to ignore' do it 'returns statuses without what we want to ignore' do
is_expected.to eq(statuses.values_at(1, 2, 4, 5, 6, 8, 9)) is_expected.to eq(statuses.values_at(0, 1, 2, 3, 4, 5, 6, 8, 9))
end end
end end
...@@ -200,49 +200,6 @@ describe CommitStatus, models: true do ...@@ -200,49 +200,6 @@ describe CommitStatus, models: true do
end end
end end
describe '#stages' do
before do
create :commit_status, pipeline: pipeline, stage: 'build', name: 'linux', stage_idx: 0, status: 'success'
create :commit_status, pipeline: pipeline, stage: 'build', name: 'mac', stage_idx: 0, status: 'failed'
create :commit_status, pipeline: pipeline, stage: 'deploy', name: 'staging', stage_idx: 2, status: 'running'
create :commit_status, pipeline: pipeline, stage: 'test', name: 'rspec', stage_idx: 1, status: 'success'
end
context 'stages list' do
subject { CommitStatus.where(pipeline: pipeline).stages }
it 'returns ordered list of stages' do
is_expected.to eq(%w[build test deploy])
end
end
context 'stages with statuses' do
subject { CommitStatus.where(pipeline: pipeline).latest.stages_status }
it 'returns list of stages with statuses' do
is_expected.to eq({
'build' => 'failed',
'test' => 'success',
'deploy' => 'running'
})
end
context 'when build is retried' do
before do
create :commit_status, pipeline: pipeline, stage: 'build', name: 'mac', stage_idx: 0, status: 'success'
end
it 'ignores a previous state' do
is_expected.to eq({
'build' => 'success',
'test' => 'success',
'deploy' => 'running'
})
end
end
end
end
describe '#commit' do describe '#commit' do
it 'returns commit pipeline has been created for' do it 'returns commit pipeline has been created for' do
expect(commit_status.commit).to eq project.commit expect(commit_status.commit).to eq project.commit
......
...@@ -48,7 +48,7 @@ describe HasStatus do ...@@ -48,7 +48,7 @@ describe HasStatus do
[create(type, status: :failed, allow_failure: true)] [create(type, status: :failed, allow_failure: true)]
end end
it { is_expected.to eq 'success' } it { is_expected.to eq 'skipped' }
end end
context 'success and canceled' do context 'success and canceled' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment