open-nomad/client/driver/raw_exec_test.go

324 lines
7.0 KiB
Go
Raw Normal View History

2015-10-08 18:36:22 +00:00
package driver
import (
"fmt"
"io/ioutil"
"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"
"github.com/hashicorp/nomad/helper/testtask"
2015-10-08 18:36:22 +00:00
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/testutil"
2015-10-08 18:36:22 +00:00
)
func TestRawExecDriver_Fingerprint(t *testing.T) {
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) {
t.Parallel()
2015-10-08 18:36:22 +00:00
task := &structs.Task{
Name: "sleep",
Config: map[string]interface{}{
"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
}
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")
}
}
func TestRawExecDriver_Start_Artifact_basic(t *testing.T) {
t.Parallel()
path := testtask.Path()
ts := httptest.NewServer(http.FileServer(http.Dir(filepath.Dir(path))))
defer ts.Close()
file := filepath.Base(path)
task := &structs.Task{
Name: "sleep",
Config: map[string]interface{}{
"artifact_source": fmt.Sprintf("%s/%s", ts.URL, file),
"command": filepath.Join("$NOMAD_TASK_DIR", file),
"args": []string{"sleep", "1s"},
},
2015-11-06 18:42:49 +00:00
Resources: basicResources,
}
testtask.SetTaskEnv(task)
2016-01-06 02:02:11 +00:00
driverCtx, execCtx := testDriverContexts(task)
defer execCtx.AllocDir.Destroy()
d := NewRawExecDriver(driverCtx)
2016-01-06 02:02:11 +00:00
handle, err := d.Start(execCtx, task)
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())
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) {
t.Parallel()
path := testtask.Path()
ts := httptest.NewServer(http.FileServer(http.Dir(filepath.Dir(path))))
defer ts.Close()
file := filepath.Base(path)
task := &structs.Task{
Name: "sleep",
Config: map[string]interface{}{
"artifact_source": fmt.Sprintf("%s/%s", ts.URL, file),
"command": filepath.Join("$NOMAD_TASK_DIR", file),
"args": []string{"sleep", "1s"},
},
2015-11-06 18:42:49 +00:00
Resources: basicResources,
}
testtask.SetTaskEnv(task)
2016-01-06 02:02:11 +00:00
driverCtx, execCtx := testDriverContexts(task)
defer execCtx.AllocDir.Destroy()
d := NewRawExecDriver(driverCtx)
2016-01-06 02:02:11 +00:00
handle, err := d.Start(execCtx, task)
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())
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) {
t.Parallel()
2015-10-08 18:36:22 +00:00
task := &structs.Task{
Name: "sleep",
Config: map[string]interface{}{
"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
}
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 {
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) {
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",
Config: map[string]interface{}{
"command": testtask.Path(),
"args": []string{
"sleep", "1s",
"write", string(exp), outPath,
},
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
}
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 {
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) {
t.Parallel()
2015-10-08 18:36:22 +00:00
task := &structs.Task{
Name: "sleep",
Config: map[string]interface{}{
"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
}
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 {
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")
}
}