2020-05-07 09:36:32 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-10-22 16:08:06 +00:00
|
|
|
"fmt"
|
2020-05-07 09:36:32 +00:00
|
|
|
"net/url"
|
2023-09-08 20:39:17 +00:00
|
|
|
"reflect"
|
2020-05-07 09:36:32 +00:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2023-11-13 21:30:39 +00:00
|
|
|
func TestDropPrefixParts(t *testing.T) {
|
|
|
|
f := func(path string, parts int, expectedResult string) {
|
|
|
|
t.Helper()
|
|
|
|
|
|
|
|
result := dropPrefixParts(path, parts)
|
|
|
|
if result != expectedResult {
|
|
|
|
t.Fatalf("unexpected result; got %q; want %q", result, expectedResult)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
f("", 0, "")
|
|
|
|
f("", 1, "")
|
|
|
|
f("", 10, "")
|
|
|
|
f("foo", 0, "foo")
|
|
|
|
f("foo", -1, "foo")
|
|
|
|
f("foo", 1, "")
|
|
|
|
|
|
|
|
f("/foo", 0, "/foo")
|
|
|
|
f("/foo/bar", 0, "/foo/bar")
|
|
|
|
f("/foo/bar/baz", 0, "/foo/bar/baz")
|
|
|
|
|
|
|
|
f("foo", 0, "foo")
|
|
|
|
f("foo/bar", 0, "foo/bar")
|
|
|
|
f("foo/bar/baz", 0, "foo/bar/baz")
|
|
|
|
|
|
|
|
f("/foo/", 0, "/foo/")
|
|
|
|
f("/foo/bar/", 0, "/foo/bar/")
|
|
|
|
f("/foo/bar/baz/", 0, "/foo/bar/baz/")
|
|
|
|
|
|
|
|
f("/foo", 1, "")
|
|
|
|
f("/foo/bar", 1, "/bar")
|
|
|
|
f("/foo/bar/baz", 1, "/bar/baz")
|
|
|
|
|
|
|
|
f("foo", 1, "")
|
|
|
|
f("foo/bar", 1, "/bar")
|
|
|
|
f("foo/bar/baz", 1, "/bar/baz")
|
|
|
|
|
|
|
|
f("/foo/", 1, "/")
|
|
|
|
f("/foo/bar/", 1, "/bar/")
|
|
|
|
f("/foo/bar/baz/", 1, "/bar/baz/")
|
|
|
|
|
|
|
|
f("/foo", 2, "")
|
|
|
|
f("/foo/bar", 2, "")
|
|
|
|
f("/foo/bar/baz", 2, "/baz")
|
|
|
|
|
|
|
|
f("foo", 2, "")
|
|
|
|
f("foo/bar", 2, "")
|
|
|
|
f("foo/bar/baz", 2, "/baz")
|
|
|
|
|
|
|
|
f("/foo/", 2, "")
|
|
|
|
f("/foo/bar/", 2, "/")
|
|
|
|
f("/foo/bar/baz/", 2, "/baz/")
|
|
|
|
|
|
|
|
f("/foo", 3, "")
|
|
|
|
f("/foo/bar", 3, "")
|
|
|
|
f("/foo/bar/baz", 3, "")
|
|
|
|
|
|
|
|
f("foo", 3, "")
|
|
|
|
f("foo/bar", 3, "")
|
|
|
|
f("foo/bar/baz", 3, "")
|
|
|
|
|
|
|
|
f("/foo/", 3, "")
|
|
|
|
f("/foo/bar/", 3, "")
|
|
|
|
f("/foo/bar/baz/", 3, "/")
|
|
|
|
|
|
|
|
f("/foo/", 4, "")
|
|
|
|
f("/foo/bar/", 4, "")
|
|
|
|
f("/foo/bar/baz/", 4, "")
|
|
|
|
}
|
|
|
|
|
2021-02-11 10:40:59 +00:00
|
|
|
func TestCreateTargetURLSuccess(t *testing.T) {
|
2023-11-13 21:30:39 +00:00
|
|
|
f := func(ui *UserInfo, requestURI, expectedTarget, expectedRequestHeaders, expectedResponseHeaders string,
|
2023-12-08 21:27:53 +00:00
|
|
|
expectedRetryStatusCodes []int, expectedLoadBalancingPolicy string, expectedDropSrcPathPrefixParts int) {
|
2020-05-07 09:36:32 +00:00
|
|
|
t.Helper()
|
2023-12-08 21:27:53 +00:00
|
|
|
if err := ui.initURLs(); err != nil {
|
|
|
|
t.Fatalf("cannot initialize urls inside UserInfo: %s", err)
|
|
|
|
}
|
2020-05-07 09:36:32 +00:00
|
|
|
u, err := url.Parse(requestURI)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("cannot parse %q: %s", requestURI, err)
|
|
|
|
}
|
2023-02-10 05:05:13 +00:00
|
|
|
u = normalizeURL(u)
|
2023-12-08 21:27:53 +00:00
|
|
|
up, hc, dropSrcPathPrefixParts := ui.getURLPrefixAndHeaders(u)
|
2023-04-26 09:04:35 +00:00
|
|
|
if up == nil {
|
|
|
|
t.Fatalf("cannot determie backend: %s", err)
|
2021-02-11 10:40:59 +00:00
|
|
|
}
|
2023-02-11 08:27:40 +00:00
|
|
|
bu := up.getLeastLoadedBackendURL()
|
2023-11-13 21:30:39 +00:00
|
|
|
target := mergeURLs(bu.url, u, dropSrcPathPrefixParts)
|
2023-02-11 08:27:40 +00:00
|
|
|
bu.put()
|
2021-04-21 07:55:29 +00:00
|
|
|
if target.String() != expectedTarget {
|
2020-05-07 09:36:32 +00:00
|
|
|
t.Fatalf("unexpected target; got %q; want %q", target, expectedTarget)
|
|
|
|
}
|
2023-09-08 20:39:17 +00:00
|
|
|
headersStr := fmt.Sprintf("%q", hc.RequestHeaders)
|
2023-09-01 07:21:10 +00:00
|
|
|
if headersStr != expectedRequestHeaders {
|
2023-09-08 20:39:17 +00:00
|
|
|
t.Fatalf("unexpected request headers; got %s; want %s", headersStr, expectedRequestHeaders)
|
|
|
|
}
|
2023-12-08 21:27:53 +00:00
|
|
|
if !reflect.DeepEqual(up.retryStatusCodes, expectedRetryStatusCodes) {
|
|
|
|
t.Fatalf("unexpected retryStatusCodes; got %d; want %d", up.retryStatusCodes, expectedRetryStatusCodes)
|
|
|
|
}
|
|
|
|
if up.loadBalancingPolicy != expectedLoadBalancingPolicy {
|
|
|
|
t.Fatalf("unexpected loadBalancingPolicy; got %q; want %q", up.loadBalancingPolicy, expectedLoadBalancingPolicy)
|
2021-10-22 16:08:06 +00:00
|
|
|
}
|
2023-11-13 21:30:39 +00:00
|
|
|
if dropSrcPathPrefixParts != expectedDropSrcPathPrefixParts {
|
|
|
|
t.Fatalf("unexpected dropSrcPathPrefixParts; got %d; want %d", dropSrcPathPrefixParts, expectedDropSrcPathPrefixParts)
|
|
|
|
}
|
2020-05-07 09:36:32 +00:00
|
|
|
}
|
2021-02-11 10:40:59 +00:00
|
|
|
// Simple routing with `url_prefix`
|
|
|
|
f(&UserInfo{
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://foo.bar"),
|
2023-12-08 21:27:53 +00:00
|
|
|
}, "", "http://foo.bar/.", "[]", "[]", nil, "least_loaded", 0)
|
2021-02-11 10:40:59 +00:00
|
|
|
f(&UserInfo{
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://foo.bar"),
|
2023-09-01 07:21:10 +00:00
|
|
|
HeadersConf: HeadersConf{
|
|
|
|
RequestHeaders: []Header{{
|
|
|
|
Name: "bb",
|
|
|
|
Value: "aaa",
|
|
|
|
}},
|
|
|
|
},
|
2023-11-13 21:30:39 +00:00
|
|
|
RetryStatusCodes: []int{503, 501},
|
2023-12-08 21:27:53 +00:00
|
|
|
LoadBalancingPolicy: "first_available",
|
2023-11-13 21:30:39 +00:00
|
|
|
DropSrcPathPrefixParts: 2,
|
2023-12-08 21:27:53 +00:00
|
|
|
}, "/a/b/c", "http://foo.bar/c", `[{"bb" "aaa"}]`, `[]`, []int{503, 501}, "first_available", 2)
|
2021-08-25 10:28:50 +00:00
|
|
|
f(&UserInfo{
|
|
|
|
URLPrefix: mustParseURL("http://foo.bar/federate"),
|
2023-12-08 21:27:53 +00:00
|
|
|
}, "/", "http://foo.bar/federate", "[]", "[]", nil, "least_loaded", 0)
|
2021-02-11 10:40:59 +00:00
|
|
|
f(&UserInfo{
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://foo.bar"),
|
2023-12-08 21:27:53 +00:00
|
|
|
}, "a/b?c=d", "http://foo.bar/a/b?c=d", "[]", "[]", nil, "least_loaded", 0)
|
2021-02-11 10:40:59 +00:00
|
|
|
f(&UserInfo{
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("https://sss:3894/x/y"),
|
2023-12-08 21:27:53 +00:00
|
|
|
}, "/z", "https://sss:3894/x/y/z", "[]", "[]", nil, "least_loaded", 0)
|
2021-02-11 10:40:59 +00:00
|
|
|
f(&UserInfo{
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("https://sss:3894/x/y"),
|
2023-12-08 21:27:53 +00:00
|
|
|
}, "/../../aaa", "https://sss:3894/x/y/aaa", "[]", "[]", nil, "least_loaded", 0)
|
2021-02-11 10:40:59 +00:00
|
|
|
f(&UserInfo{
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("https://sss:3894/x/y"),
|
2023-12-08 21:27:53 +00:00
|
|
|
}, "/./asd/../../aaa?a=d&s=s/../d", "https://sss:3894/x/y/aaa?a=d&s=s%2F..%2Fd", "[]", "[]", nil, "least_loaded", 0)
|
2021-02-11 10:40:59 +00:00
|
|
|
|
|
|
|
// Complex routing with `url_map`
|
|
|
|
ui := &UserInfo{
|
2023-01-27 08:18:58 +00:00
|
|
|
URLMaps: []URLMap{
|
2021-02-11 10:40:59 +00:00
|
|
|
{
|
2023-12-13 22:46:36 +00:00
|
|
|
SrcHosts: getRegexs([]string{"host42"}),
|
|
|
|
SrcPaths: getRegexs([]string{"/vmsingle/api/v1/query"}),
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://vmselect/0/prometheus"),
|
2023-09-01 07:21:10 +00:00
|
|
|
HeadersConf: HeadersConf{
|
|
|
|
RequestHeaders: []Header{
|
|
|
|
{
|
|
|
|
Name: "xx",
|
|
|
|
Value: "aa",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "yy",
|
|
|
|
Value: "asdf",
|
|
|
|
},
|
2021-10-22 16:08:06 +00:00
|
|
|
},
|
2023-09-01 07:21:10 +00:00
|
|
|
ResponseHeaders: []Header{
|
|
|
|
{
|
|
|
|
Name: "qwe",
|
|
|
|
Value: "rty",
|
|
|
|
},
|
2021-10-22 16:08:06 +00:00
|
|
|
},
|
2023-09-01 07:21:10 +00:00
|
|
|
},
|
2023-11-13 21:30:39 +00:00
|
|
|
RetryStatusCodes: []int{503, 500, 501},
|
2023-12-08 21:27:53 +00:00
|
|
|
LoadBalancingPolicy: "first_available",
|
2023-11-13 21:30:39 +00:00
|
|
|
DropSrcPathPrefixParts: 1,
|
2021-02-11 10:40:59 +00:00
|
|
|
},
|
|
|
|
{
|
2023-12-13 22:46:36 +00:00
|
|
|
SrcPaths: getRegexs([]string{"/api/v1/write"}),
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://vminsert/0/prometheus"),
|
2021-02-11 10:40:59 +00:00
|
|
|
},
|
|
|
|
},
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://default-server"),
|
2023-09-01 07:21:10 +00:00
|
|
|
HeadersConf: HeadersConf{
|
|
|
|
RequestHeaders: []Header{{
|
|
|
|
Name: "bb",
|
|
|
|
Value: "aaa",
|
|
|
|
}},
|
|
|
|
ResponseHeaders: []Header{{
|
|
|
|
Name: "x",
|
|
|
|
Value: "y",
|
|
|
|
}},
|
|
|
|
},
|
2023-11-13 21:30:39 +00:00
|
|
|
RetryStatusCodes: []int{502},
|
|
|
|
DropSrcPathPrefixParts: 2,
|
2021-02-11 10:40:59 +00:00
|
|
|
}
|
2023-12-13 22:46:36 +00:00
|
|
|
f(ui, "http://host42/vmsingle/api/v1/query?query=up", "http://vmselect/0/prometheus/api/v1/query?query=up",
|
|
|
|
`[{"xx" "aa"} {"yy" "asdf"}]`, `[{"qwe" "rty"}]`, []int{503, 500, 501}, "first_available", 1)
|
|
|
|
f(ui, "http://host123/vmsingle/api/v1/query?query=up", "http://default-server/v1/query?query=up",
|
|
|
|
`[{"bb" "aaa"}]`, `[{"x" "y"}]`, []int{502}, "least_loaded", 2)
|
|
|
|
f(ui, "https://foo-host/api/v1/write", "http://vminsert/0/prometheus/api/v1/write", "[]", "[]", []int{502}, "least_loaded", 0)
|
|
|
|
f(ui, "https://foo-host/foo/bar/api/v1/query_range", "http://default-server/api/v1/query_range", `[{"bb" "aaa"}]`, `[{"x" "y"}]`, []int{502}, "least_loaded", 2)
|
2021-03-05 16:21:11 +00:00
|
|
|
|
|
|
|
// Complex routing regexp paths in `url_map`
|
|
|
|
ui = &UserInfo{
|
2023-01-27 08:18:58 +00:00
|
|
|
URLMaps: []URLMap{
|
2021-03-05 16:21:11 +00:00
|
|
|
{
|
2023-12-13 22:46:36 +00:00
|
|
|
SrcPaths: getRegexs([]string{"/api/v1/query(_range)?", "/api/v1/label/[^/]+/values"}),
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://vmselect/0/prometheus"),
|
2021-03-05 16:21:11 +00:00
|
|
|
},
|
|
|
|
{
|
2023-12-13 22:46:36 +00:00
|
|
|
SrcPaths: getRegexs([]string{"/api/v1/write"}),
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://vminsert/0/prometheus"),
|
2021-03-05 16:21:11 +00:00
|
|
|
},
|
2023-12-13 22:46:36 +00:00
|
|
|
{
|
|
|
|
SrcHosts: getRegexs([]string{"vmui\\..+"}),
|
|
|
|
URLPrefix: mustParseURL("http://vmui.host:1234/vmui/"),
|
|
|
|
},
|
2021-03-05 16:21:11 +00:00
|
|
|
},
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://default-server"),
|
2021-03-05 16:21:11 +00:00
|
|
|
}
|
2023-12-08 21:27:53 +00:00
|
|
|
f(ui, "/api/v1/query?query=up", "http://vmselect/0/prometheus/api/v1/query?query=up", "[]", "[]", nil, "least_loaded", 0)
|
|
|
|
f(ui, "/api/v1/query_range?query=up", "http://vmselect/0/prometheus/api/v1/query_range?query=up", "[]", "[]", nil, "least_loaded", 0)
|
|
|
|
f(ui, "/api/v1/label/foo/values", "http://vmselect/0/prometheus/api/v1/label/foo/values", "[]", "[]", nil, "least_loaded", 0)
|
|
|
|
f(ui, "/api/v1/write", "http://vminsert/0/prometheus/api/v1/write", "[]", "[]", nil, "least_loaded", 0)
|
|
|
|
f(ui, "/api/v1/foo/bar", "http://default-server/api/v1/foo/bar", "[]", "[]", nil, "least_loaded", 0)
|
2023-12-13 22:46:36 +00:00
|
|
|
f(ui, "https://vmui.foobar.com/a/b?c=d", "http://vmui.host:1234/vmui/a/b?c=d", "[]", "[]", nil, "least_loaded", 0)
|
|
|
|
|
2021-04-20 07:51:03 +00:00
|
|
|
f(&UserInfo{
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://foo.bar?extra_label=team=dev"),
|
2023-12-08 21:27:53 +00:00
|
|
|
}, "/api/v1/query", "http://foo.bar/api/v1/query?extra_label=team=dev", "[]", "[]", nil, "least_loaded", 0)
|
2021-04-20 07:51:03 +00:00
|
|
|
f(&UserInfo{
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://foo.bar?extra_label=team=mobile"),
|
2023-12-08 21:27:53 +00:00
|
|
|
}, "/api/v1/query?extra_label=team=dev", "http://foo.bar/api/v1/query?extra_label=team%3Dmobile", "[]", "[]", nil, "least_loaded", 0)
|
2021-02-11 10:40:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestCreateTargetURLFailure(t *testing.T) {
|
|
|
|
f := func(ui *UserInfo, requestURI string) {
|
|
|
|
t.Helper()
|
|
|
|
u, err := url.Parse(requestURI)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("cannot parse %q: %s", requestURI, err)
|
|
|
|
}
|
2023-02-10 05:05:13 +00:00
|
|
|
u = normalizeURL(u)
|
2023-12-08 21:27:53 +00:00
|
|
|
up, hc, dropSrcPathPrefixParts := ui.getURLPrefixAndHeaders(u)
|
2023-02-10 05:05:13 +00:00
|
|
|
if up != nil {
|
2023-02-11 08:27:40 +00:00
|
|
|
t.Fatalf("unexpected non-empty up=%#v", up)
|
2021-02-11 10:40:59 +00:00
|
|
|
}
|
2023-09-08 20:39:17 +00:00
|
|
|
if hc.RequestHeaders != nil {
|
|
|
|
t.Fatalf("unexpected non-empty request headers=%q", hc.RequestHeaders)
|
|
|
|
}
|
|
|
|
if hc.ResponseHeaders != nil {
|
|
|
|
t.Fatalf("unexpected non-empty response headers=%q", hc.ResponseHeaders)
|
2023-08-31 12:26:51 +00:00
|
|
|
}
|
2023-11-13 21:30:39 +00:00
|
|
|
if dropSrcPathPrefixParts != 0 {
|
|
|
|
t.Fatalf("unexpected non-zero dropSrcPathPrefixParts=%d", dropSrcPathPrefixParts)
|
|
|
|
}
|
2021-02-11 10:40:59 +00:00
|
|
|
}
|
|
|
|
f(&UserInfo{}, "/foo/bar")
|
|
|
|
f(&UserInfo{
|
2023-01-27 08:18:58 +00:00
|
|
|
URLMaps: []URLMap{
|
2021-02-11 10:40:59 +00:00
|
|
|
{
|
2023-12-13 22:46:36 +00:00
|
|
|
SrcPaths: getRegexs([]string{"/api/v1/query"}),
|
2021-04-21 07:55:29 +00:00
|
|
|
URLPrefix: mustParseURL("http://foobar/baz"),
|
2021-02-11 10:40:59 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}, "/api/v1/write")
|
2020-05-07 09:36:32 +00:00
|
|
|
}
|