summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShinya Maeda <shinya@gitlab.com>2018-06-02 11:55:42 +0900
committerShinya Maeda <shinya@gitlab.com>2018-06-02 11:55:42 +0900
commite8ecae7e0be12e6a1fe0e999d724ab5db9bb8b69 (patch)
tree9640410a1dd2805b25efe10735c577d5048684ab
parentb02b2602c1bcfd60b760fbfd1aca936475d78474 (diff)
downloadgitlab-ce-e8ecae7e0be12e6a1fe0e999d724ab5db9bb8b69.tar.gz
Reveert build_relations and simply add a line for creating iid
-rw-r--r--lib/gitlab/ci/pipeline/chain/populate.rb20
-rw-r--r--spec/lib/gitlab/ci/pipeline/chain/populate_spec.rb6
2 files changed, 10 insertions, 16 deletions
diff --git a/lib/gitlab/ci/pipeline/chain/populate.rb b/lib/gitlab/ci/pipeline/chain/populate.rb
index 7a2a1c6a80b..f34c11ca3c2 100644
--- a/lib/gitlab/ci/pipeline/chain/populate.rb
+++ b/lib/gitlab/ci/pipeline/chain/populate.rb
@@ -8,7 +8,13 @@ module Gitlab
PopulateError = Class.new(StandardError)
def perform!
- build_relations
+ # Allocate next IID. This operation must be outside of transactions of pipeline creations.
+ pipeline.ensure_project_iid!
+
+ ##
+ # Populate pipeline with block argument of CreatePipelineService#execute.
+ #
+ @command.seeds_block&.call(pipeline)
##
# Populate pipeline with all stages, and stages with builds.
@@ -31,18 +37,6 @@ module Gitlab
def break?
pipeline.errors.any?
end
-
- private
-
- def build_relations
- ##
- # Populate pipeline with block argument of CreatePipelineService#execute.
- #
- @command.seeds_block&.call(pipeline)
-
- # Allocate next IID. This operation must be outside of transactions of pipeline creations.
- pipeline.ensure_project_iid!
- end
end
end
end
diff --git a/spec/lib/gitlab/ci/pipeline/chain/populate_spec.rb b/spec/lib/gitlab/ci/pipeline/chain/populate_spec.rb
index 7088233f237..e1766fc0ec9 100644
--- a/spec/lib/gitlab/ci/pipeline/chain/populate_spec.rb
+++ b/spec/lib/gitlab/ci/pipeline/chain/populate_spec.rb
@@ -140,10 +140,10 @@ describe Gitlab::Ci::Pipeline::Chain::Populate do
expect { step.perform! }.to raise_error(ActiveRecord::RecordNotSaved)
end
- it 'does not waste pipeline iid' do
- step.perform rescue nil
+ it 'wastes pipeline iid' do
+ expect { step.perform! }.to raise_error
- expect(InternalId.ci_pipelines.where(project_id: project.id).exists?).to be_falsy
+ expect(InternalId.ci_pipelines.where(project_id: project.id).exists?).to be_truthy
end
end
end