mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
30c96ba8d7
The new scheme is consistent with SRV urls introduced atb426d10847
anddc326f70b4
Deprecte the old scheme: `dns+srv:addr` by removing it from the docs. Updates https://github.com/VictoriaMetrics/VictoriaMetrics/issues/6053
27 lines
639 B
Go
27 lines
639 B
Go
package netutil
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestParseGroupAddr(t *testing.T) {
|
|
f := func(s, groupIDExpected, addrExpected string) {
|
|
t.Helper()
|
|
|
|
groupID, addr := ParseGroupAddr(s)
|
|
if groupID != groupIDExpected {
|
|
t.Fatalf("unexpected groupID; got %q; want %q", groupID, groupIDExpected)
|
|
}
|
|
if addr != addrExpected {
|
|
t.Fatalf("unexpected addr; got %q; want %q", addr, addrExpected)
|
|
}
|
|
}
|
|
|
|
f("", "", "")
|
|
f("foo", "", "foo")
|
|
f("file:/foo/bar", "", "file:/foo/bar")
|
|
f("foo/bar", "foo", "bar")
|
|
f("foo/srv+bar", "foo", "srv+bar")
|
|
f("foo/dns+srv:bar", "foo", "dns+srv:bar")
|
|
f("foo/file:/bar/baz", "foo", "file:/bar/baz")
|
|
}
|