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
0
Merge Requests
0
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
Léo-Paul Géneau
gitlab-ce
Commits
000f9d01
Commit
000f9d01
authored
Mar 22, 2018
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Decouple YAML processor from pipeline objects
parent
0e51842d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
43 additions
and
57 deletions
+43
-57
app/models/ci/pipeline.rb
app/models/ci/pipeline.rb
+7
-1
lib/gitlab/ci/yaml_processor.rb
lib/gitlab/ci/yaml_processor.rb
+14
-34
spec/lib/gitlab/ci/yaml_processor_spec.rb
spec/lib/gitlab/ci/yaml_processor_spec.rb
+22
-22
No files found.
app/models/ci/pipeline.rb
View file @
000f9d01
...
...
@@ -362,7 +362,13 @@ module Ci
def
stage_seeds
return
[]
unless
config_processor
@stage_seeds
||=
config_processor
.
stage_seeds
(
self
)
strong_memoize
(
:stage_seeds
)
do
seeds
=
config_processor
.
stages
.
map
do
|
attributes
|
Gitlab
::
Ci
::
Pipeline
::
Seed
::
Stage
.
new
(
self
,
attributes
)
end
seeds
.
select
(
&
:included?
)
end
end
def
has_kubernetes_active?
...
...
lib/gitlab/ci/yaml_processor.rb
View file @
000f9d01
...
...
@@ -53,62 +53,42 @@ module Gitlab
}.
compact
}
end
# REFACTORING, this needs improvement
# REFACTORING, this needs improvement
, and specs
#
def
build_seed
_attributes
(
stage
)
def
stage
_attributes
(
stage
)
selected
=
@jobs
.
values
.
select
do
|
job
|
job
[
:stage
]
==
stage
end
selected
.
map
do
|
job
|
build_attributes
(
job
[
:name
])
.
merge
(
only:
job
.
fetch
(
:only
,
{}))
.
merge
(
except:
job
.
fetch
(
:except
,
{}))
end
end
# REFACTORING,
slated for removal
# REFACTORING,
needs specs
#
def
pipeline_stage_builds
(
stage
,
pipeline
)
selected_jobs
=
@jobs
.
select
do
|
_
,
job
|
next
unless
job
[
:stage
]
==
stage
only_specs
=
Gitlab
::
Ci
::
Build
::
Policy
.
fabricate
(
job
.
fetch
(
:only
,
{}))
except_specs
=
Gitlab
::
Ci
::
Build
::
Policy
.
fabricate
(
job
.
fetch
(
:except
,
{}))
only_specs
.
all?
{
|
spec
|
spec
.
satisfied_by?
(
pipeline
)
}
&&
except_specs
.
none?
{
|
spec
|
spec
.
satisfied_by?
(
pipeline
)
}
end
def
seed_attributes
(
stage
)
seeds
=
stage_attributes
(
stage
).
map
do
|
attributes
|
job
=
@jobs
.
fetch
(
attributes
[
:name
].
to_sym
)
selected_jobs
.
map
{
|
_
,
job
|
build_attributes
(
job
[
:name
])
}
attributes
.
merge
(
only:
job
.
fetch
(
:only
,
{}))
.
merge
(
except:
job
.
fetch
(
:except
,
{}))
end
def
stage_seed_attributes
(
stage
)
{
name:
stage
,
index:
@stages
.
index
(
stage
),
builds:
build_seed_attributes
(
stage
)
}
builds:
seeds
}
end
# REFACTORING, slated for removal
# * WARNING this method is currently evaluating only/except policies
# in two places - Seed::Build, and in pipeline_stage_builds
# * WARNING it needs to be refactored to use SSOT
# REFACTORING, needs specs
#
def
stage_seeds
(
pipeline
)
seeds
=
@stages
.
uniq
.
map
do
|
stage
|
builds
=
pipeline_stage_builds
(
stage
,
pipeline
)
if
builds
.
any?
Gitlab
::
Ci
::
Pipeline
::
Seed
::
Stage
.
new
(
pipeline
,
stage_seed_attributes
(
stage
))
def
stages
@stages
.
uniq
.
map
do
|
stage
|
seed_attributes
(
stage
)
end
end
seeds
.
compact
end
def
self
.
validation_message
(
content
)
return
'Please provide content of .gitlab-ci.yml'
if
content
.
blank?
...
...
spec/lib/gitlab/ci/yaml_processor_spec.rb
View file @
000f9d01
...
...
@@ -203,7 +203,7 @@ module Gitlab
let
(
:config_data
)
{
YAML
.
dump
(
config
)
}
let
(
:config_processor
)
{
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config_data
)
}
subject
{
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
first
}
subject
{
config_processor
.
stage_attributes
(
'test'
).
first
}
describe
"before_script"
do
context
"in global context"
do
...
...
@@ -286,8 +286,8 @@ module Gitlab
config_processor
=
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
first
).
to
eq
({
expect
(
config_processor
.
stage_attributes
(
"test"
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
stage_attributes
(
"test"
).
first
).
to
eq
({
stage:
"test"
,
stage_idx:
1
,
name:
"rspec"
,
...
...
@@ -321,8 +321,8 @@ module Gitlab
config_processor
=
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
first
).
to
eq
({
expect
(
config_processor
.
stage_attributes
(
"test"
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
stage_attributes
(
"test"
).
first
).
to
eq
({
stage:
"test"
,
stage_idx:
1
,
name:
"rspec"
,
...
...
@@ -354,8 +354,8 @@ module Gitlab
config_processor
=
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
first
).
to
eq
({
expect
(
config_processor
.
stage_attributes
(
"test"
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
stage_attributes
(
"test"
).
first
).
to
eq
({
stage:
"test"
,
stage_idx:
1
,
name:
"rspec"
,
...
...
@@ -383,8 +383,8 @@ module Gitlab
config_processor
=
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
first
).
to
eq
({
expect
(
config_processor
.
stage_attributes
(
"test"
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
stage_attributes
(
"test"
).
first
).
to
eq
({
stage:
"test"
,
stage_idx:
1
,
name:
"rspec"
,
...
...
@@ -529,8 +529,8 @@ module Gitlab
})
config_processor
=
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
builds
=
config_processor
.
stage_attributes
(
"test"
)
builds
=
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
))
expect
(
builds
.
size
).
to
eq
(
1
)
expect
(
builds
.
first
[
:when
]).
to
eq
(
when_state
)
end
...
...
@@ -561,8 +561,8 @@ module Gitlab
config_processor
=
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
first
[
:options
][
:cache
]).
to
eq
(
expect
(
config_processor
.
stage_attributes
(
"test"
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
stage_attributes
(
"test"
).
first
[
:options
][
:cache
]).
to
eq
(
paths:
[
"logs/"
,
"binaries/"
],
untracked:
true
,
key:
'key'
,
...
...
@@ -580,8 +580,8 @@ module Gitlab
config_processor
=
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
first
[
:options
][
:cache
]).
to
eq
(
expect
(
config_processor
.
stage_attributes
(
"test"
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
stage_attributes
(
"test"
).
first
[
:options
][
:cache
]).
to
eq
(
paths:
[
"logs/"
,
"binaries/"
],
untracked:
true
,
key:
'key'
,
...
...
@@ -600,8 +600,8 @@ module Gitlab
config_processor
=
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
first
[
:options
][
:cache
]).
to
eq
(
expect
(
config_processor
.
stage_attributes
(
"test"
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
stage_attributes
(
"test"
).
first
[
:options
][
:cache
]).
to
eq
(
paths:
[
"test/"
],
untracked:
false
,
key:
'local'
,
...
...
@@ -629,8 +629,8 @@ module Gitlab
config_processor
=
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
).
first
).
to
eq
({
expect
(
config_processor
.
stage_attributes
(
"test"
).
size
).
to
eq
(
1
)
expect
(
config_processor
.
stage_attributes
(
"test"
).
first
).
to
eq
({
stage:
"test"
,
stage_idx:
1
,
name:
"rspec"
,
...
...
@@ -666,8 +666,8 @@ module Gitlab
})
config_processor
=
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
builds
=
config_processor
.
stage_attributes
(
"test"
)
builds
=
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
))
expect
(
builds
.
size
).
to
eq
(
1
)
expect
(
builds
.
first
[
:options
][
:artifacts
][
:when
]).
to
eq
(
when_state
)
end
...
...
@@ -682,7 +682,7 @@ module Gitlab
end
let
(
:processor
)
{
Gitlab
::
Ci
::
YamlProcessor
.
new
(
YAML
.
dump
(
config
))
}
let
(
:builds
)
{
processor
.
pipeline_stage_builds
(
'deploy'
,
pipeline
(
ref:
'master'
)
)
}
let
(
:builds
)
{
processor
.
stage_attributes
(
'deploy'
)
}
context
'when a production environment is specified'
do
let
(
:environment
)
{
'production'
}
...
...
@@ -839,7 +839,7 @@ module Gitlab
describe
"Hidden jobs"
do
let
(
:config_processor
)
{
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
}
subject
{
config_processor
.
pipeline_stage_builds
(
"test"
,
pipeline
(
ref:
"master"
)
)
}
subject
{
config_processor
.
stage_attributes
(
"test"
)
}
shared_examples
'hidden_job_handling'
do
it
"doesn't create jobs that start with dot"
do
...
...
@@ -887,7 +887,7 @@ module Gitlab
describe
"YAML Alias/Anchor"
do
let
(
:config_processor
)
{
Gitlab
::
Ci
::
YamlProcessor
.
new
(
config
)
}
subject
{
config_processor
.
pipeline_stage_builds
(
"build"
,
pipeline
(
ref:
"master"
)
)
}
subject
{
config_processor
.
stage_attributes
(
"build"
)
}
shared_examples
'job_templates_handling'
do
it
"is correctly supported for jobs"
do
...
...
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