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
12a293ee
Commit
12a293ee
authored
Apr 06, 2021
by
Furkan Ayhan
Committed by
Bob Van Landuyt
Apr 06, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add correlation id in X-Request-ID for external pipeline validation
parent
63b285ee
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
3 deletions
+20
-3
changelogs/unreleased/326106-correlation-id-to-validation-service.yml
...nreleased/326106-correlation-id-to-validation-service.yml
+5
-0
lib/gitlab/ci/pipeline/chain/validate/external.rb
lib/gitlab/ci/pipeline/chain/validate/external.rb
+4
-2
spec/lib/gitlab/ci/pipeline/chain/validate/external_spec.rb
spec/lib/gitlab/ci/pipeline/chain/validate/external_spec.rb
+11
-1
No files found.
changelogs/unreleased/326106-correlation-id-to-validation-service.yml
0 → 100644
View file @
12a293ee
---
title
:
Add correlation id in X-Request-ID for external pipeline validation
merge_request
:
58486
author
:
type
:
other
lib/gitlab/ci/pipeline/chain/validate/external.rb
View file @
12a293ee
...
@@ -69,8 +69,10 @@ module Gitlab
...
@@ -69,8 +69,10 @@ module Gitlab
end
end
def
validate_service_request
def
validate_service_request
headers
=
{}
headers
=
{
headers
[
'X-Gitlab-Token'
]
=
validation_service_token
if
validation_service_token
'X-Request-ID'
=>
Labkit
::
Correlation
::
CorrelationId
.
current_id
,
'X-Gitlab-Token'
=>
validation_service_token
}.
compact
Gitlab
::
HTTP
.
post
(
Gitlab
::
HTTP
.
post
(
validation_service_url
,
timeout:
validation_service_timeout
,
validation_service_url
,
timeout:
validation_service_timeout
,
...
...
spec/lib/gitlab/ci/pipeline/chain/validate/external_spec.rb
View file @
12a293ee
...
@@ -127,13 +127,23 @@ RSpec.describe Gitlab::Ci::Pipeline::Chain::Validate::External do
...
@@ -127,13 +127,23 @@ RSpec.describe Gitlab::Ci::Pipeline::Chain::Validate::External do
it
'passes token in X-Gitlab-Token header'
do
it
'passes token in X-Gitlab-Token header'
do
expect
(
::
Gitlab
::
HTTP
).
to
receive
(
:post
)
do
|
_url
,
params
|
expect
(
::
Gitlab
::
HTTP
).
to
receive
(
:post
)
do
|
_url
,
params
|
expect
(
params
[
:headers
]).
to
eq
({
'X-Gitlab-Token'
=>
'123'
})
expect
(
params
[
:headers
]).
to
include
({
'X-Gitlab-Token'
=>
'123'
})
end
end
perform!
perform!
end
end
end
end
it
'passes the correlation id in X-Request-ID header'
do
allow
(
Labkit
::
Correlation
::
CorrelationId
).
to
receive
(
:current_id
).
and_return
(
'correlation-id'
)
expect
(
::
Gitlab
::
HTTP
).
to
receive
(
:post
)
do
|
_url
,
params
|
expect
(
params
[
:headers
]).
to
include
({
'X-Request-ID'
=>
'correlation-id'
})
end
perform!
end
context
'when validation returns 200 OK'
do
context
'when validation returns 200 OK'
do
before
do
before
do
stub_request
(
:post
,
validation_service_url
).
to_return
(
status:
200
,
body:
"{}"
)
stub_request
(
:post
,
validation_service_url
).
to_return
(
status:
200
,
body:
"{}"
)
...
...
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