2018-08-05 02:03:18 -07:00
|
|
|
// Copyright 2018 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
|
|
|
"time"
|
2020-08-25 03:32:25 -07:00
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/util/testutil"
|
2018-08-05 02:03:18 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestQueryRange(t *testing.T) {
|
2019-05-17 09:09:47 -07:00
|
|
|
s, getRequest := mockServer(200, `{"status": "success", "data": {"resultType": "matrix", "result": []}}`)
|
2018-08-05 02:03:18 -07:00
|
|
|
defer s.Close()
|
|
|
|
|
2018-11-14 09:40:07 -08:00
|
|
|
p := &promqlPrinter{}
|
2019-06-30 03:50:23 -07:00
|
|
|
exitCode := QueryRange(s.URL, map[string]string{}, "up", "0", "300", 0, p)
|
2020-08-25 03:32:25 -07:00
|
|
|
testutil.Equals(t, "/api/v1/query_range", getRequest().URL.Path)
|
2019-05-17 09:09:47 -07:00
|
|
|
form := getRequest().Form
|
2020-08-25 03:32:25 -07:00
|
|
|
testutil.Equals(t, "up", form.Get("query"))
|
|
|
|
testutil.Equals(t, "1", form.Get("step"))
|
|
|
|
testutil.Equals(t, 0, exitCode)
|
2018-08-05 02:03:18 -07:00
|
|
|
|
2019-06-30 03:50:23 -07:00
|
|
|
exitCode = QueryRange(s.URL, map[string]string{}, "up", "0", "300", 10*time.Millisecond, p)
|
2020-08-25 03:32:25 -07:00
|
|
|
testutil.Equals(t, "/api/v1/query_range", getRequest().URL.Path)
|
2019-05-17 09:09:47 -07:00
|
|
|
form = getRequest().Form
|
2020-08-25 03:32:25 -07:00
|
|
|
testutil.Equals(t, "up", form.Get("query"))
|
|
|
|
testutil.Equals(t, "0.01", form.Get("step"))
|
|
|
|
testutil.Equals(t, 0, exitCode)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestQueryInstant(t *testing.T) {
|
|
|
|
s, getRequest := mockServer(200, `{"status": "success", "data": {"resultType": "vector", "result": []}}`)
|
|
|
|
defer s.Close()
|
|
|
|
|
|
|
|
p := &promqlPrinter{}
|
|
|
|
exitCode := QueryInstant(s.URL, "up", "300", p)
|
|
|
|
testutil.Equals(t, "/api/v1/query", getRequest().URL.Path)
|
|
|
|
form := getRequest().Form
|
|
|
|
testutil.Equals(t, "up", form.Get("query"))
|
|
|
|
testutil.Equals(t, "300", form.Get("time"))
|
|
|
|
testutil.Equals(t, 0, exitCode)
|
2018-08-05 02:03:18 -07:00
|
|
|
}
|
|
|
|
|
2019-05-17 09:09:47 -07:00
|
|
|
func mockServer(code int, body string) (*httptest.Server, func() *http.Request) {
|
|
|
|
var req *http.Request
|
2018-08-05 02:03:18 -07:00
|
|
|
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2019-05-17 09:09:47 -07:00
|
|
|
r.ParseForm()
|
|
|
|
req = r
|
2018-08-05 02:03:18 -07:00
|
|
|
w.WriteHeader(code)
|
|
|
|
fmt.Fprintln(w, body)
|
|
|
|
}))
|
|
|
|
|
2019-05-17 09:09:47 -07:00
|
|
|
f := func() *http.Request {
|
|
|
|
return req
|
2018-08-05 02:03:18 -07:00
|
|
|
}
|
|
|
|
return server, f
|
|
|
|
}
|