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
b9e32976
Commit
b9e32976
authored
Mar 22, 2018
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add specs for pipeline chain that builds stages and jobs
parent
109ecf6f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
52 additions
and
11 deletions
+52
-11
lib/gitlab/ci/pipeline/chain/populate.rb
lib/gitlab/ci/pipeline/chain/populate.rb
+7
-3
lib/gitlab/ci/pipeline/seed/stage.rb
lib/gitlab/ci/pipeline/seed/stage.rb
+3
-7
spec/lib/gitlab/ci/pipeline/chain/populate_spec.rb
spec/lib/gitlab/ci/pipeline/chain/populate_spec.rb
+20
-1
spec/lib/gitlab/ci/pipeline/seed/stage_spec.rb
spec/lib/gitlab/ci/pipeline/seed/stage_spec.rb
+22
-0
No files found.
lib/gitlab/ci/pipeline/chain/populate.rb
View file @
b9e32976
...
...
@@ -16,10 +16,14 @@ module Gitlab
##
# Populate pipeline with all stages and builds from pipeline seeds.
#
pipeline
.
stage_seeds
.
each
do
|
s
eed
|
s
eed
.
user
=
current_user
pipeline
.
stage_seeds
.
each
do
|
s
tage
|
s
tage
.
user
=
current_user
pipeline
.
stages
<<
seed
.
to_resource
pipeline
.
stages
<<
stage
.
to_resource
stage
.
seeds
.
each
do
|
build
|
pipeline
.
builds
<<
build
.
to_resource
end
end
if
pipeline
.
stages
.
none?
...
...
lib/gitlab/ci/pipeline/seed/stage.rb
View file @
b9e32976
...
...
@@ -33,18 +33,14 @@ module Gitlab
end
end
# TODO specs
#
def
included?
seeds
.
any?
end
def
to_resource
@stage
||=
::
Ci
::
Stage
.
new
(
attributes
).
tap
do
|
stage
|
@seeds
.
each
do
|
seed
|
next
unless
seed
.
included?
stage
.
builds
<<
seed
.
to_resource
strong_memoize
(
:stage
)
do
::
Ci
::
Stage
.
new
(
attributes
).
tap
do
|
stage
|
seeds
.
each
{
|
seed
|
stage
.
builds
<<
seed
.
to_resource
}
end
end
end
...
...
spec/lib/gitlab/ci/pipeline/chain/populate_spec.rb
View file @
b9e32976
...
...
@@ -37,6 +37,8 @@ describe Gitlab::Ci::Pipeline::Chain::Populate do
end
it
'populates pipeline with builds'
do
expect
(
pipeline
.
builds
).
to
be_one
expect
(
pipeline
.
builds
.
first
).
not_to
be_persisted
expect
(
pipeline
.
stages
.
first
.
builds
).
to
be_one
expect
(
pipeline
.
stages
.
first
.
builds
.
first
).
not_to
be_persisted
end
...
...
@@ -130,5 +132,22 @@ describe Gitlab::Ci::Pipeline::Chain::Populate do
end
end
pending
'populating pipeline according to policies'
context
'when using only/except build policies'
do
let
(
:config
)
do
{
rspec:
{
script:
'rspec'
,
stage:
'test'
,
only:
[
'master'
]
},
prod:
{
script:
'cap prod'
,
stage:
'deploy'
,
only:
[
'tags'
]
}
}
end
let
(
:pipeline
)
do
build
(
:ci_pipeline
,
ref:
'master'
,
config:
config
)
end
it
'populates pipeline according to used policies'
do
step
.
perform!
expect
(
pipeline
.
stages
.
size
).
to
eq
1
expect
(
pipeline
.
builds
.
size
).
to
eq
1
expect
(
pipeline
.
builds
.
first
.
name
).
to
eq
'rspec'
end
end
end
spec/lib/gitlab/ci/pipeline/seed/stage_spec.rb
View file @
b9e32976
...
...
@@ -28,6 +28,28 @@ describe Gitlab::Ci::Pipeline::Seed::Stage do
end
end
describe
'#included?'
do
context
'when it contains builds seeds'
do
let
(
:attributes
)
do
{
name:
'test'
,
index:
0
,
builds:
[{
name:
'deploy'
,
only:
{
refs:
[
'master'
]
}
}]
}
end
it
{
is_expected
.
to
be_included
}
end
context
'when it does not contain build seeds'
do
let
(
:attributes
)
do
{
name:
'test'
,
index:
0
,
builds:
[{
name:
'deploy'
,
only:
{
refs:
[
'feature'
]
}
}]
}
end
it
{
is_expected
.
not_to
be_included
}
end
end
describe
'#seeds'
do
it
'returns build seeds'
do
expect
(
subject
.
seeds
).
to
all
(
be_a
Gitlab
::
Ci
::
Pipeline
::
Seed
::
Build
)
...
...
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