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
452a4399
Commit
452a4399
authored
Sep 19, 2018
by
Markus Doits
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add specs for create pipeline service and new retry when feature
parent
0db50a80
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
7 deletions
+25
-7
spec/services/ci/create_pipeline_service_spec.rb
spec/services/ci/create_pipeline_service_spec.rb
+25
-7
No files found.
spec/services/ci/create_pipeline_service_spec.rb
View file @
452a4399
...
...
@@ -435,16 +435,34 @@ describe Ci::CreatePipelineService do
end
context
'when builds with auto-retries are configured'
do
before
do
config
=
YAML
.
dump
(
rspec:
{
script:
'rspec'
,
retry:
2
})
stub_ci_pipeline_yaml_file
(
config
)
context
'as an integer'
do
before
do
config
=
YAML
.
dump
(
rspec:
{
script:
'rspec'
,
retry:
2
})
stub_ci_pipeline_yaml_file
(
config
)
end
it
'correctly creates builds with auto-retry value configured'
do
pipeline
=
execute_service
expect
(
pipeline
).
to
be_persisted
expect
(
pipeline
.
builds
.
find_by
(
name:
'rspec'
).
retries_max
).
to
eq
2
expect
(
pipeline
.
builds
.
find_by
(
name:
'rspec'
).
retry_when
).
to
eq
[
'always'
]
end
end
it
'correctly creates builds with auto-retry value configured'
do
pipeline
=
execute_service
context
'as hash'
do
before
do
config
=
YAML
.
dump
(
rspec:
{
script:
'rspec'
,
retry:
{
max:
2
,
when:
'runner_system_failure'
}
})
stub_ci_pipeline_yaml_file
(
config
)
end
expect
(
pipeline
).
to
be_persisted
expect
(
pipeline
.
builds
.
find_by
(
name:
'rspec'
).
retries_max
).
to
eq
2
it
'correctly creates builds with auto-retry value configured'
do
pipeline
=
execute_service
expect
(
pipeline
).
to
be_persisted
expect
(
pipeline
.
builds
.
find_by
(
name:
'rspec'
).
retries_max
).
to
eq
2
expect
(
pipeline
.
builds
.
find_by
(
name:
'rspec'
).
retry_when
).
to
eq
[
'runner_system_failure'
]
end
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