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
30bc983c
Commit
30bc983c
authored
Dec 08, 2017
by
Shinya Maeda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test for both ci_disable_validates_dependencies true/false
parent
85151ff6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
129 additions
and
78 deletions
+129
-78
spec/models/ci/build_spec.rb
spec/models/ci/build_spec.rb
+64
-44
spec/services/ci/register_job_service_spec.rb
spec/services/ci/register_job_service_spec.rb
+65
-34
No files found.
spec/models/ci/build_spec.rb
View file @
30bc983c
...
...
@@ -1869,71 +1869,91 @@ describe Ci::Build do
end
describe
'state transition: any => [:running]'
do
before
do
stub_feature_flags
(
ci_disable_validates_dependencies:
true
)
end
shared_examples
'validation is active'
do
context
'when depended job has not been completed yet'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:running
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
let
(
:build
)
{
create
(
:ci_build
,
:pending
,
pipeline:
pipeline
,
stage_idx:
1
,
options:
options
)
}
it
{
expect
{
job
.
run!
}.
to
raise_error
(
Ci
::
Build
::
MissingDependenciesError
)
}
end
context
'when "dependencies" keyword is not defin
ed'
do
let
(
:options
)
{
{}
}
context
'when artifacts of depended job has been expir
ed'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
:expired
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
it
{
expect
{
build
.
run!
}.
not_to
raise_error
}
end
it
{
expect
{
job
.
run!
}.
to
raise_error
(
Ci
::
Build
::
MissingDependenciesError
)
}
end
context
'when "dependencies" keyword is empty
'
do
let
(
:options
)
{
{
dependencies:
[]
}
}
context
'when artifacts of depended job has been erased
'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
,
erased_at:
1
.
minute
.
ago
)
}
it
{
expect
{
build
.
run!
}.
not_to
raise_error
}
before
do
pre_stage_job
.
erase
end
it
{
expect
{
job
.
run!
}.
to
raise_error
(
Ci
::
Build
::
MissingDependenciesError
)
}
end
end
context
'when "dependencies" keyword is specified'
do
let
(
:options
)
{
{
dependencies:
[
'test'
]
}
}
shared_examples
'validation is not active'
do
context
'when depended job has not been completed yet'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:running
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
context
'when a depended job exists'
do
context
'when depended job has artifacts'
do
let!
(
:pre_stage_job
)
do
create
(
:ci_build
,
:success
,
:artifacts
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
,
options:
{
artifacts:
{
paths:
[
'binaries/'
]
}
}
)
end
it
{
expect
{
job
.
run!
}.
not_to
raise_error
}
end
it
{
expect
{
build
.
run!
}.
not_to
raise_error
}
end
context
'when artifacts of depended job has been expired'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
:expired
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
it
{
expect
{
job
.
run!
}.
not_to
raise_error
}
end
context
'when depended job does not have artifacts
'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
context
'when artifacts of depended job has been erased
'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
,
erased_at:
1
.
minute
.
ago
)
}
it
{
expect
{
build
.
run!
}.
not_to
raise_error
}
before
do
pre_stage_job
.
erase
end
context
'when depended job has not been completed yet'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:running
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
it
{
expect
{
job
.
run!
}.
not_to
raise_error
}
end
end
it
{
expect
{
build
.
run!
}.
to
raise_error
(
Ci
::
Build
::
MissingDependenciesError
)
}
end
let!
(
:job
)
{
create
(
:ci_build
,
:pending
,
pipeline:
pipeline
,
stage_idx:
1
,
options:
options
)
}
context
'when artifacts of depended job has been expired'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
:expired
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
context
'when validates for dependencies is enabled'
do
before
do
stub_feature_flags
(
ci_disable_validates_dependencies:
false
)
end
it
{
expect
{
build
.
run!
}.
to
raise_error
(
Ci
::
Build
::
MissingDependenciesError
)
}
end
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
context
'when artifacts of depended job has been eras
ed'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
,
erased_at:
1
.
minute
.
ago
)
}
context
'when "dependencies" keyword is not defin
ed'
do
let
(
:options
)
{
{}
}
before
do
pre_stage_job
.
erase
end
it
{
expect
{
job
.
run!
}.
not_to
raise_error
}
end
it
{
expect
{
build
.
run!
}.
to
raise_error
(
Ci
::
Build
::
MissingDependenciesError
)
}
end
context
'when "dependencies" keyword is empty'
do
let
(
:options
)
{
{
dependencies:
[]
}
}
it
{
expect
{
job
.
run!
}.
not_to
raise_error
}
end
context
'when "dependencies" keyword is specified'
do
let
(
:options
)
{
{
dependencies:
[
'test'
]
}
}
it_behaves_like
'validation is active'
end
end
context
'when validates for dependencies is disabled'
do
let
(
:options
)
{
{
dependencies:
[
'test'
]
}
}
before
do
stub_feature_flags
(
ci_disable_validates_dependencies:
true
)
end
it_behaves_like
'validation is not active'
end
end
describe
'state transition when build fails'
do
...
...
spec/services/ci/register_job_service_spec.rb
View file @
30bc983c
...
...
@@ -277,54 +277,85 @@ module Ci
end
context
'when "dependencies" keyword is specified'
do
before
do
stub_feature_flags
(
ci_disable_validates_dependencies:
false
)
shared_examples
'not pick'
do
it
'does not pick the build and drops the build'
do
expect
(
subject
).
to
be_nil
expect
(
pending_job
.
reload
).
to
be_failed
expect
(
pending_job
).
to
be_missing_dependency_failure
end
end
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
pipeline:
pipeline
,
name:
job_name
,
stage_idx:
0
)
}
shared_examples
'validation is active'
do
context
'when depended job has not been completed yet'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:running
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
it_behaves_like
'not pick'
end
context
'when artifacts of depended job has been expired'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
:expired
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
it_behaves_like
'not pick'
end
context
'when artifacts of depended job has been erased'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
,
erased_at:
1
.
minute
.
ago
)
}
before
do
pre_stage_job
.
erase
end
let!
(
:pending_job
)
do
create
(
:ci_build
,
:pending
,
pipeline:
pipeline
,
stage_idx:
1
,
options:
{
dependencies:
[
'spec'
]
}
)
it_behaves_like
'not pick'
end
end
let
(
:picked_job
)
{
execute
(
specific_runner
)
}
shared_examples
'validation is not active'
do
context
'when depended job has not been completed yet'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:running
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
context
'when a depended job exists'
do
let
(
:job_name
)
{
'spec'
}
it
{
expect
(
subject
).
to
eq
(
pending_job
)
}
end
context
'when artifacts of depended job has been expired'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
:expired
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
it
"picks the build"
do
expect
(
picked_job
).
to
eq
(
pending_job
)
it
{
expect
(
subject
).
to
eq
(
pending_job
)
}
end
context
'when "artifacts" keyword is specified on depended job'
do
let!
(
:pre_stage_job
)
do
create
(
:ci_build
,
:success
,
:artifacts
,
pipeline:
pipeline
,
name:
job_name
,
stage_idx:
0
,
options:
{
artifacts:
{
paths:
[
'binaries/'
]
}
}
)
end
context
'when artifacts of depended job has been erased'
do
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
,
erased_at:
1
.
minute
.
ago
)
}
context
'when artifacts of depended job has existsed'
do
it
"picks the build"
do
expect
(
picked_job
).
to
eq
(
pending_job
)
end
before
do
pre_stage_job
.
erase
end
context
'when artifacts of depended job has not existsed'
do
before
do
pre_stage_job
.
erase
end
it
{
expect
(
subject
).
to
eq
(
pending_job
)
}
end
end
it
'does not pick the build and drops the build'
do
expect
(
picked_job
).
to
be_nil
expect
(
pending_job
.
reload
).
to
be_failed
expect
(
pending_job
).
to
be_missing_dependency_failure
end
end
before
do
stub_feature_flags
(
ci_disable_validates_dependencies:
false
)
end
let!
(
:pre_stage_job
)
{
create
(
:ci_build
,
:success
,
pipeline:
pipeline
,
name:
'test'
,
stage_idx:
0
)
}
let!
(
:pending_job
)
{
create
(
:ci_build
,
:pending
,
pipeline:
pipeline
,
stage_idx:
1
,
options:
{
dependencies:
[
'test'
]
}
)
}
subject
{
execute
(
specific_runner
)
}
context
'when validates for dependencies is enabled'
do
before
do
stub_feature_flags
(
ci_disable_validates_dependencies:
false
)
end
it_behaves_like
'validation is active'
end
context
'when validates for dependencies is disabled'
do
before
do
stub_feature_flags
(
ci_disable_validates_dependencies:
true
)
end
it_behaves_like
'validation is not active'
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