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
359d00cd
Commit
359d00cd
authored
Apr 02, 2019
by
rpereira2
Committed by
Peter Leitzen
Apr 04, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add spec for RestClient raising exception
parent
90be98aa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
47 deletions
+37
-47
spec/lib/gitlab/prometheus_client_spec.rb
spec/lib/gitlab/prometheus_client_spec.rb
+37
-47
No files found.
spec/lib/gitlab/prometheus_client_spec.rb
View file @
359d00cd
...
@@ -270,7 +270,7 @@ describe Gitlab::PrometheusClient do
...
@@ -270,7 +270,7 @@ describe Gitlab::PrometheusClient do
end
end
describe
'proxy'
do
describe
'proxy'
do
context
'
query
'
do
context
'
get API
'
do
let
(
:prometheus_query
)
{
prometheus_cpu_query
(
'env-slug'
)
}
let
(
:prometheus_query
)
{
prometheus_cpu_query
(
'env-slug'
)
}
let
(
:query_url
)
{
prometheus_query_url
(
prometheus_query
)
}
let
(
:query_url
)
{
prometheus_query_url
(
prometheus_query
)
}
...
@@ -278,58 +278,48 @@ describe Gitlab::PrometheusClient do
...
@@ -278,58 +278,48 @@ describe Gitlab::PrometheusClient do
Timecop
.
freeze
{
example
.
run
}
Timecop
.
freeze
{
example
.
run
}
end
end
it
'returns full response from the API call'
do
context
'when response status code is 200'
do
req_stub
=
stub_prometheus_request
(
query_url
,
body:
prometheus_value_body
(
'vector'
))
it
'returns response object'
do
req_stub
=
stub_prometheus_request
(
query_url
,
body:
prometheus_value_body
(
'vector'
))
response
=
subject
.
proxy
(
'query'
,
{
query:
prometheus_query
})
json_response
=
JSON
.
parse
(
response
.
body
)
response
=
subject
.
proxy
(
'query'
,
{
query:
prometheus_query
})
json_response
=
JSON
.
parse
(
response
.
body
)
expect
(
response
.
code
).
to
eq
(
200
)
expect
(
json_response
).
to
eq
({
expect
(
response
.
code
).
to
eq
(
200
)
'status'
=>
'success'
,
expect
(
json_response
).
to
eq
({
'data'
=>
{
'status'
=>
'success'
,
'resultType'
=>
'vector'
,
'data'
=>
{
'result'
=>
[{
"metric"
=>
{},
"value"
=>
[
1488772511.004
,
"0.000041021495238095323"
]
}]
'resultType'
=>
'vector'
,
}
'result'
=>
[{
"metric"
=>
{},
"value"
=>
[
1488772511.004
,
"0.000041021495238095323"
]
}]
})
}
expect
(
req_stub
).
to
have_been_requested
})
expect
(
req_stub
).
to
have_been_requested
end
end
end
end
context
'query_range
'
do
context
'when response status code is not 200
'
do
let
(
:prometheus_query
)
{
prometheus_memory_query
(
'env-slug'
)
}
it
'returns response object'
do
let
(
:query_url
)
{
prometheus_query_range_url
(
prometheus_query
,
start:
2
.
hours
.
ago
)
}
req_stub
=
stub_prometheus_request
(
query_url
,
status:
400
,
body:
{
error:
'error'
})
around
do
|
example
|
response
=
subject
.
proxy
(
'query'
,
{
query:
prometheus_query
})
Timecop
.
freeze
{
example
.
run
}
json_response
=
JSON
.
parse
(
response
.
body
)
expect
(
req_stub
).
to
have_been_requested
expect
(
response
.
code
).
to
eq
(
400
)
expect
(
json_response
).
to
eq
(
'error'
=>
'error'
)
end
end
end
it
'returns full response'
do
context
'when RestClient::Exception is raised'
do
req_stub
=
stub_prometheus_request
(
query_url
,
body:
prometheus_values_body
(
'vector'
))
before
do
stub_prometheus_request_with_exception
(
query_url
,
RestClient
::
Exception
)
end
response
=
subject
.
proxy
(
'query_range'
,
{
it
'raises PrometheusClient::Error'
do
query:
prometheus_query
,
expect
{
subject
.
proxy
(
'query'
,
{
query:
prometheus_query
})
}.
to
(
start:
2
.
hours
.
ago
.
to_f
,
raise_error
(
Gitlab
::
PrometheusClient
::
Error
,
'Network connection error'
)
end:
Time
.
now
.
to_f
,
)
step:
60
end
})
json_response
=
JSON
.
parse
(
response
.
body
)
expect
(
response
.
code
).
to
eq
(
200
)
expect
(
json_response
).
to
eq
({
"status"
=>
"success"
,
"data"
=>
{
"resultType"
=>
"vector"
,
"result"
=>
[{
"metric"
=>
{},
"values"
=>
[
[
1488758662.506
,
"0.00002996364761904785"
],
[
1488758722.506
,
"0.00003090239047619091"
]
]
}]
}
})
expect
(
req_stub
).
to
have_been_requested
end
end
end
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