2015-10-08 18:36:22 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2015-11-24 20:11:26 +00:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
2015-10-08 18:36:22 +00:00
|
|
|
"path/filepath"
|
|
|
|
"reflect"
|
|
|
|
"testing"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/client/config"
|
2016-01-06 02:02:11 +00:00
|
|
|
"github.com/hashicorp/nomad/client/driver/env"
|
2015-11-24 20:11:26 +00:00
|
|
|
"github.com/hashicorp/nomad/helper/testtask"
|
2015-10-08 18:36:22 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2016-01-20 20:00:20 +00:00
|
|
|
"github.com/hashicorp/nomad/testutil"
|
2015-10-08 18:36:22 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestRawExecDriver_Fingerprint(t *testing.T) {
|
2015-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, _ := testDriverContexts(&structs.Task{Name: "foo"})
|
|
|
|
d := NewRawExecDriver(driverCtx)
|
2015-10-08 18:36:22 +00:00
|
|
|
node := &structs.Node{
|
|
|
|
Attributes: make(map[string]string),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Disable raw exec.
|
|
|
|
cfg := &config.Config{Options: map[string]string{rawExecConfigOption: "false"}}
|
|
|
|
|
|
|
|
apply, err := d.Fingerprint(cfg, node)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if apply {
|
|
|
|
t.Fatalf("should not apply")
|
|
|
|
}
|
|
|
|
if node.Attributes["driver.raw_exec"] != "" {
|
|
|
|
t.Fatalf("driver incorrectly enabled")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable raw exec.
|
|
|
|
cfg.Options[rawExecConfigOption] = "true"
|
|
|
|
apply, err = d.Fingerprint(cfg, node)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !apply {
|
|
|
|
t.Fatalf("should apply")
|
|
|
|
}
|
|
|
|
if node.Attributes["driver.raw_exec"] != "1" {
|
|
|
|
t.Fatalf("driver not enabled")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRawExecDriver_StartOpen_Wait(t *testing.T) {
|
2015-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
2015-10-08 18:36:22 +00:00
|
|
|
task := &structs.Task{
|
|
|
|
Name: "sleep",
|
2015-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-11-24 20:11:26 +00:00
|
|
|
"command": testtask.Path(),
|
|
|
|
"args": []string{"sleep", "1s"},
|
2015-10-08 18:36:22 +00:00
|
|
|
},
|
2015-11-06 18:42:49 +00:00
|
|
|
Resources: basicResources,
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
2015-11-24 20:11:26 +00:00
|
|
|
testtask.SetTaskEnv(task)
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2015-10-08 18:36:22 +00:00
|
|
|
d := NewRawExecDriver(driverCtx)
|
2016-01-06 02:02:11 +00:00
|
|
|
|
|
|
|
handle, err := d.Start(execCtx, task)
|
2015-10-08 18:36:22 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to open
|
2016-01-06 02:02:11 +00:00
|
|
|
handle2, err := d.Open(execCtx, handle.ID())
|
2015-10-08 18:36:22 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle2 == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Task should terminate quickly
|
|
|
|
select {
|
2015-10-10 03:56:28 +00:00
|
|
|
case <-handle2.WaitCh():
|
|
|
|
case <-time.After(2 * time.Second):
|
2015-10-08 18:36:22 +00:00
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-15 21:40:08 +00:00
|
|
|
func TestRawExecDriver_Start_Artifact_basic(t *testing.T) {
|
2015-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
2015-11-24 20:11:26 +00:00
|
|
|
path := testtask.Path()
|
|
|
|
ts := httptest.NewServer(http.FileServer(http.Dir(filepath.Dir(path))))
|
|
|
|
defer ts.Close()
|
2015-10-15 21:40:08 +00:00
|
|
|
|
2015-11-24 20:11:26 +00:00
|
|
|
file := filepath.Base(path)
|
2015-10-15 21:40:08 +00:00
|
|
|
task := &structs.Task{
|
|
|
|
Name: "sleep",
|
2015-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-11-24 20:11:26 +00:00
|
|
|
"artifact_source": fmt.Sprintf("%s/%s", ts.URL, file),
|
2015-10-15 21:40:08 +00:00
|
|
|
"command": filepath.Join("$NOMAD_TASK_DIR", file),
|
2015-11-24 20:11:26 +00:00
|
|
|
"args": []string{"sleep", "1s"},
|
2015-10-15 21:40:08 +00:00
|
|
|
},
|
2015-11-06 18:42:49 +00:00
|
|
|
Resources: basicResources,
|
2015-10-15 21:40:08 +00:00
|
|
|
}
|
2015-11-24 20:11:26 +00:00
|
|
|
testtask.SetTaskEnv(task)
|
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2015-10-15 21:40:08 +00:00
|
|
|
d := NewRawExecDriver(driverCtx)
|
2016-01-06 02:02:11 +00:00
|
|
|
|
|
|
|
handle, err := d.Start(execCtx, task)
|
2015-10-15 21:40:08 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to open
|
2016-01-06 02:02:11 +00:00
|
|
|
handle2, err := d.Open(execCtx, handle.ID())
|
2015-10-15 21:40:08 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle2 == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Task should terminate quickly
|
|
|
|
select {
|
|
|
|
case <-handle2.WaitCh():
|
|
|
|
case <-time.After(5 * time.Second):
|
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRawExecDriver_Start_Artifact_expanded(t *testing.T) {
|
2015-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
2015-11-24 20:11:26 +00:00
|
|
|
path := testtask.Path()
|
|
|
|
ts := httptest.NewServer(http.FileServer(http.Dir(filepath.Dir(path))))
|
|
|
|
defer ts.Close()
|
2015-10-15 21:40:08 +00:00
|
|
|
|
2015-11-24 20:11:26 +00:00
|
|
|
file := filepath.Base(path)
|
2015-10-15 21:40:08 +00:00
|
|
|
task := &structs.Task{
|
|
|
|
Name: "sleep",
|
2015-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-11-24 20:11:26 +00:00
|
|
|
"artifact_source": fmt.Sprintf("%s/%s", ts.URL, file),
|
|
|
|
"command": filepath.Join("$NOMAD_TASK_DIR", file),
|
|
|
|
"args": []string{"sleep", "1s"},
|
2015-10-15 21:40:08 +00:00
|
|
|
},
|
2015-11-06 18:42:49 +00:00
|
|
|
Resources: basicResources,
|
2015-10-15 21:40:08 +00:00
|
|
|
}
|
2015-11-24 20:11:26 +00:00
|
|
|
testtask.SetTaskEnv(task)
|
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2015-10-15 21:40:08 +00:00
|
|
|
d := NewRawExecDriver(driverCtx)
|
2016-01-06 02:02:11 +00:00
|
|
|
|
|
|
|
handle, err := d.Start(execCtx, task)
|
2015-10-15 21:40:08 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to open
|
2016-01-06 02:02:11 +00:00
|
|
|
handle2, err := d.Open(execCtx, handle.ID())
|
2015-10-15 21:40:08 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle2 == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Task should terminate quickly
|
|
|
|
select {
|
|
|
|
case <-handle2.WaitCh():
|
|
|
|
case <-time.After(5 * time.Second):
|
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-08 18:36:22 +00:00
|
|
|
func TestRawExecDriver_Start_Wait(t *testing.T) {
|
2015-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
2015-10-08 18:36:22 +00:00
|
|
|
task := &structs.Task{
|
|
|
|
Name: "sleep",
|
2015-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-11-24 20:11:26 +00:00
|
|
|
"command": testtask.Path(),
|
|
|
|
"args": []string{"sleep", "1s"},
|
2015-10-08 18:36:22 +00:00
|
|
|
},
|
2015-11-06 18:42:49 +00:00
|
|
|
Resources: basicResources,
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
2015-11-24 20:11:26 +00:00
|
|
|
testtask.SetTaskEnv(task)
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2015-10-08 18:36:22 +00:00
|
|
|
d := NewRawExecDriver(driverCtx)
|
2016-01-06 02:02:11 +00:00
|
|
|
|
|
|
|
handle, err := d.Start(execCtx, task)
|
2015-10-08 18:36:22 +00:00
|
|
|
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 {
|
2015-11-14 06:07:13 +00:00
|
|
|
case res := <-handle.WaitCh():
|
|
|
|
if !res.Successful() {
|
|
|
|
t.Fatalf("err: %v", res)
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
case <-time.After(2 * time.Second):
|
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRawExecDriver_Start_Wait_AllocDir(t *testing.T) {
|
2015-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
2015-10-08 18:36:22 +00:00
|
|
|
exp := []byte{'w', 'i', 'n'}
|
|
|
|
file := "output.txt"
|
2016-01-06 02:02:11 +00:00
|
|
|
outPath := fmt.Sprintf(`$%s/%s`, env.AllocDir, file)
|
2015-10-08 18:36:22 +00:00
|
|
|
task := &structs.Task{
|
|
|
|
Name: "sleep",
|
2015-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-11-24 20:11:26 +00:00
|
|
|
"command": testtask.Path(),
|
2015-11-18 23:16:42 +00:00
|
|
|
"args": []string{
|
2015-11-24 20:11:26 +00:00
|
|
|
"sleep", "1s",
|
|
|
|
"write", string(exp), outPath,
|
2015-11-18 23:16:42 +00:00
|
|
|
},
|
2015-10-08 18:36:22 +00:00
|
|
|
},
|
2015-11-06 18:42:49 +00:00
|
|
|
Resources: basicResources,
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
2015-11-24 20:11:26 +00:00
|
|
|
testtask.SetTaskEnv(task)
|
2015-10-08 18:36:22 +00:00
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2015-10-08 18:36:22 +00:00
|
|
|
d := NewRawExecDriver(driverCtx)
|
2016-01-06 02:02:11 +00:00
|
|
|
|
|
|
|
handle, err := d.Start(execCtx, task)
|
2015-10-08 18:36:22 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Task should terminate quickly
|
|
|
|
select {
|
2015-11-14 06:07:13 +00:00
|
|
|
case res := <-handle.WaitCh():
|
|
|
|
if !res.Successful() {
|
|
|
|
t.Fatalf("err: %v", res)
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
case <-time.After(2 * time.Second):
|
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that data was written to the shared alloc directory.
|
2016-01-06 02:02:11 +00:00
|
|
|
outputFile := filepath.Join(execCtx.AllocDir.SharedDir, file)
|
2015-10-08 18:36:22 +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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRawExecDriver_Start_Kill_Wait(t *testing.T) {
|
2015-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
2015-10-08 18:36:22 +00:00
|
|
|
task := &structs.Task{
|
|
|
|
Name: "sleep",
|
2015-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-11-24 20:11:26 +00:00
|
|
|
"command": testtask.Path(),
|
2016-01-21 20:55:35 +00:00
|
|
|
"args": []string{"sleep", "15s"},
|
2015-10-08 18:36:22 +00:00
|
|
|
},
|
2015-11-06 18:42:49 +00:00
|
|
|
Resources: basicResources,
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
2015-11-24 20:11:26 +00:00
|
|
|
testtask.SetTaskEnv(task)
|
2015-10-08 18:36:22 +00:00
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2015-10-08 18:36:22 +00:00
|
|
|
d := NewRawExecDriver(driverCtx)
|
2016-01-06 02:02:11 +00:00
|
|
|
|
|
|
|
handle, err := d.Start(execCtx, task)
|
2015-10-08 18:36:22 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
2016-01-21 20:55:35 +00:00
|
|
|
time.Sleep(1 * time.Second)
|
2015-10-08 18:36:22 +00:00
|
|
|
err := handle.Kill()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Task should terminate quickly
|
|
|
|
select {
|
2015-11-14 06:07:13 +00:00
|
|
|
case res := <-handle.WaitCh():
|
|
|
|
if res.Successful() {
|
2015-10-08 18:36:22 +00:00
|
|
|
t.Fatal("should err")
|
|
|
|
}
|
2016-01-21 20:55:35 +00:00
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*3) * time.Second):
|
2015-10-08 18:36:22 +00:00
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|