Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
fe673b49
Commit
fe673b49
authored
Sep 07, 2017
by
Jarka Kadlecova
Committed by
Felipe Artur
Dec 05, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ensure pippeline corresponds with the sha of an MR
parent
003a816a
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
162 additions
and
28 deletions
+162
-28
app/models/merge_request.rb
app/models/merge_request.rb
+8
-0
app/services/ci/create_pipeline_service.rb
app/services/ci/create_pipeline_service.rb
+18
-5
app/services/merge_requests/refresh_service.rb
app/services/merge_requests/refresh_service.rb
+1
-0
app/workers/update_head_pipeline_for_merge_request_worker.rb
app/workers/update_head_pipeline_for_merge_request_worker.rb
+15
-0
changelogs/unreleased/37354-pipelines-update.yml
changelogs/unreleased/37354-pipelines-update.yml
+5
-0
spec/features/merge_requests/pipelines_spec.rb
spec/features/merge_requests/pipelines_spec.rb
+14
-1
spec/models/merge_request_spec.rb
spec/models/merge_request_spec.rb
+18
-10
spec/services/ci/create_pipeline_service_spec.rb
spec/services/ci/create_pipeline_service_spec.rb
+31
-12
spec/services/merge_requests/refresh_service_spec.rb
spec/services/merge_requests/refresh_service_spec.rb
+14
-0
spec/workers/update_head_pipeline_for_merge_request_worker_spec.rb
...ers/update_head_pipeline_for_merge_request_worker_spec.rb
+38
-0
No files found.
app/models/merge_request.rb
View file @
fe673b49
...
@@ -145,6 +145,14 @@ class MergeRequest < ActiveRecord::Base
...
@@ -145,6 +145,14 @@ class MergeRequest < ActiveRecord::Base
'!'
'!'
end
end
def
head_pipeline
return
unless
head_pipeline_id
last_pipeline
=
Ci
::
Pipeline
.
find
(
head_pipeline_id
)
last_pipeline
.
sha
==
diff_head_sha
?
last_pipeline
:
nil
end
# Pattern used to extract `!123` merge request references from text
# Pattern used to extract `!123` merge request references from text
#
#
# This pattern supports cross-project references.
# This pattern supports cross-project references.
...
...
app/services/ci/create_pipeline_service.rb
View file @
fe673b49
...
@@ -29,7 +29,7 @@ module Ci
...
@@ -29,7 +29,7 @@ module Ci
.
new
(
pipeline
,
command
,
SEQUENCE
)
.
new
(
pipeline
,
command
,
SEQUENCE
)
sequence
.
build!
do
|
pipeline
,
sequence
|
sequence
.
build!
do
|
pipeline
,
sequence
|
update_merge_requests_head_pipeline
if
pipeline
.
persisted?
schedule_head_pipeline_update
if
sequence
.
complete?
if
sequence
.
complete?
cancel_pending_pipelines
if
project
.
auto_cancel_pending_pipelines?
cancel_pending_pipelines
if
project
.
auto_cancel_pending_pipelines?
...
@@ -38,15 +38,18 @@ module Ci
...
@@ -38,15 +38,18 @@ module Ci
pipeline
.
process!
pipeline
.
process!
end
end
end
end
pipeline
end
end
private
private
def
update_merge_requests_head_pipeline
def
commit
return
unless
pipeline
.
latest?
@commit
||=
project
.
commit
(
origin_sha
||
origin_ref
)
end
MergeRequest
.
where
(
source_project:
@pipeline
.
project
,
source_branch:
@pipeline
.
ref
)
def
sha
.
update_all
(
head_pipeline_id:
@pipeline
.
id
)
commit
.
try
(
:
id
)
end
end
def
cancel_pending_pipelines
def
cancel_pending_pipelines
...
@@ -69,5 +72,15 @@ module Ci
...
@@ -69,5 +72,15 @@ module Ci
@pipeline_created_counter
||=
Gitlab
::
Metrics
@pipeline_created_counter
||=
Gitlab
::
Metrics
.
counter
(
:pipelines_created_total
,
"Counter of pipelines created"
)
.
counter
(
:pipelines_created_total
,
"Counter of pipelines created"
)
end
end
def
schedule_head_pipeline_update
related_merge_requests
.
each
do
|
merge_request
|
UpdateHeadPipelineForMergeRequestWorker
.
perform_async
(
merge_request
.
id
)
end
end
def
related_merge_requests
MergeRequest
.
where
(
source_project:
pipeline
.
project
,
source_branch:
pipeline
.
ref
)
end
end
end
end
end
app/services/merge_requests/refresh_service.rb
View file @
fe673b49
...
@@ -76,6 +76,7 @@ module MergeRequests
...
@@ -76,6 +76,7 @@ module MergeRequests
end
end
merge_request
.
mark_as_unchecked
merge_request
.
mark_as_unchecked
UpdateHeadPipelineForMergeRequestWorker
.
perform_async
(
merge_request
.
id
)
end
end
end
end
...
...
app/workers/update_head_pipeline_for_merge_request_worker.rb
0 → 100644
View file @
fe673b49
class
UpdateHeadPipelineForMergeRequestWorker
include
Sidekiq
::
Worker
sidekiq_options
queue:
'pipeline_default'
def
perform
(
merge_request_id
)
merge_request
=
MergeRequest
.
find
(
merge_request_id
)
pipeline
=
Ci
::
Pipeline
.
where
(
project:
merge_request
.
source_project
,
ref:
merge_request
.
source_branch
).
last
return
unless
pipeline
&&
pipeline
.
latest?
raise
ArgumentError
,
'merge request sha does not equal pipeline sha'
if
merge_request
.
diff_head_sha
!=
pipeline
.
sha
merge_request
.
update_attribute
(
:head_pipeline_id
,
pipeline
.
id
)
end
end
changelogs/unreleased/37354-pipelines-update.yml
0 → 100644
View file @
fe673b49
---
title
:
Make sure head pippeline always corresponds with the head sha of an MR
merge_request
:
author
:
type
:
fixed
spec/features/merge_requests/pipelines_spec.rb
View file @
fe673b49
...
@@ -20,10 +20,14 @@ feature 'Pipelines for Merge Requests', :js do
...
@@ -20,10 +20,14 @@ feature 'Pipelines for Merge Requests', :js do
end
end
before
do
before
do
visit
project_merge_request_path
(
project
,
merge_request
)
merge_request
.
update_attribute
(
:head_pipeline_id
,
pipeline
.
id
)
end
end
scenario
'user visits merge request pipelines tab'
do
scenario
'user visits merge request pipelines tab'
do
visit
project_merge_request_path
(
project
,
merge_request
)
expect
(
page
.
find
(
'.ci-widget'
)).
to
have_content
(
'pending'
)
page
.
within
(
'.merge-request-tabs'
)
do
page
.
within
(
'.merge-request-tabs'
)
do
click_link
(
'Pipelines'
)
click_link
(
'Pipelines'
)
end
end
...
@@ -31,6 +35,15 @@ feature 'Pipelines for Merge Requests', :js do
...
@@ -31,6 +35,15 @@ feature 'Pipelines for Merge Requests', :js do
expect
(
page
).
to
have_selector
(
'.stage-cell'
)
expect
(
page
).
to
have_selector
(
'.stage-cell'
)
end
end
scenario
'pipeline sha does not equal last commit sha'
do
pipeline
.
update_attribute
(
:sha
,
'19e2e9b4ef76b422ce1154af39a91323ccc57434'
)
visit
project_merge_request_path
(
project
,
merge_request
)
wait_for_requests
expect
(
page
.
find
(
'.ci-widget'
)).
to
have_content
(
'Could not connect to the CI server. Please check your settings and try again'
)
end
end
end
context
'without pipelines'
do
context
'without pipelines'
do
...
...
spec/models/merge_request_spec.rb
View file @
fe673b49
...
@@ -828,20 +828,28 @@ describe MergeRequest do
...
@@ -828,20 +828,28 @@ describe MergeRequest do
end
end
describe
'#head_pipeline'
do
describe
'#head_pipeline'
do
describe
'when the source project exists'
do
before
do
it
'returns the latest pipeline'
do
allow
(
subject
).
to
receive
(
:diff_head_sha
).
and_return
(
'lastsha'
)
pipeline
=
create
(
:ci_empty_pipeline
,
project:
subject
.
source_project
,
ref:
'master'
,
status:
'running'
,
sha:
"123abc"
,
head_pipeline_of:
subject
)
end
expect
(
subject
.
head_pipeline
).
to
eq
(
pipeline
)
it
'returns nil for MR without head_pipeline_id'
do
end
subject
.
update_attribute
(
:head_pipeline_id
,
nil
)
expect
(
subject
.
head_pipeline
).
to
be_nil
end
end
describe
'when the source project does not exist
'
do
it
'returns nil for MR with old pipeline
'
do
it
'returns nil'
do
pipeline
=
create
(
:ci_empty_pipeline
,
sha:
'notlatestsha'
)
allow
(
subject
).
to
receive
(
:source_project
).
and_return
(
nil
)
subject
.
update_attribute
(
:head_pipeline_id
,
pipeline
.
id
)
expect
(
subject
.
head_pipeline
).
to
be_nil
expect
(
subject
.
head_pipeline
).
to
be_nil
end
end
it
'returns the pipeline for MR with recent pipeline'
do
pipeline
=
create
(
:ci_empty_pipeline
,
sha:
'lastsha'
)
subject
.
update_attribute
(
:head_pipeline_id
,
pipeline
.
id
)
expect
(
subject
.
head_pipeline
).
to
eq
(
pipeline
)
end
end
end
end
...
...
spec/services/ci/create_pipeline_service_spec.rb
View file @
fe673b49
...
@@ -57,19 +57,39 @@ describe Ci::CreatePipelineService do
...
@@ -57,19 +57,39 @@ describe Ci::CreatePipelineService do
end
end
context
'when merge requests already exist for this source branch'
do
context
'when merge requests already exist for this source branch'
do
it
'updates head pipeline of each merge request'
do
let
(
:merge_request_1
)
do
merge_request_1
=
create
(
:merge_request
,
source_branch:
'master'
,
create
(
:merge_request
,
source_branch:
'master'
,
target_branch:
"branch_1"
,
source_project:
project
)
target_branch:
"branch_1"
,
end
source_project:
project
)
let
(
:merge_request_2
)
do
create
(
:merge_request
,
source_branch:
'master'
,
target_branch:
"branch_2"
,
source_project:
project
)
end
merge_request_2
=
create
(
:merge_request
,
source_branch:
'master'
,
context
'when the head pipeline sha equals merge request sha'
do
target_branch:
"branch_2"
,
it
'updates head pipeline of each merge request'
do
source_project:
project
)
merge_request_1
merge_request_2
head_pipeline
=
execute_service
head_pipeline
=
execute_service
expect
(
merge_request_1
.
reload
.
head_pipeline
).
to
eq
(
head_pipeline
)
expect
(
merge_request_1
.
reload
.
head_pipeline
).
to
eq
(
head_pipeline
)
expect
(
merge_request_2
.
reload
.
head_pipeline
).
to
eq
(
head_pipeline
)
expect
(
merge_request_2
.
reload
.
head_pipeline
).
to
eq
(
head_pipeline
)
end
end
context
'when the head pipeline sha does not equal merge request sha'
do
it
'raises the ArgumentError error from worker and does not update the head piepeline of MRs'
do
merge_request_1
merge_request_2
allow_any_instance_of
(
Ci
::
Pipeline
).
to
receive
(
:latest?
).
and_return
(
true
)
expect
{
execute_service
(
after:
'ae73cb07c9eeaf35924a10f713b364d32b2dd34f'
)
}.
to
raise_error
(
ArgumentError
)
last_pipeline
=
Ci
::
Pipeline
.
last
expect
(
merge_request_1
.
reload
.
head_pipeline
).
not_to
eq
(
last_pipeline
)
expect
(
merge_request_2
.
reload
.
head_pipeline
).
not_to
eq
(
last_pipeline
)
end
end
end
context
'when there is no pipeline for source branch'
do
context
'when there is no pipeline for source branch'
do
...
@@ -106,8 +126,7 @@ describe Ci::CreatePipelineService do
...
@@ -106,8 +126,7 @@ describe Ci::CreatePipelineService do
target_branch:
"branch_1"
,
target_branch:
"branch_1"
,
source_project:
project
)
source_project:
project
)
allow_any_instance_of
(
Ci
::
Pipeline
)
allow_any_instance_of
(
Ci
::
Pipeline
).
to
receive
(
:latest?
).
and_return
(
false
)
.
to
receive
(
:latest?
).
and_return
(
false
)
execute_service
execute_service
...
...
spec/services/merge_requests/refresh_service_spec.rb
View file @
fe673b49
...
@@ -74,6 +74,20 @@ describe MergeRequests::RefreshService do
...
@@ -74,6 +74,20 @@ describe MergeRequests::RefreshService do
end
end
end
end
context
'when pipeline exists for the source branch'
do
let!
(
:pipeline
)
{
create
(
:ci_empty_pipeline
,
ref:
@merge_request
.
source_branch
,
project:
@project
,
sha:
@commits
.
first
.
sha
)}
subject
{
service
.
new
(
@project
,
@user
).
execute
(
@oldrev
,
@newrev
,
'refs/heads/master'
)
}
it
'updates the head_pipeline_id for @merge_request'
do
expect
{
subject
}.
to
change
{
@merge_request
.
reload
.
head_pipeline_id
}.
from
(
nil
).
to
(
pipeline
.
id
)
end
it
'does not update the head_pipeline_id for @fork_merge_request'
do
expect
{
subject
}.
not_to
change
{
@fork_merge_request
.
reload
.
head_pipeline_id
}
end
end
context
'push to origin repo source branch when an MR was reopened'
do
context
'push to origin repo source branch when an MR was reopened'
do
let
(
:refresh_service
)
{
service
.
new
(
@project
,
@user
)
}
let
(
:refresh_service
)
{
service
.
new
(
@project
,
@user
)
}
...
...
spec/workers/update_head_pipeline_for_merge_request_worker_spec.rb
0 → 100644
View file @
fe673b49
require
'spec_helper'
describe
UpdateHeadPipelineForMergeRequestWorker
do
describe
'#perform'
do
let
(
:user
)
{
create
(
:user
)
}
let
(
:project
)
{
create
(
:project
,
:repository
)
}
let
(
:merge_request
)
{
create
(
:merge_request
,
source_project:
project
)
}
let
(
:latest_sha
)
{
'b83d6e391c22777fca1ed3012fce84f633d7fed0'
}
context
'when pipeline exists for the source project and branch'
do
before
do
create
(
:ci_empty_pipeline
,
project:
project
,
ref:
merge_request
.
source_branch
,
sha:
latest_sha
)
end
it
'updates the head_pipeline_id of the merge_request'
do
expect
{
subject
.
perform
(
merge_request
.
id
)
}.
to
change
{
merge_request
.
reload
.
head_pipeline_id
}
end
context
'when merge request sha does not equal pipeline sha'
do
before
do
merge_request
.
merge_request_diff
.
update
(
head_commit_sha:
'different_sha'
)
end
it
'does not update head_pipeline_id'
do
expect
{
subject
.
perform
(
merge_request
.
id
)
}.
to
raise_error
(
ArgumentError
)
expect
(
merge_request
.
reload
.
head_pipeline_id
).
to
eq
(
nil
)
end
end
end
context
'when pipeline does not exist for the source project and branch'
do
it
'does not update the head_pipeline_id of the merge_request'
do
expect
{
subject
.
perform
(
merge_request
.
id
)
}.
not_to
change
{
merge_request
.
reload
.
head_pipeline_id
}
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment