mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
9c95c81534
The change adds an example of `curl` command to the Rule's page. The command is generated for each recorded state. It is supposed user can just copy&execute the command to see what was returned to vmalert. Signed-off-by: hagen1778 <roman@victoriametrics.com>
47 lines
1.3 KiB
Go
47 lines
1.3 KiB
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
func TestRequestToCurl(t *testing.T) {
|
|
f := func(req *http.Request, exp string) {
|
|
got := requestToCurl(req)
|
|
if got != exp {
|
|
t.Fatalf("expected to have %q; got %q instead", exp, got)
|
|
}
|
|
}
|
|
|
|
req, _ := http.NewRequest(http.MethodPost, "foo.com", nil)
|
|
f(req, "curl -X POST 'http://foo.com'")
|
|
|
|
req, _ = http.NewRequest(http.MethodGet, "https://foo.com", nil)
|
|
f(req, "curl -k -X GET 'https://foo.com'")
|
|
|
|
req, _ = http.NewRequest(http.MethodPost, "foo.com", nil)
|
|
req.Header.Set("foo", "bar")
|
|
req.Header.Set("baz", "qux")
|
|
f(req, "curl -X POST -H 'Baz: qux' -H 'Foo: bar' 'http://foo.com'")
|
|
|
|
req, _ = http.NewRequest(http.MethodPost, "foo.com", nil)
|
|
params := req.URL.Query()
|
|
params.Add("query", "up")
|
|
params.Add("step", "10")
|
|
req.URL.RawQuery = params.Encode()
|
|
f(req, "curl -X POST 'http://foo.com?query=up&step=10'")
|
|
|
|
req, _ = http.NewRequest(http.MethodPost, "http://foo.com", nil)
|
|
params = req.URL.Query()
|
|
params.Add("query", "up")
|
|
params.Add("step", "10")
|
|
req.URL.RawQuery = params.Encode()
|
|
f(req, "curl -X POST 'http://foo.com?query=up&step=10'")
|
|
|
|
req, _ = http.NewRequest(http.MethodPost, "https://foo.com", nil)
|
|
params = req.URL.Query()
|
|
params.Add("query", "up")
|
|
params.Add("step", "10")
|
|
req.URL.RawQuery = params.Encode()
|
|
f(req, "curl -k -X POST 'https://foo.com?query=up&step=10'")
|
|
}
|