mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
c85a5b7fcb
* add docker discovery * add test * add labels test and add scrape work * remove TODO * refactor to merge apiConfig and sdConfig * apply suggestion
26 lines
566 B
Go
26 lines
566 B
Go
package docker
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestGetFiltersQueryArg(t *testing.T) {
|
|
f := func(filters []Filter, queryArgExpected string) {
|
|
t.Helper()
|
|
queryArg := getFiltersQueryArg(filters)
|
|
if queryArg != queryArgExpected {
|
|
t.Fatalf("unexpected query arg; got %s; want %s", queryArg, queryArgExpected)
|
|
}
|
|
}
|
|
f(nil, "")
|
|
f([]Filter{
|
|
{
|
|
Name: "name",
|
|
Values: []string{"foo", "bar"},
|
|
},
|
|
{
|
|
Name: "xxx",
|
|
Values: []string{"aa"},
|
|
},
|
|
}, "%7B%22name%22%3A%7B%22bar%22%3Atrue%2C%22foo%22%3Atrue%7D%2C%22xxx%22%3A%7B%22aa%22%3Atrue%7D%7D")
|
|
}
|