2015-08-20 23:50:28 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
2015-09-27 19:17:51 +00:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"path/filepath"
|
|
|
|
"reflect"
|
2015-08-20 23:50:28 +00:00
|
|
|
"testing"
|
2015-08-29 23:20:07 +00:00
|
|
|
"time"
|
2015-08-20 23:53:43 +00:00
|
|
|
|
2015-08-25 23:21:29 +00:00
|
|
|
"github.com/hashicorp/nomad/client/config"
|
2015-09-27 19:17:51 +00:00
|
|
|
"github.com/hashicorp/nomad/client/driver/environment"
|
2015-08-20 23:53:43 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2015-09-25 23:49:14 +00:00
|
|
|
|
|
|
|
ctestutils "github.com/hashicorp/nomad/client/testutil"
|
2015-08-20 23:50:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestExecDriver_Fingerprint(t *testing.T) {
|
2015-09-25 23:49:14 +00:00
|
|
|
ctestutils.ExecCompatible(t)
|
|
|
|
d := NewExecDriver(testDriverContext(""))
|
2015-08-20 23:53:43 +00:00
|
|
|
node := &structs.Node{
|
|
|
|
Attributes: make(map[string]string),
|
|
|
|
}
|
2015-08-25 23:21:29 +00:00
|
|
|
apply, err := d.Fingerprint(&config.Config{}, node)
|
2015-08-20 23:50:28 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !apply {
|
|
|
|
t.Fatalf("should apply")
|
|
|
|
}
|
2015-08-20 23:53:43 +00:00
|
|
|
if node.Attributes["driver.exec"] == "" {
|
|
|
|
t.Fatalf("missing driver")
|
|
|
|
}
|
2015-08-20 23:50:28 +00:00
|
|
|
}
|
2015-08-29 23:20:07 +00:00
|
|
|
|
2015-09-25 23:49:14 +00:00
|
|
|
/*
|
|
|
|
TODO: This test is disabled til a follow-up api changes the restore state interface.
|
|
|
|
The driver/executor interface will be changed from Open to Cleanup, in which
|
|
|
|
clean-up tears down previous allocs.
|
2015-08-29 23:20:07 +00:00
|
|
|
|
2015-09-25 23:49:14 +00:00
|
|
|
func TestExecDriver_StartOpen_Wait(t *testing.T) {
|
|
|
|
ctestutils.ExecCompatible(t)
|
2015-08-29 23:20:07 +00:00
|
|
|
task := &structs.Task{
|
2015-09-25 23:49:14 +00:00
|
|
|
Name: "sleep",
|
2015-08-29 23:20:07 +00:00
|
|
|
Config: map[string]string{
|
|
|
|
"command": "/bin/sleep",
|
2015-09-16 15:47:43 +00:00
|
|
|
"args": "5",
|
2015-08-29 23:20:07 +00:00
|
|
|
},
|
2015-09-24 07:59:57 +00:00
|
|
|
Resources: basicResources,
|
2015-08-29 23:20:07 +00:00
|
|
|
}
|
2015-09-25 23:49:14 +00:00
|
|
|
|
|
|
|
driverCtx := testDriverContext(task.Name)
|
|
|
|
ctx := testDriverExecContext(task, driverCtx)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(driverCtx)
|
|
|
|
|
2015-09-15 21:58:15 +00:00
|
|
|
if task.Resources == nil {
|
|
|
|
task.Resources = &structs.Resources{}
|
|
|
|
}
|
2015-09-25 23:49:14 +00:00
|
|
|
task.Resources.CPU = 0.5
|
2015-09-16 15:47:43 +00:00
|
|
|
task.Resources.MemoryMB = 2
|
2015-09-15 21:58:15 +00:00
|
|
|
|
2015-08-29 23:20:07 +00:00
|
|
|
handle, err := d.Start(ctx, task)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to open
|
|
|
|
handle2, err := d.Open(ctx, handle.ID())
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle2 == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
}
|
2015-09-25 23:49:14 +00:00
|
|
|
*/
|
2015-08-29 23:20:07 +00:00
|
|
|
|
|
|
|
func TestExecDriver_Start_Wait(t *testing.T) {
|
2015-09-25 23:49:14 +00:00
|
|
|
ctestutils.ExecCompatible(t)
|
2015-08-29 23:20:07 +00:00
|
|
|
task := &structs.Task{
|
2015-09-25 23:49:14 +00:00
|
|
|
Name: "sleep",
|
2015-08-29 23:20:07 +00:00
|
|
|
Config: map[string]string{
|
|
|
|
"command": "/bin/sleep",
|
2015-10-15 23:59:08 +00:00
|
|
|
"args": "2",
|
2015-08-29 23:20:07 +00:00
|
|
|
},
|
2015-09-24 07:59:57 +00:00
|
|
|
Resources: basicResources,
|
2015-08-29 23:20:07 +00:00
|
|
|
}
|
2015-09-25 23:49:14 +00:00
|
|
|
|
|
|
|
driverCtx := testDriverContext(task.Name)
|
|
|
|
ctx := testDriverExecContext(task, driverCtx)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(driverCtx)
|
|
|
|
|
2015-08-29 23:20:07 +00:00
|
|
|
handle, err := d.Start(ctx, task)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update should be a no-op
|
|
|
|
err = handle.Update(task)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Task should terminate quickly
|
|
|
|
select {
|
|
|
|
case err := <-handle.WaitCh():
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2015-10-15 23:59:08 +00:00
|
|
|
case <-time.After(4 * time.Second):
|
2015-08-29 23:20:07 +00:00
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-27 19:17:51 +00:00
|
|
|
func TestExecDriver_Start_Wait_AllocDir(t *testing.T) {
|
|
|
|
ctestutils.ExecCompatible(t)
|
|
|
|
|
|
|
|
exp := []byte{'w', 'i', 'n'}
|
|
|
|
file := "output.txt"
|
|
|
|
task := &structs.Task{
|
|
|
|
Name: "sleep",
|
|
|
|
Config: map[string]string{
|
|
|
|
"command": "/bin/bash",
|
|
|
|
"args": fmt.Sprintf("-c \"sleep 1; echo -n %s > $%s/%s\"", string(exp), environment.AllocDir, file),
|
|
|
|
},
|
|
|
|
Resources: basicResources,
|
|
|
|
}
|
|
|
|
|
|
|
|
driverCtx := testDriverContext(task.Name)
|
|
|
|
ctx := testDriverExecContext(task, driverCtx)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(driverCtx)
|
|
|
|
|
|
|
|
handle, err := d.Start(ctx, task)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Task should terminate quickly
|
|
|
|
select {
|
|
|
|
case err := <-handle.WaitCh():
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
case <-time.After(2 * time.Second):
|
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that data was written to the shared alloc directory.
|
2015-10-08 02:00:05 +00:00
|
|
|
outputFile := filepath.Join(ctx.AllocDir.SharedDir, file)
|
2015-09-27 19:17:51 +00:00
|
|
|
act, err := ioutil.ReadFile(outputFile)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Couldn't read expected output: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !reflect.DeepEqual(act, exp) {
|
|
|
|
t.Fatalf("Command outputted %v; want %v", act, exp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-29 23:20:07 +00:00
|
|
|
func TestExecDriver_Start_Kill_Wait(t *testing.T) {
|
2015-09-25 23:49:14 +00:00
|
|
|
ctestutils.ExecCompatible(t)
|
2015-08-29 23:20:07 +00:00
|
|
|
task := &structs.Task{
|
2015-09-25 23:49:14 +00:00
|
|
|
Name: "sleep",
|
2015-08-29 23:20:07 +00:00
|
|
|
Config: map[string]string{
|
|
|
|
"command": "/bin/sleep",
|
2015-09-25 23:49:14 +00:00
|
|
|
"args": "1",
|
2015-08-29 23:20:07 +00:00
|
|
|
},
|
2015-09-24 07:59:57 +00:00
|
|
|
Resources: basicResources,
|
2015-08-29 23:20:07 +00:00
|
|
|
}
|
2015-09-25 23:49:14 +00:00
|
|
|
|
|
|
|
driverCtx := testDriverContext(task.Name)
|
|
|
|
ctx := testDriverExecContext(task, driverCtx)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(driverCtx)
|
|
|
|
|
2015-08-29 23:20:07 +00:00
|
|
|
handle, err := d.Start(ctx, task)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
err := handle.Kill()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Task should terminate quickly
|
|
|
|
select {
|
|
|
|
case err := <-handle.WaitCh():
|
|
|
|
if err == nil {
|
2015-09-26 00:55:29 +00:00
|
|
|
t.Fatal("should err")
|
2015-08-29 23:20:07 +00:00
|
|
|
}
|
|
|
|
case <-time.After(2 * time.Second):
|
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|