mirror of
https://github.com/prometheus/prometheus
synced 2025-01-17 04:12:33 +00:00
Merge pull request #2142 from amorken/issue-2140
query_range: Validate that start comes before end
This commit is contained in:
commit
6875e9ef91
@ -182,6 +182,11 @@ func (api *API) queryRange(r *http.Request) (interface{}, *apiError) {
|
||||
if err != nil {
|
||||
return nil, &apiError{errorBadData, err}
|
||||
}
|
||||
if end.Before(start) {
|
||||
err := errors.New("end timestamp must not be before start time")
|
||||
return nil, &apiError{errorBadData, err}
|
||||
}
|
||||
|
||||
step, err := parseDuration(r.FormValue("step"))
|
||||
if err != nil {
|
||||
return nil, &apiError{errorBadData, err}
|
||||
|
@ -198,6 +198,17 @@ func TestEndpoints(t *testing.T) {
|
||||
},
|
||||
errType: errorBadData,
|
||||
},
|
||||
// Start after end
|
||||
{
|
||||
endpoint: api.queryRange,
|
||||
query: url.Values{
|
||||
"query": []string{"time()"},
|
||||
"start": []string{"2"},
|
||||
"end": []string{"1"},
|
||||
"step": []string{"1"},
|
||||
},
|
||||
errType: errorBadData,
|
||||
},
|
||||
{
|
||||
endpoint: api.labelValues,
|
||||
params: map[string]string{
|
||||
|
Loading…
Reference in New Issue
Block a user