2018-02-05 16:05:59 -05:00
package opts // import "github.com/docker/docker/opts"
2015-12-15 20:53:17 -05:00
import (
2016-01-30 21:45:49 -05:00
"fmt"
2016-12-23 14:09:12 -05:00
"strings"
2015-12-15 20:53:17 -05:00
"testing"
)
func TestParseHost ( t * testing . T ) {
2022-04-03 12:02:38 -04:00
invalid := map [ string ] string {
2022-04-03 16:00:08 -04:00
"something with spaces" : ` invalid bind address (something with spaces): parse "tcp://something with spaces": invalid character " " in host name ` ,
"://" : ` invalid bind address (://): unsupported proto '' ` ,
"unknown://" : ` invalid bind address (unknown://): unsupported proto 'unknown' ` ,
"tcp://:port" : ` invalid bind address (tcp://:port): parse "tcp://:port": invalid port ":port" after host ` ,
"tcp://invalid:port" : ` invalid bind address (tcp://invalid:port): parse "tcp://invalid:port": invalid port ":port" after host ` ,
"tcp://:5555/" : ` invalid bind address (tcp://:5555/): should not contain a path element ` ,
"tcp://:5555/p" : ` invalid bind address (tcp://:5555/p): should not contain a path element ` ,
"tcp://0.0.0.0:5555/" : ` invalid bind address (tcp://0.0.0.0:5555/): should not contain a path element ` ,
"tcp://0.0.0.0:5555/p" : ` invalid bind address (tcp://0.0.0.0:5555/p): should not contain a path element ` ,
"tcp://[::1]:/" : ` invalid bind address (tcp://[::1]:/): should not contain a path element ` ,
"tcp://[::1]:5555/" : ` invalid bind address (tcp://[::1]:5555/): should not contain a path element ` ,
"tcp://[::1]:5555/p" : ` invalid bind address (tcp://[::1]:5555/p): should not contain a path element ` ,
" tcp://:5555/path " : ` invalid bind address (tcp://:5555/path): should not contain a path element ` ,
2015-12-15 20:53:17 -05:00
}
2016-02-17 19:05:52 -05:00
2015-12-15 20:53:17 -05:00
valid := map [ string ] string {
2016-01-30 21:45:49 -05:00
"" : DefaultHost ,
" " : DefaultHost ,
" " : DefaultHost ,
2015-12-15 20:53:17 -05:00
"fd://" : "fd://" ,
"fd://something" : "fd://something" ,
2016-01-30 21:45:49 -05:00
"tcp://host:" : fmt . Sprintf ( "tcp://host:%d" , DefaultHTTPPort ) ,
"tcp://" : DefaultTCPHost ,
2022-04-03 15:00:55 -04:00
"tcp://:" : DefaultTCPHost ,
"tcp://:5555" : fmt . Sprintf ( "tcp://%s:5555" , DefaultHTTPHost ) ,
2022-04-03 16:00:08 -04:00
"tcp://[::1]" : fmt . Sprintf ( ` tcp://[::1]:%d ` , DefaultHTTPPort ) ,
2022-04-03 15:00:55 -04:00
"tcp://[::1]:" : fmt . Sprintf ( ` tcp://[::1]:%d ` , DefaultHTTPPort ) ,
"tcp://[::1]:5555" : ` tcp://[::1]:5555 ` ,
"tcp://0.0.0.0:5555" : "tcp://0.0.0.0:5555" ,
"tcp://192.168:5555" : "tcp://192.168:5555" ,
"tcp://192.168.0.1:5555" : "tcp://192.168.0.1:5555" ,
2015-12-15 20:53:17 -05:00
"tcp://0.0.0.0:1234567890" : "tcp://0.0.0.0:1234567890" , // yeah it's valid :P
2022-04-03 15:00:55 -04:00
"tcp://docker.com:5555" : "tcp://docker.com:5555" ,
2016-01-30 21:45:49 -05:00
"unix://" : "unix://" + DefaultUnixSocket ,
2015-12-15 20:53:17 -05:00
"unix://path/to/socket" : "unix://path/to/socket" ,
2016-01-30 21:45:49 -05:00
"npipe://" : "npipe://" + DefaultNamedPipe ,
"npipe:////./pipe/foo" : "npipe:////./pipe/foo" ,
2015-12-15 20:53:17 -05:00
}
2022-04-03 12:02:38 -04:00
for value , expectedError := range invalid {
2022-04-03 10:50:32 -04:00
t . Run ( value , func ( t * testing . T ) {
_ , err := ParseHost ( false , false , value )
2022-04-03 12:02:38 -04:00
if err == nil || err . Error ( ) != expectedError {
t . Errorf ( ` expected error "%s", got "%v" ` , expectedError , err )
2022-04-03 10:50:32 -04:00
}
} )
2015-12-15 20:53:17 -05:00
}
2016-02-17 19:05:52 -05:00
2015-12-15 20:53:17 -05:00
for value , expected := range valid {
2022-04-03 10:50:32 -04:00
t . Run ( value , func ( t * testing . T ) {
actual , err := ParseHost ( false , false , value )
if err != nil {
t . Errorf ( ` unexpected error: "%v" ` , err )
}
if actual != expected {
t . Errorf ( ` expected "%s", got "%s"" ` , expected , actual )
}
} )
2015-12-15 20:53:17 -05:00
}
}
func TestParseDockerDaemonHost ( t * testing . T ) {
invalids := map [ string ] string {
2022-04-03 16:00:08 -04:00
"tcp:a.b.c.d" : ` invalid bind address (tcp:a.b.c.d): parse "tcp://tcp:a.b.c.d": invalid port ":a.b.c.d" after host ` ,
"tcp:a.b.c.d/path" : ` invalid bind address (tcp:a.b.c.d/path): parse "tcp://tcp:a.b.c.d/path": invalid port ":a.b.c.d" after host ` ,
"tcp://127.0.0.1/" : "invalid bind address (tcp://127.0.0.1/): should not contain a path element" ,
"udp://127.0.0.1" : "invalid bind address (udp://127.0.0.1): unsupported proto 'udp'" ,
"udp://127.0.0.1:5555" : "invalid bind address (udp://127.0.0.1:5555): unsupported proto 'udp'" ,
"tcp://unix:///run/docker.sock" : "invalid bind address (tcp://unix:///run/docker.sock): should not contain a path element" ,
" tcp://:5555/path " : "invalid bind address ( tcp://:5555/path ): unsupported proto ' tcp'" ,
"" : "invalid bind address (): unsupported proto ''" ,
2022-04-03 15:38:24 -04:00
":5555/path" : "invalid bind address (:5555/path): should not contain a path element" ,
"0.0.0.1:5555/path" : "invalid bind address (0.0.0.1:5555/path): should not contain a path element" ,
"[::1]:5555/path" : "invalid bind address ([::1]:5555/path): should not contain a path element" ,
"[0:0:0:0:0:0:0:1]:5555/path" : "invalid bind address ([0:0:0:0:0:0:0:1]:5555/path): should not contain a path element" ,
2022-04-03 16:00:08 -04:00
"tcp://:5555/path" : "invalid bind address (tcp://:5555/path): should not contain a path element" ,
2022-04-03 15:38:24 -04:00
"localhost:5555/path" : "invalid bind address (localhost:5555/path): should not contain a path element" ,
2015-12-15 20:53:17 -05:00
}
valids := map [ string ] string {
2022-04-03 15:00:55 -04:00
":" : DefaultTCPHost ,
":5555" : fmt . Sprintf ( "tcp://%s:5555" , DefaultHTTPHost ) ,
"0.0.0.1:" : fmt . Sprintf ( "tcp://0.0.0.1:%d" , DefaultHTTPPort ) ,
2022-04-03 15:38:24 -04:00
"0.0.0.1:5555" : "tcp://0.0.0.1:5555" ,
2022-04-03 16:00:08 -04:00
"[::1]" : fmt . Sprintf ( "tcp://[::1]:%d" , DefaultHTTPPort ) ,
2022-04-03 15:00:55 -04:00
"[::1]:" : fmt . Sprintf ( "tcp://[::1]:%d" , DefaultHTTPPort ) ,
"[::1]:5555" : "tcp://[::1]:5555" ,
2022-04-03 16:00:08 -04:00
"[0:0:0:0:0:0:0:1]" : fmt . Sprintf ( "tcp://[0:0:0:0:0:0:0:1]:%d" , DefaultHTTPPort ) ,
2022-04-03 15:00:55 -04:00
"[0:0:0:0:0:0:0:1]:" : fmt . Sprintf ( "tcp://[0:0:0:0:0:0:0:1]:%d" , DefaultHTTPPort ) ,
"[0:0:0:0:0:0:0:1]:5555" : "tcp://[0:0:0:0:0:0:0:1]:5555" ,
"localhost" : fmt . Sprintf ( "tcp://localhost:%d" , DefaultHTTPPort ) ,
"localhost:" : fmt . Sprintf ( "tcp://localhost:%d" , DefaultHTTPPort ) ,
"localhost:5555" : "tcp://localhost:5555" ,
2022-04-03 15:38:24 -04:00
"fd://" : "fd://" ,
"fd://something" : "fd://something" ,
2022-04-03 15:00:55 -04:00
"npipe://" : "npipe://" + DefaultNamedPipe ,
"npipe:////./pipe/foo" : "npipe:////./pipe/foo" ,
"tcp://" : DefaultTCPHost ,
"tcp://:5555" : fmt . Sprintf ( "tcp://%s:5555" , DefaultHTTPHost ) ,
2022-04-03 16:00:08 -04:00
"tcp://[::1]" : fmt . Sprintf ( "tcp://[::1]:%d" , DefaultHTTPPort ) ,
2022-04-03 15:00:55 -04:00
"tcp://[::1]:" : fmt . Sprintf ( "tcp://[::1]:%d" , DefaultHTTPPort ) ,
"tcp://[::1]:5555" : "tcp://[::1]:5555" ,
"unix://" : "unix://" + DefaultUnixSocket ,
"unix:///run/docker.sock" : "unix:///run/docker.sock" ,
2015-12-15 20:53:17 -05:00
}
for invalidAddr , expectedError := range invalids {
2022-04-03 10:50:32 -04:00
t . Run ( invalidAddr , func ( t * testing . T ) {
addr , err := parseDaemonHost ( invalidAddr )
if err == nil || err . Error ( ) != expectedError {
t . Errorf ( ` expected error "%s", got "%v" ` , expectedError , err )
}
if addr != "" {
t . Errorf ( ` expected addr to be empty, got "%s"" ` , addr )
}
} )
2015-12-15 20:53:17 -05:00
}
for validAddr , expectedAddr := range valids {
2022-04-03 10:50:32 -04:00
t . Run ( validAddr , func ( t * testing . T ) {
addr , err := parseDaemonHost ( validAddr )
if err != nil {
t . Errorf ( ` unexpected error: "%v" ` , err )
}
if addr != expectedAddr {
t . Errorf ( ` expected "%s", got "%s"" ` , expectedAddr , addr )
}
} )
2015-12-15 20:53:17 -05:00
}
}
func TestParseTCP ( t * testing . T ) {
var (
2022-04-03 15:00:55 -04:00
defaultHTTPHost = "tcp://127.0.0.1:8888"
2015-12-15 20:53:17 -05:00
)
invalids := map [ string ] string {
2022-04-03 16:00:08 -04:00
"tcp:a.b.c.d" : ` invalid bind address (tcp:a.b.c.d): parse "tcp://tcp:a.b.c.d": invalid port ":a.b.c.d" after host ` ,
"tcp:a.b.c.d/path" : ` invalid bind address (tcp:a.b.c.d/path): parse "tcp://tcp:a.b.c.d/path": invalid port ":a.b.c.d" after host ` ,
"udp://127.0.0.1" : "invalid bind address (udp://127.0.0.1): unsupported proto 'udp'" ,
"udp://127.0.0.1:5555" : "invalid bind address (udp://127.0.0.1:5555): unsupported proto 'udp'" ,
2022-04-03 15:38:24 -04:00
":5555/path" : "invalid bind address (:5555/path): should not contain a path element" ,
"0.0.0.1:5555/path" : "invalid bind address (0.0.0.1:5555/path): should not contain a path element" ,
"[::1]:5555/path" : "invalid bind address ([::1]:5555/path): should not contain a path element" ,
"[0:0:0:0:0:0:0:1]:5555/path" : "invalid bind address ([0:0:0:0:0:0:0:1]:5555/path): should not contain a path element" ,
"tcp://:5555/path" : "invalid bind address (tcp://:5555/path): should not contain a path element" ,
"localhost:5555/path" : "invalid bind address (localhost:5555/path): should not contain a path element" ,
2015-12-15 20:53:17 -05:00
}
2022-04-03 16:00:08 -04:00
invalidDefaults := map [ string ] string {
"localhost" : ` invalid default address (localhost): unsupported proto '' ` ,
"udp://localhost" : ` invalid default address (udp://localhost): unsupported proto 'udp' ` ,
"tcp://localhost:noport" : ` invalid default address (tcp://localhost:noport): parse "tcp://localhost:noport": invalid port ":noport" after host ` ,
"tcp://localhost:5555/path" : ` invalid default address (tcp://localhost:5555/path): should not contain a path element ` ,
}
2015-12-15 20:53:17 -05:00
valids := map [ string ] string {
2022-04-03 15:38:24 -04:00
"" : defaultHTTPHost ,
2022-04-03 15:00:55 -04:00
"0.0.0.1" : "tcp://0.0.0.1:8888" ,
"0.0.0.1:" : "tcp://0.0.0.1:8888" ,
2022-04-03 15:38:24 -04:00
"0.0.0.1:5555" : "tcp://0.0.0.1:5555" ,
2022-04-03 15:00:55 -04:00
":" : "tcp://127.0.0.1:8888" ,
":5555" : "tcp://127.0.0.1:5555" ,
2022-04-03 16:00:08 -04:00
"[::1]" : "tcp://[::1]:8888" ,
2022-04-03 15:00:55 -04:00
"[::1]:" : "tcp://[::1]:8888" ,
2022-04-03 15:38:24 -04:00
"[::1]:5555" : "tcp://[::1]:5555" ,
2022-04-03 16:00:08 -04:00
"[0:0:0:0:0:0:0:1]" : "tcp://[0:0:0:0:0:0:0:1]:8888" ,
2022-04-03 15:00:55 -04:00
"[0:0:0:0:0:0:0:1]:" : "tcp://[0:0:0:0:0:0:0:1]:8888" ,
2022-04-03 15:38:24 -04:00
"[0:0:0:0:0:0:0:1]:5555" : "tcp://[0:0:0:0:0:0:0:1]:5555" ,
2022-04-03 15:00:55 -04:00
"localhost" : "tcp://localhost:8888" ,
"localhost:" : "tcp://localhost:8888" ,
2022-04-03 15:38:24 -04:00
"localhost:5555" : "tcp://localhost:5555" ,
2022-04-03 15:00:55 -04:00
"tcp://" : defaultHTTPHost ,
"tcp://:" : defaultHTTPHost ,
"tcp://:5555" : "tcp://127.0.0.1:5555" ,
2015-12-15 20:53:17 -05:00
}
for invalidAddr , expectedError := range invalids {
2022-04-03 10:50:32 -04:00
t . Run ( invalidAddr , func ( t * testing . T ) {
addr , err := ParseTCPAddr ( invalidAddr , defaultHTTPHost )
if err == nil || err . Error ( ) != expectedError {
t . Errorf ( ` expected error "%s", got "%v" ` , expectedError , err )
}
if addr != "" {
t . Errorf ( ` expected addr to be empty, got "%s"" ` , addr )
}
} )
2015-12-15 20:53:17 -05:00
}
2022-04-03 16:00:08 -04:00
for invalidAddr , expectedError := range invalidDefaults {
t . Run ( "default " + invalidAddr , func ( t * testing . T ) {
_ , err := ParseTCPAddr ( "tcp://0.0.0.0:2375" , invalidAddr )
if err == nil || err . Error ( ) != expectedError {
t . Errorf ( ` expected error "%s", got "%v" ` , expectedError , err )
}
} )
}
2015-12-15 20:53:17 -05:00
for validAddr , expectedAddr := range valids {
2022-04-03 10:50:32 -04:00
t . Run ( validAddr , func ( t * testing . T ) {
addr , err := ParseTCPAddr ( validAddr , defaultHTTPHost )
if err != nil {
t . Errorf ( ` unexpected error: "%v" ` , err )
}
if addr != expectedAddr {
t . Errorf ( ` expected "%s", got "%s"" ` , expectedAddr , addr )
}
} )
2015-12-15 20:53:17 -05:00
}
}
func TestParseInvalidUnixAddrInvalid ( t * testing . T ) {
2022-04-03 16:00:08 -04:00
if _ , err := parseSimpleProtoAddr ( "unix" , "tcp://127.0.0.1" , "unix:///var/run/docker.sock" ) ; err == nil || err . Error ( ) != "invalid proto, expected unix: tcp://127.0.0.1" {
2015-12-15 20:53:17 -05:00
t . Fatalf ( "Expected an error, got %v" , err )
}
2022-04-03 16:00:08 -04:00
if _ , err := parseSimpleProtoAddr ( "unix" , "unix://tcp://127.0.0.1" , "/var/run/docker.sock" ) ; err == nil || err . Error ( ) != "invalid proto, expected unix: tcp://127.0.0.1" {
2015-12-15 20:53:17 -05:00
t . Fatalf ( "Expected an error, got %v" , err )
}
2016-01-30 21:45:49 -05:00
if v , err := parseSimpleProtoAddr ( "unix" , "" , "/var/run/docker.sock" ) ; err != nil || v != "unix:///var/run/docker.sock" {
2015-12-15 20:53:17 -05:00
t . Fatalf ( "Expected an %v, got %v" , v , "unix:///var/run/docker.sock" )
}
}
2016-12-23 14:09:12 -05:00
func TestValidateExtraHosts ( t * testing . T ) {
valid := [ ] string {
` myhost:192.168.0.1 ` ,
` thathost:10.0.2.1 ` ,
` anipv6host:2003:ab34:e::1 ` ,
` ipv6local:::1 ` ,
}
invalid := map [ string ] string {
` myhost:192.notanipaddress.1 ` : ` invalid IP ` ,
` thathost-nosemicolon10.0.0.1 ` : ` bad format ` ,
` anipv6host:::::1 ` : ` invalid IP ` ,
` ipv6local:::0:: ` : ` invalid IP ` ,
}
for _ , extrahost := range valid {
if _ , err := ValidateExtraHost ( extrahost ) ; err != nil {
t . Fatalf ( "ValidateExtraHost(`" + extrahost + "`) should succeed: error %v" , err )
}
}
for extraHost , expectedError := range invalid {
if _ , err := ValidateExtraHost ( extraHost ) ; err == nil {
t . Fatalf ( "ValidateExtraHost(`%q`) should have failed validation" , extraHost )
} else {
if ! strings . Contains ( err . Error ( ) , expectedError ) {
t . Fatalf ( "ValidateExtraHost(`%q`) error should contain %q" , extraHost , expectedError )
}
}
}
}