Exploring the code using unit tests - these 2 functions do not work consistently
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
This commit is contained in:
parent
7e6418c6b1
commit
6270b081d5
1 changed files with 68 additions and 8 deletions
|
@ -1,6 +1,7 @@
|
||||||
package parsers
|
package parsers
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"runtime"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
@ -9,14 +10,20 @@ func TestParseHost(t *testing.T) {
|
||||||
var (
|
var (
|
||||||
defaultHTTPHost = "127.0.0.1"
|
defaultHTTPHost = "127.0.0.1"
|
||||||
defaultUnix = "/var/run/docker.sock"
|
defaultUnix = "/var/run/docker.sock"
|
||||||
|
defaultHOST = "unix:///var/run/docker.sock"
|
||||||
)
|
)
|
||||||
invalids := map[string]string{
|
invalids := map[string]string{
|
||||||
"0.0.0.0": "Invalid bind address format: 0.0.0.0",
|
"0.0.0.0": "Invalid bind address format: 0.0.0.0",
|
||||||
|
"0.0.0.0:": "Invalid bind address format: 0.0.0.0:",
|
||||||
"tcp://": "Invalid proto, expected tcp: ",
|
"tcp://": "Invalid proto, expected tcp: ",
|
||||||
"tcp:a.b.c.d": "Invalid bind address format: tcp:a.b.c.d",
|
"tcp:a.b.c.d": "Invalid bind address format: tcp:a.b.c.d",
|
||||||
"tcp:a.b.c.d/path": "Invalid bind address format: tcp:a.b.c.d/path",
|
"tcp:a.b.c.d/path": "Invalid bind address format: tcp:a.b.c.d/path",
|
||||||
"udp://127.0.0.1": "Invalid bind address format: udp://127.0.0.1",
|
"udp://127.0.0.1": "Invalid bind address format: udp://127.0.0.1",
|
||||||
"udp://127.0.0.1:2375": "Invalid bind address format: udp://127.0.0.1:2375",
|
"udp://127.0.0.1:2375": "Invalid bind address format: udp://127.0.0.1:2375",
|
||||||
|
"tcp://unix:///run/docker.sock": "Invalid bind address format: unix",
|
||||||
|
"tcp": "Invalid bind address format: tcp",
|
||||||
|
"unix": "Invalid bind address format: unix",
|
||||||
|
"fd": "Invalid bind address format: fd",
|
||||||
}
|
}
|
||||||
valids := map[string]string{
|
valids := map[string]string{
|
||||||
"0.0.0.1:5555": "tcp://0.0.0.1:5555",
|
"0.0.0.1:5555": "tcp://0.0.0.1:5555",
|
||||||
|
@ -25,12 +32,24 @@ func TestParseHost(t *testing.T) {
|
||||||
":6666/path": "tcp://127.0.0.1:6666/path",
|
":6666/path": "tcp://127.0.0.1:6666/path",
|
||||||
"tcp://:7777": "tcp://127.0.0.1:7777",
|
"tcp://:7777": "tcp://127.0.0.1:7777",
|
||||||
"tcp://:7777/path": "tcp://127.0.0.1:7777/path",
|
"tcp://:7777/path": "tcp://127.0.0.1:7777/path",
|
||||||
"": "unix:///var/run/docker.sock",
|
// as there's a TrimSpace in there, we should test for it.
|
||||||
|
" tcp://:7777/path ": "tcp://127.0.0.1:7777/path",
|
||||||
"unix:///run/docker.sock": "unix:///run/docker.sock",
|
"unix:///run/docker.sock": "unix:///run/docker.sock",
|
||||||
"unix://": "unix:///var/run/docker.sock",
|
"unix://": "unix:///var/run/docker.sock",
|
||||||
"fd://": "fd://",
|
"fd://": "fd://",
|
||||||
"fd://something": "fd://something",
|
"fd://something": "fd://something",
|
||||||
}
|
}
|
||||||
|
if runtime.GOOS == "windows" {
|
||||||
|
defaultHOST = "Invalid bind address format: 127.0.0.1"
|
||||||
|
// SVEN: an example of the conflicted defaultHTTPHost
|
||||||
|
invalids[""] = defaultHOST
|
||||||
|
invalids[" "] = defaultHOST
|
||||||
|
invalids[" "] = defaultHOST
|
||||||
|
} else {
|
||||||
|
valids[""] = defaultHOST
|
||||||
|
valids[" "] = defaultHOST
|
||||||
|
valids[" "] = defaultHOST
|
||||||
|
}
|
||||||
for invalidAddr, expectedError := range invalids {
|
for invalidAddr, expectedError := range invalids {
|
||||||
if addr, err := ParseHost(defaultHTTPHost, defaultUnix, invalidAddr); err == nil || err.Error() != expectedError {
|
if addr, err := ParseHost(defaultHTTPHost, defaultUnix, invalidAddr); err == nil || err.Error() != expectedError {
|
||||||
t.Errorf("tcp %v address expected error %v return, got %s and addr %v", invalidAddr, expectedError, err, addr)
|
t.Errorf("tcp %v address expected error %v return, got %s and addr %v", invalidAddr, expectedError, err, addr)
|
||||||
|
@ -38,15 +57,56 @@ func TestParseHost(t *testing.T) {
|
||||||
}
|
}
|
||||||
for validAddr, expectedAddr := range valids {
|
for validAddr, expectedAddr := range valids {
|
||||||
if addr, err := ParseHost(defaultHTTPHost, defaultUnix, validAddr); err != nil || addr != expectedAddr {
|
if addr, err := ParseHost(defaultHTTPHost, defaultUnix, validAddr); err != nil || addr != expectedAddr {
|
||||||
t.Errorf("%v -> expected %v, got %v", validAddr, expectedAddr, addr)
|
t.Errorf("%v -> expected %v, got (%v) addr (%v)", validAddr, expectedAddr, err, addr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestParseTCP(t *testing.T) {
|
||||||
|
var (
|
||||||
|
//SVEN if this is set to tcp://127.0.0.1, then we end up with results like 'tcp://tcp://127.0.0.1:6666'
|
||||||
|
defaultHTTPHost = "127.0.0.1"
|
||||||
|
)
|
||||||
|
invalids := map[string]string{
|
||||||
|
"0.0.0.0": "Invalid bind address format: 0.0.0.0",
|
||||||
|
"0.0.0.0:": "Invalid bind address format: 0.0.0.0:",
|
||||||
|
"tcp://": "Invalid proto, expected tcp: ",
|
||||||
|
"tcp:a.b.c.d": "Invalid bind address format: tcp:a.b.c.d",
|
||||||
|
"tcp:a.b.c.d/path": "Invalid bind address format: tcp:a.b.c.d/path",
|
||||||
|
"udp://127.0.0.1": "Invalid proto, expected tcp: udp://127.0.0.1",
|
||||||
|
"udp://127.0.0.1:2375": "Invalid proto, expected tcp: udp://127.0.0.1:2375",
|
||||||
|
"": "Invalid proto, expected tcp: ",
|
||||||
|
}
|
||||||
|
valids := map[string]string{
|
||||||
|
"0.0.0.1:5555": "tcp://0.0.0.1:5555",
|
||||||
|
"0.0.0.1:5555/path": "tcp://0.0.0.1:5555/path",
|
||||||
|
":6666": "tcp://127.0.0.1:6666",
|
||||||
|
":6666/path": "tcp://127.0.0.1:6666/path",
|
||||||
|
"tcp://:7777": "tcp://127.0.0.1:7777",
|
||||||
|
"tcp://:7777/path": "tcp://127.0.0.1:7777/path",
|
||||||
|
}
|
||||||
|
for invalidAddr, expectedError := range invalids {
|
||||||
|
if addr, err := ParseTCPAddr(invalidAddr, defaultHTTPHost); err == nil || err.Error() != expectedError {
|
||||||
|
t.Errorf("tcp %v address expected error %v return, got %s and addr %v", invalidAddr, expectedError, err, addr)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for validAddr, expectedAddr := range valids {
|
||||||
|
if addr, err := ParseTCPAddr(validAddr, defaultHTTPHost); err != nil || addr != expectedAddr {
|
||||||
|
t.Errorf("%v -> expected %v, got %v and addr %v", validAddr, expectedAddr, err, addr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestParseInvalidUnixAddrInvalid(t *testing.T) {
|
func TestParseInvalidUnixAddrInvalid(t *testing.T) {
|
||||||
|
if _, err := ParseUnixAddr("tcp://127.0.0.1", "unix:///var/run/docker.sock"); err == nil || err.Error() != "Invalid proto, expected unix: tcp://127.0.0.1" {
|
||||||
|
t.Fatalf("Expected an error, got %v", err)
|
||||||
|
}
|
||||||
if _, err := ParseUnixAddr("unix://tcp://127.0.0.1", "unix:///var/run/docker.sock"); err == nil || err.Error() != "Invalid proto, expected unix: tcp://127.0.0.1" {
|
if _, err := ParseUnixAddr("unix://tcp://127.0.0.1", "unix:///var/run/docker.sock"); err == nil || err.Error() != "Invalid proto, expected unix: tcp://127.0.0.1" {
|
||||||
t.Fatalf("Expected an error, got %v", err)
|
t.Fatalf("Expected an error, got %v", err)
|
||||||
}
|
}
|
||||||
|
if v, err := ParseUnixAddr("", "/var/run/docker.sock"); err != nil || v != "unix:///var/run/docker.sock" {
|
||||||
|
t.Fatalf("Expected an %v, got %v", v, "unix:///var/run/docker.sock")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestParseRepositoryTag(t *testing.T) {
|
func TestParseRepositoryTag(t *testing.T) {
|
||||||
|
|
Loading…
Reference in a new issue