2015-02-13 17:53:39 -05:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
type TestCondition func() bool
|
|
|
|
|
|
|
|
type TestRequirement struct {
|
|
|
|
Condition TestCondition
|
|
|
|
SkipMessage string
|
|
|
|
}
|
|
|
|
|
|
|
|
// List test requirements
|
|
|
|
var (
|
|
|
|
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-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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|