mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
6a1ff022b0
Signed-off-by: Tibor Vass <teabee89@gmail.com> Conflicts: registry/registry.go registry/registry_test.go registry/service.go registry/session.go Conflicts: registry/endpoint.go registry/registry.go
27 lines
615 B
Go
27 lines
615 B
Go
package registry
|
|
|
|
import "testing"
|
|
|
|
func TestEndpointParse(t *testing.T) {
|
|
testData := []struct {
|
|
str string
|
|
expected string
|
|
}{
|
|
{IndexServerAddress(), IndexServerAddress()},
|
|
{"http://0.0.0.0:5000", "http://0.0.0.0:5000/v1/"},
|
|
{"0.0.0.0:5000", "https://0.0.0.0:5000/v1/"},
|
|
}
|
|
for _, td := range testData {
|
|
e, err := newEndpoint(td.str, true)
|
|
if err != nil {
|
|
t.Errorf("%q: %s", td.str, err)
|
|
}
|
|
if e == nil {
|
|
t.Logf("something's fishy, endpoint for %q is nil", td.str)
|
|
continue
|
|
}
|
|
if e.String() != td.expected {
|
|
t.Errorf("expected %q, got %q", td.expected, e.String())
|
|
}
|
|
}
|
|
}
|