2015-02-13 17:53:39 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2015-02-25 23:16:44 -05:00
|
|
|
"encoding/json"
|
2015-02-25 02:19:59 -05:00
|
|
|
"fmt"
|
2015-02-25 23:16:44 -05:00
|
|
|
"log"
|
2015-02-25 02:19:59 -05:00
|
|
|
"os/exec"
|
2015-02-25 23:16:44 -05:00
|
|
|
"strings"
|
2015-02-13 17:53:39 -05:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type TestCondition func() bool
|
|
|
|
|
|
|
|
type TestRequirement struct {
|
|
|
|
Condition TestCondition
|
|
|
|
SkipMessage string
|
|
|
|
}
|
|
|
|
|
|
|
|
// List test requirements
|
|
|
|
var (
|
2015-02-25 23:16:44 -05:00
|
|
|
daemonExecDriver string
|
|
|
|
|
2015-02-13 17:53:39 -05:00
|
|
|
SameHostDaemon = TestRequirement{
|
|
|
|
func() bool { return isLocalDaemon },
|
|
|
|
"Test requires docker daemon to runs on the same machine as CLI",
|
|
|
|
}
|
2015-02-20 04:37:27 -05:00
|
|
|
UnixCli = TestRequirement{
|
|
|
|
func() bool { return isUnixCli },
|
|
|
|
"Test requires posix utilities or functionality to run.",
|
|
|
|
}
|
2015-02-21 02:24:30 -05:00
|
|
|
ExecSupport = TestRequirement{
|
|
|
|
func() bool { return supportsExec },
|
|
|
|
"Test requires 'docker exec' capabilities on the tested daemon.",
|
|
|
|
}
|
2015-02-25 02:19:59 -05:00
|
|
|
RegistryHosting = TestRequirement{
|
|
|
|
func() bool {
|
|
|
|
// for now registry binary is built only if we're running inside
|
|
|
|
// container through `make test`. Figure that out by testing if
|
|
|
|
// registry binary is in PATH.
|
|
|
|
_, err := exec.LookPath(v2binary)
|
|
|
|
return err == nil
|
|
|
|
},
|
|
|
|
fmt.Sprintf("Test requires an environment that can host %s in the same host", v2binary),
|
|
|
|
}
|
2015-02-25 23:16:44 -05:00
|
|
|
NativeExecDriver = TestRequirement{
|
|
|
|
func() bool {
|
|
|
|
if daemonExecDriver == "" {
|
|
|
|
// get daemon info
|
|
|
|
body, err := sockRequest("GET", "/info", nil)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("sockRequest failed for /info: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
type infoJSON struct {
|
|
|
|
ExecutionDriver string
|
|
|
|
}
|
|
|
|
var info infoJSON
|
|
|
|
if err = json.Unmarshal(body, &info); err != nil {
|
|
|
|
log.Fatalf("unable to unmarshal body: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
daemonExecDriver = info.ExecutionDriver
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.HasPrefix(daemonExecDriver, "native")
|
|
|
|
},
|
|
|
|
"Test requires the native (libcontainer) exec driver.",
|
|
|
|
}
|
2015-03-05 00:22:01 -05:00
|
|
|
|
|
|
|
NotOverlay = TestRequirement{
|
|
|
|
func() bool {
|
|
|
|
cmd := exec.Command("grep", "^overlay / overlay", "/proc/mounts")
|
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
},
|
|
|
|
"Test requires underlying root filesystem not be backed by overlay.",
|
|
|
|
}
|
2015-02-13 17:53:39 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// testRequires checks if the environment satisfies the requirements
|
|
|
|
// for the test to run or skips the tests.
|
|
|
|
func testRequires(t *testing.T, requirements ...TestRequirement) {
|
|
|
|
for _, r := range requirements {
|
|
|
|
if !r.Condition() {
|
|
|
|
t.Skip(r.SkipMessage)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|