2015-10-08 18:36:22 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"path/filepath"
|
|
|
|
"reflect"
|
2016-03-24 07:47:23 +00:00
|
|
|
"strings"
|
2015-10-08 18:36:22 +00:00
|
|
|
"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) {
|
2016-08-24 18:38:43 +00:00
|
|
|
task := &structs.Task{
|
|
|
|
Name: "foo",
|
|
|
|
Resources: structs.DefaultResources(),
|
|
|
|
}
|
2016-09-02 19:44:05 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2016-01-06 02:02:11 +00:00
|
|
|
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) {
|
|
|
|
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
|
|
|
},
|
2016-02-10 21:54:54 +00:00
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
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():
|
2016-01-21 23:24:24 +00:00
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * time.Second):
|
2015-10-08 18:36:22 +00:00
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
2016-02-04 20:55:13 +00:00
|
|
|
handle.Kill()
|
|
|
|
handle2.Kill()
|
2015-10-08 18:36:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestRawExecDriver_Start_Wait(t *testing.T) {
|
|
|
|
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
|
|
|
},
|
2016-02-10 21:54:54 +00:00
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
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
|
|
|
}
|
2016-01-21 23:24:24 +00:00
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * time.Second):
|
2015-10-08 18:36:22 +00:00
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestRawExecDriver_Start_Wait_AllocDir(t *testing.T) {
|
|
|
|
exp := []byte{'w', 'i', 'n'}
|
|
|
|
file := "output.txt"
|
2016-02-05 01:21:00 +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
|
|
|
},
|
2016-02-10 21:54:54 +00:00
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
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
|
|
|
}
|
2016-01-21 23:24:24 +00:00
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * time.Second):
|
2015-10-08 18:36:22 +00:00
|
|
|
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) {
|
|
|
|
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-02-09 03:31:57 +00:00
|
|
|
"args": []string{"sleep", "45s"},
|
2015-10-08 18:36:22 +00:00
|
|
|
},
|
2016-02-10 21:54:54 +00:00
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
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()
|
2016-01-21 21:28:48 +00:00
|
|
|
|
|
|
|
// Can't rely on the ordering between wait and kill on travis...
|
|
|
|
if !testutil.IsTravis() && err != nil {
|
2015-10-08 18:36:22 +00:00
|
|
|
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 23:24:24 +00:00
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * time.Second):
|
2015-10-08 18:36:22 +00:00
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|
2016-03-24 07:47:23 +00:00
|
|
|
|
|
|
|
func TestRawExecDriverUser(t *testing.T) {
|
|
|
|
task := &structs.Task{
|
|
|
|
Name: "sleep",
|
|
|
|
User: "alice",
|
|
|
|
Config: map[string]interface{}{
|
|
|
|
"command": testtask.Path(),
|
|
|
|
"args": []string{"sleep", "45s"},
|
|
|
|
},
|
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
|
|
|
Resources: basicResources,
|
|
|
|
}
|
|
|
|
testtask.SetTaskEnv(task)
|
|
|
|
|
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
|
|
|
d := NewRawExecDriver(driverCtx)
|
|
|
|
|
|
|
|
handle, err := d.Start(execCtx, task)
|
|
|
|
if err == nil {
|
|
|
|
handle.Kill()
|
|
|
|
t.Fatalf("Should've failed")
|
|
|
|
}
|
|
|
|
msg := "unknown user alice"
|
|
|
|
if !strings.Contains(err.Error(), msg) {
|
|
|
|
t.Fatalf("Expecting '%v' in '%v'", msg, err)
|
|
|
|
}
|
|
|
|
}
|