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
e4cfe814
Commit
e4cfe814
authored
Jan 14, 2019
by
Grzegorz Bizon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make it possible to fabricate CI/CD bridge jobs
parent
62e92031
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
70 additions
and
15 deletions
+70
-15
lib/gitlab/ci/pipeline/seed/build.rb
lib/gitlab/ci/pipeline/seed/build.rb
+12
-7
lib/gitlab/ci/pipeline/seed/stage.rb
lib/gitlab/ci/pipeline/seed/stage.rb
+7
-1
spec/lib/gitlab/ci/pipeline/seed/build_spec.rb
spec/lib/gitlab/ci/pipeline/seed/build_spec.rb
+39
-5
spec/lib/gitlab/ci/pipeline/seed/stage_spec.rb
spec/lib/gitlab/ci/pipeline/seed/stage_spec.rb
+12
-2
No files found.
lib/gitlab/ci/pipeline/seed/build.rb
View file @
e4cfe814
...
...
@@ -4,8 +4,6 @@ module Gitlab
module
Ci
module
Pipeline
module
Seed
## TODO this should become Seed::Job now
#
class
Build
<
Seed
::
Base
include
Gitlab
::
Utils
::
StrongMemoize
...
...
@@ -15,9 +13,6 @@ module Gitlab
@pipeline
=
pipeline
@attributes
=
attributes
# TODO we should extract that
@type
=
attributes
.
dig
(
:options
,
:trigger
)
?
::
Ci
::
Bridge
:
::
Ci
::
Build
@only
=
Gitlab
::
Ci
::
Build
::
Policy
.
fabricate
(
attributes
.
delete
(
:only
))
@except
=
Gitlab
::
Ci
::
Build
::
Policy
...
...
@@ -40,11 +35,21 @@ module Gitlab
tag:
@pipeline
.
tag
,
trigger_request:
@pipeline
.
legacy_trigger
,
protected:
@pipeline
.
protected_ref?
).
compact
)
end
def
bridge?
@attributes
.
to_h
.
dig
(
:options
,
:trigger
).
present?
end
def
to_resource
strong_memoize
(
:resource
)
{
@type
.
new
(
attributes
)
}
strong_memoize
(
:resource
)
do
if
bridge?
::
Ci
::
Bridge
.
new
(
attributes
)
else
::
Ci
::
Build
.
new
(
attributes
)
end
end
end
end
end
...
...
lib/gitlab/ci/pipeline/seed/stage.rb
View file @
e4cfe814
...
...
@@ -39,7 +39,13 @@ module Gitlab
def
to_resource
strong_memoize
(
:stage
)
do
::
Ci
::
Stage
.
new
(
attributes
).
tap
do
|
stage
|
seeds
.
each
{
|
seed
|
stage
.
statuses
<<
seed
.
to_resource
}
seeds
.
each
do
|
seed
|
if
seed
.
bridge?
stage
.
statuses
<<
seed
.
to_resource
else
stage
.
builds
<<
seed
.
to_resource
end
end
end
end
end
...
...
spec/lib/gitlab/ci/pipeline/seed/build_spec.rb
View file @
e4cfe814
...
...
@@ -5,8 +5,7 @@ describe Gitlab::Ci::Pipeline::Seed::Build do
let
(
:pipeline
)
{
create
(
:ci_empty_pipeline
,
project:
project
)
}
let
(
:attributes
)
do
{
name:
'rspec'
,
ref:
'master'
}
{
name:
'rspec'
,
ref:
'master'
}
end
subject
do
...
...
@@ -21,10 +20,45 @@ describe Gitlab::Ci::Pipeline::Seed::Build do
end
end
describe
'#bridge?'
do
context
'when job is a bridge'
do
let
(
:attributes
)
do
{
name:
'rspec'
,
ref:
'master'
,
options:
{
trigger:
'my/project'
}
}
end
it
{
is_expected
.
to
be_bridge
}
end
context
'when trigger definition is empty'
do
let
(
:attributes
)
do
{
name:
'rspec'
,
ref:
'master'
,
options:
{
trigger:
''
}
}
end
it
{
is_expected
.
not_to
be_bridge
}
end
context
'when job is not a bridge'
do
it
{
is_expected
.
not_to
be_bridge
}
end
end
describe
'#to_resource'
do
it
'returns a valid build resource'
do
expect
(
subject
.
to_resource
).
to
be_a
(
::
Ci
::
Build
)
expect
(
subject
.
to_resource
).
to
be_valid
context
'when job is not a bridge'
do
it
'returns a valid build resource'
do
expect
(
subject
.
to_resource
).
to
be_a
(
::
Ci
::
Build
)
expect
(
subject
.
to_resource
).
to
be_valid
end
end
context
'when job is a bridge'
do
let
(
:attributes
)
do
{
name:
'rspec'
,
ref:
'master'
,
options:
{
trigger:
'my/project'
}
}
end
it
'returns a valid bridge resource'
do
expect
(
subject
.
to_resource
).
to
be_a
(
::
Ci
::
Bridge
)
expect
(
subject
.
to_resource
).
to
be_valid
end
end
it
'memoizes a resource object'
do
...
...
spec/lib/gitlab/ci/pipeline/seed/stage_spec.rb
View file @
e4cfe814
...
...
@@ -62,8 +62,18 @@ describe Gitlab::Ci::Pipeline::Seed::Stage do
expect
(
subject
.
seeds
.
map
(
&
:attributes
)).
to
all
(
include
(
ref:
'master'
))
expect
(
subject
.
seeds
.
map
(
&
:attributes
)).
to
all
(
include
(
tag:
false
))
expect
(
subject
.
seeds
.
map
(
&
:attributes
)).
to
all
(
include
(
project:
pipeline
.
project
))
expect
(
subject
.
seeds
.
map
(
&
:attributes
))
.
to
all
(
include
(
trigger_request:
pipeline
.
trigger_requests
.
first
))
end
context
'when a legacy trigger exists'
do
before
do
create
(
:ci_trigger_request
,
pipeline:
pipeline
)
end
it
'returns build seeds including legacy trigger'
do
expect
(
pipeline
.
legacy_trigger
).
not_to
be_nil
expect
(
subject
.
seeds
.
map
(
&
:attributes
))
.
to
all
(
include
(
trigger_request:
pipeline
.
legacy_trigger
))
end
end
context
'when a ref is protected'
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