2016-10-26 21:55:54 +00:00
|
|
|
//+build linux,lxc
|
|
|
|
|
2016-09-12 02:33:09 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2016-10-13 19:45:33 +00:00
|
|
|
"os"
|
|
|
|
"path/filepath"
|
2016-09-12 02:33:09 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/client/config"
|
2017-12-13 00:58:27 +00:00
|
|
|
ctestutil "github.com/hashicorp/nomad/client/testutil"
|
2016-09-12 02:33:09 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
|
|
|
"github.com/hashicorp/nomad/testutil"
|
|
|
|
lxc "gopkg.in/lxc/go-lxc.v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestLxcDriver_Fingerprint(t *testing.T) {
|
2017-07-21 19:06:39 +00:00
|
|
|
t.Parallel()
|
2016-09-12 02:33:09 +00:00
|
|
|
if !lxcPresent(t) {
|
|
|
|
t.Skip("lxc not present")
|
|
|
|
}
|
|
|
|
|
|
|
|
task := &structs.Task{
|
|
|
|
Name: "foo",
|
2016-12-03 01:04:07 +00:00
|
|
|
Driver: "lxc",
|
2016-09-12 02:33:09 +00:00
|
|
|
Resources: structs.DefaultResources(),
|
|
|
|
}
|
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewLxcDriver(ctx.DriverCtx)
|
|
|
|
|
2016-09-12 02:33:09 +00:00
|
|
|
node := &structs.Node{
|
|
|
|
Attributes: map[string]string{},
|
|
|
|
}
|
|
|
|
apply, err := d.Fingerprint(&config.Config{}, node)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2016-11-01 17:16:39 +00:00
|
|
|
if !apply {
|
|
|
|
t.Fatalf("should apply by default")
|
2016-10-13 20:22:12 +00:00
|
|
|
}
|
|
|
|
|
2016-11-01 17:16:39 +00:00
|
|
|
apply, err = d.Fingerprint(&config.Config{Options: map[string]string{lxcConfigOption: "0"}}, node)
|
2016-10-13 20:22:12 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2016-11-01 21:35:09 +00:00
|
|
|
if apply {
|
2016-11-01 17:16:39 +00:00
|
|
|
t.Fatalf("should not apply with config")
|
2016-09-12 02:33:09 +00:00
|
|
|
}
|
|
|
|
if node.Attributes["driver.lxc"] == "" {
|
|
|
|
t.Fatalf("missing driver")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLxcDriver_Start_Wait(t *testing.T) {
|
2017-07-23 04:01:22 +00:00
|
|
|
if !testutil.IsTravis() {
|
2017-07-23 02:04:36 +00:00
|
|
|
t.Parallel()
|
|
|
|
}
|
2016-09-12 02:33:09 +00:00
|
|
|
if !lxcPresent(t) {
|
|
|
|
t.Skip("lxc not present")
|
|
|
|
}
|
2017-12-13 00:58:27 +00:00
|
|
|
ctestutil.RequireRoot(t)
|
2016-09-12 02:33:09 +00:00
|
|
|
|
|
|
|
task := &structs.Task{
|
2016-12-03 01:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Driver: "lxc",
|
2016-09-12 02:33:09 +00:00
|
|
|
Config: map[string]interface{}{
|
|
|
|
"template": "/usr/share/lxc/templates/lxc-busybox",
|
2018-01-04 22:45:16 +00:00
|
|
|
"volumes": []string{"/tmp/:mnt/tmp"},
|
2016-09-12 02:33:09 +00:00
|
|
|
},
|
|
|
|
KillTimeout: 10 * time.Second,
|
|
|
|
Resources: structs.DefaultResources(),
|
|
|
|
}
|
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewLxcDriver(ctx.DriverCtx)
|
2016-09-12 02:33:09 +00:00
|
|
|
|
2017-01-10 21:24:45 +00:00
|
|
|
if _, err := d.Prestart(ctx.ExecCtx, task); err != nil {
|
2016-11-30 00:39:36 +00:00
|
|
|
t.Fatalf("prestart err: %v", err)
|
|
|
|
}
|
2017-06-20 20:21:55 +00:00
|
|
|
sresp, err := d.Start(ctx.ExecCtx, task)
|
2016-09-12 02:33:09 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-06-20 20:21:55 +00:00
|
|
|
lxcHandle, _ := sresp.Handle.(*lxcDriverHandle)
|
2016-09-12 02:33:09 +00:00
|
|
|
|
|
|
|
// Destroy the container after the test
|
|
|
|
defer func() {
|
|
|
|
lxcHandle.container.Stop()
|
|
|
|
lxcHandle.container.Destroy()
|
|
|
|
}()
|
|
|
|
|
|
|
|
testutil.WaitForResult(func() (bool, error) {
|
|
|
|
state := lxcHandle.container.State()
|
|
|
|
if state == lxc.RUNNING {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
return false, fmt.Errorf("container in state: %v", state)
|
|
|
|
}, func(err error) {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
})
|
|
|
|
|
2016-10-13 19:45:33 +00:00
|
|
|
// Look for mounted directories in their proper location
|
2017-03-26 00:05:53 +00:00
|
|
|
containerName := fmt.Sprintf("%s-%s", task.Name, ctx.DriverCtx.allocID)
|
2018-01-04 22:45:16 +00:00
|
|
|
for _, mnt := range []string{"alloc", "local", "secrets", "mnt/tmp"} {
|
2016-10-13 19:45:33 +00:00
|
|
|
fullpath := filepath.Join(lxcHandle.lxcPath, containerName, "rootfs", mnt)
|
|
|
|
stat, err := os.Stat(fullpath)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err %v", err)
|
|
|
|
}
|
|
|
|
if !stat.IsDir() {
|
|
|
|
t.Fatalf("expected %q to be a dir", fullpath)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-12 02:33:09 +00:00
|
|
|
// Desroy the container
|
2017-06-20 20:21:55 +00:00
|
|
|
if err := sresp.Handle.Kill(); err != nil {
|
2016-09-12 02:33:09 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
2017-06-20 20:21:55 +00:00
|
|
|
case res := <-sresp.Handle.WaitCh():
|
2016-09-12 02:33:09 +00:00
|
|
|
if !res.Successful() {
|
|
|
|
t.Fatalf("err: %v", res)
|
|
|
|
}
|
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * time.Second):
|
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLxcDriver_Open_Wait(t *testing.T) {
|
2017-07-23 04:01:22 +00:00
|
|
|
if !testutil.IsTravis() {
|
2017-07-23 02:04:36 +00:00
|
|
|
t.Parallel()
|
|
|
|
}
|
2016-09-12 02:33:09 +00:00
|
|
|
if !lxcPresent(t) {
|
|
|
|
t.Skip("lxc not present")
|
|
|
|
}
|
2017-12-13 00:58:27 +00:00
|
|
|
ctestutil.RequireRoot(t)
|
2016-09-12 02:33:09 +00:00
|
|
|
|
|
|
|
task := &structs.Task{
|
2016-12-03 01:04:07 +00:00
|
|
|
Name: "foo",
|
|
|
|
Driver: "lxc",
|
2016-09-12 02:33:09 +00:00
|
|
|
Config: map[string]interface{}{
|
|
|
|
"template": "/usr/share/lxc/templates/lxc-busybox",
|
|
|
|
},
|
|
|
|
KillTimeout: 10 * time.Second,
|
|
|
|
Resources: structs.DefaultResources(),
|
|
|
|
}
|
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewLxcDriver(ctx.DriverCtx)
|
2016-09-12 02:33:09 +00:00
|
|
|
|
2017-01-10 21:24:45 +00:00
|
|
|
if _, err := d.Prestart(ctx.ExecCtx, task); err != nil {
|
2016-11-30 00:39:36 +00:00
|
|
|
t.Fatalf("prestart err: %v", err)
|
|
|
|
}
|
2017-06-20 20:21:55 +00:00
|
|
|
sresp, err := d.Start(ctx.ExecCtx, task)
|
2016-09-12 02:33:09 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Destroy the container after the test
|
2017-06-20 20:21:55 +00:00
|
|
|
lh := sresp.Handle.(*lxcDriverHandle)
|
|
|
|
defer func() {
|
|
|
|
lh.container.Stop()
|
|
|
|
lh.container.Destroy()
|
|
|
|
}()
|
2016-09-12 02:33:09 +00:00
|
|
|
|
2017-06-20 20:21:55 +00:00
|
|
|
handle2, err := d.Open(ctx.ExecCtx, lh.ID())
|
2016-09-12 02:33:09 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if handle2 == nil {
|
|
|
|
t.Fatalf("missing handle on open")
|
|
|
|
}
|
|
|
|
|
|
|
|
lxcHandle, _ := handle2.(*lxcDriverHandle)
|
|
|
|
|
|
|
|
testutil.WaitForResult(func() (bool, error) {
|
|
|
|
state := lxcHandle.container.State()
|
|
|
|
if state == lxc.RUNNING {
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
return false, fmt.Errorf("container in state: %v", state)
|
|
|
|
}, func(err error) {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Desroy the container
|
|
|
|
if err := handle2.Kill(); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func lxcPresent(t *testing.T) bool {
|
|
|
|
return lxc.Version() != ""
|
|
|
|
}
|
2018-01-04 22:45:16 +00:00
|
|
|
|
|
|
|
func TestLxcDriver_Volumes_ConfigValidation(t *testing.T) {
|
|
|
|
if !testutil.IsTravis() {
|
|
|
|
t.Parallel()
|
|
|
|
}
|
|
|
|
if !lxcPresent(t) {
|
|
|
|
t.Skip("lxc not present")
|
|
|
|
}
|
|
|
|
ctestutil.RequireRoot(t)
|
|
|
|
|
|
|
|
brokenVolumeConfigs := [][]string{
|
|
|
|
[]string{
|
|
|
|
"foo:/var",
|
|
|
|
},
|
|
|
|
[]string{
|
|
|
|
":",
|
|
|
|
},
|
|
|
|
[]string{
|
|
|
|
"abc:",
|
|
|
|
},
|
|
|
|
[]string{
|
|
|
|
":def",
|
|
|
|
},
|
|
|
|
[]string{
|
|
|
|
"abc:def:ghi",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, bc := range brokenVolumeConfigs {
|
|
|
|
if err := testVolumeConfig(t, bc); err == nil {
|
|
|
|
t.Fatalf("error expected in validate for config %+v", bc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := testVolumeConfig(t, []string{"abc:def"}); err != nil {
|
|
|
|
t.Fatalf("error in validate for syntactically valid config abc:def")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func testVolumeConfig(t *testing.T, volConfig []string) error {
|
|
|
|
task := &structs.Task{
|
|
|
|
Name: "voltest",
|
|
|
|
Driver: "lxc",
|
|
|
|
KillTimeout: 10 * time.Second,
|
|
|
|
Resources: structs.DefaultResources(),
|
|
|
|
Config: map[string]interface{}{
|
|
|
|
"template": "busybox",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
task.Config["volumes"] = volConfig
|
|
|
|
|
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
|
|
|
|
driver := NewLxcDriver(ctx.DriverCtx)
|
|
|
|
|
|
|
|
err := driver.Validate(task.Config)
|
|
|
|
return err
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestLxcDriver_Start_NoVolumes(t *testing.T) {
|
|
|
|
if !testutil.IsTravis() {
|
|
|
|
t.Parallel()
|
|
|
|
}
|
|
|
|
if !lxcPresent(t) {
|
|
|
|
t.Skip("lxc not present")
|
|
|
|
}
|
|
|
|
ctestutil.RequireRoot(t)
|
|
|
|
|
|
|
|
task := &structs.Task{
|
|
|
|
Name: "foo",
|
|
|
|
Driver: "lxc",
|
|
|
|
Config: map[string]interface{}{
|
|
|
|
"template": "/usr/share/lxc/templates/lxc-busybox",
|
|
|
|
"volumes": []string{"/tmp/:mnt/tmp"},
|
|
|
|
},
|
|
|
|
KillTimeout: 10 * time.Second,
|
|
|
|
Resources: structs.DefaultResources(),
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
|
|
|
|
ctx.DriverCtx.config.Options = map[string]string{lxcVolumesConfigOption: "false"}
|
|
|
|
|
|
|
|
d := NewLxcDriver(ctx.DriverCtx)
|
|
|
|
|
|
|
|
if _, err := d.Prestart(ctx.ExecCtx, task); err != nil {
|
|
|
|
t.Fatalf("prestart err: %v", err)
|
|
|
|
}
|
|
|
|
_, err := d.Start(ctx.ExecCtx, task)
|
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("expected error in start, got nil.")
|
|
|
|
}
|
|
|
|
}
|