open-nomad/client/testutil/driver_compatible.go

42 lines
1004 B
Go
Raw Normal View History

2015-09-23 00:10:03 +00:00
package testutil
import (
"runtime"
"syscall"
"testing"
"os/exec"
2015-09-23 00:10:03 +00:00
)
func ExecCompatible(t *testing.T) {
if runtime.GOOS != "windows" && syscall.Geteuid() != 0 {
t.Skip("Must be root on non-windows environments to run test")
}
}
2015-09-25 23:49:14 +00:00
func QemuCompatible(t *testing.T) {
if runtime.GOOS != "windows" && syscall.Geteuid() != 0 {
t.Skip("Must be root on non-windows environments to run test")
}
}
func RktCompatible(t *testing.T) {
2015-09-29 22:55:23 +00:00
if runtime.GOOS == "windows" || syscall.Geteuid() != 0 {
2015-09-29 22:33:25 +00:00
t.Skip("Must be root on non-windows environments to run test")
}
2015-09-29 22:55:23 +00:00
// else see if rkt exists
_, err := exec.Command("rkt", "version").CombinedOutput()
if err != nil {
t.Skip("Must have rkt installed for rkt specific tests to run")
}
2015-09-29 22:33:25 +00:00
}
func MountCompatible(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("Windows does not support mount")
}
if syscall.Geteuid() != 0 {
t.Skip("Must be root to run test")
}
}