Add missing files

This commit is contained in:
Marcos Lilljedahl 2015-07-06 22:21:46 -03:00
parent d2810ddc95
commit ef335d9fd7
2 changed files with 38 additions and 0 deletions

12
testutil/testutil.go Normal file
View File

@ -0,0 +1,12 @@
package testutil
import "os"
var localhost = "localhost"
func GetLocalHost() string {
if dockerHostVar := os.Getenv("DOCKER_HOST"); dockerHostVar != "" {
return dockerHostVar
}
return localhost
}

26
testutil/testutil_test.go Normal file
View File

@ -0,0 +1,26 @@
package testutil
import (
"os"
"testing"
)
func TestDockerHost(t *testing.T) {
os.Unsetenv("DOCKER_HOST")
host := GetLocalHost()
if host != localhost {
t.Fatalf("Host should be localhost when DOCKER_HOST is not set. Current value [%s]", host)
}
os.Setenv("DOCKER_HOST", "1.1.1.1")
host = GetLocalHost()
if host != "1.1.1.1" {
t.Fatalf("Host should take DOCKER_HOST value when set. Current value is [%s] and DOCKER_HOST is [%s]", host, os.Getenv("DOCKER_HOST"))
}
}