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
9a898d05
Commit
9a898d05
authored
Jan 05, 2022
by
Albert Salim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add tests for Ci::Pipeline entity
parent
0d25e2f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
2 deletions
+19
-2
spec/lib/api/entities/ci/pipeline_spec.rb
spec/lib/api/entities/ci/pipeline_spec.rb
+19
-2
No files found.
spec/lib/api/entities/ci/pipeline_spec.rb
View file @
9a898d05
...
...
@@ -3,14 +3,31 @@
require
'spec_helper'
RSpec
.
describe
API
::
Entities
::
Ci
::
Pipeline
do
let_it_be
(
:pipeline
)
{
create
(
:ci_empty_pipeline
)
}
let_it_be
(
:user
)
{
create
(
:user
)
}
let_it_be
(
:pipeline
)
{
create
(
:ci_empty_pipeline
,
user:
user
)
}
let_it_be
(
:job
)
{
create
(
:ci_build
,
name:
"rspec"
,
coverage:
30.212
,
pipeline:
pipeline
)
}
let
(
:entity
)
{
described_class
.
new
(
pipeline
)
}
subject
{
entity
.
as_json
}
it
'returns the coverage as a string'
do
exposed_fields
=
%i[before_sha tag yaml_errors created_at updated_at started_at finished_at committed_at duration queued_duration]
exposed_fields
.
each
do
|
field
|
it
"exposes pipeline
#{
field
}
"
do
expect
(
subject
[
field
]).
to
eq
(
pipeline
.
public_send
(
field
))
end
end
it
'exposes pipeline user basic information'
do
expect
(
subject
[
:user
].
keys
).
to
include
(
:avatar_url
,
:web_url
)
end
it
'exposes pipeline detailed status'
do
expect
(
subject
[
:detailed_status
].
keys
).
to
include
(
:icon
,
:favicon
)
end
it
'exposes pipeline coverage as a string'
do
expect
(
subject
[
:coverage
]).
to
eq
'30.21'
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