2015-08-20 23:50:28 +00:00
|
|
|
package driver
|
|
|
|
|
|
|
|
import (
|
2016-02-05 19:37:13 +00:00
|
|
|
"encoding/json"
|
2015-09-27 19:17:51 +00:00
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
2016-02-05 19:37:13 +00:00
|
|
|
"os"
|
2015-09-27 19:17:51 +00:00
|
|
|
"path/filepath"
|
|
|
|
"reflect"
|
2016-03-24 07:47:23 +00:00
|
|
|
"strings"
|
2016-02-05 21:05:49 +00:00
|
|
|
"syscall"
|
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"
|
2016-01-06 02:02:11 +00:00
|
|
|
"github.com/hashicorp/nomad/client/driver/env"
|
2015-08-20 23:53:43 +00:00
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2016-01-20 20:00:20 +00:00
|
|
|
"github.com/hashicorp/nomad/testutil"
|
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)
|
2016-08-23 21:31:18 +00:00
|
|
|
task := &structs.Task{
|
|
|
|
Name: "foo",
|
2016-12-03 01:04:07 +00:00
|
|
|
Driver: "exec",
|
2016-08-23 21:31:18 +00:00
|
|
|
Resources: structs.DefaultResources(),
|
|
|
|
}
|
2016-12-03 01:04:07 +00:00
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(ctx.DriverCtx)
|
2015-08-20 23:53:43 +00:00
|
|
|
node := &structs.Node{
|
2016-01-27 06:23:02 +00:00
|
|
|
Attributes: map[string]string{
|
2016-01-29 13:34:29 +00:00
|
|
|
"unique.cgroup.mountpoint": "/sys/fs/cgroup",
|
2016-01-27 06:23:02 +00:00
|
|
|
},
|
2015-08-20 23:53:43 +00:00
|
|
|
}
|
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
|
|
|
func TestExecDriver_StartOpen_Wait(t *testing.T) {
|
|
|
|
ctestutils.ExecCompatible(t)
|
2015-08-29 23:20:07 +00:00
|
|
|
task := &structs.Task{
|
2016-12-03 01:04:07 +00:00
|
|
|
Name: "sleep",
|
|
|
|
Driver: "exec",
|
2015-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-08-29 23:20:07 +00:00
|
|
|
"command": "/bin/sleep",
|
2015-11-18 23:16:42 +00:00
|
|
|
"args": []string{"5"},
|
2015-08-29 23:20:07 +00:00
|
|
|
},
|
2016-02-10 21:54:54 +00:00
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
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
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(ctx.DriverCtx)
|
2015-09-25 23:49:14 +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)
|
|
|
|
}
|
2016-12-03 01:04:07 +00:00
|
|
|
handle, err := d.Start(ctx.ExecCtx, task)
|
2015-08-29 23:20:07 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to open
|
2016-12-03 01:04:07 +00:00
|
|
|
handle2, err := d.Open(ctx.ExecCtx, handle.ID())
|
2015-08-29 23:20:07 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle2 == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
2016-02-04 18:09:52 +00:00
|
|
|
|
|
|
|
handle.Kill()
|
|
|
|
handle2.Kill()
|
2015-08-29 23:20:07 +00:00
|
|
|
}
|
|
|
|
|
2016-02-05 19:37:13 +00:00
|
|
|
func TestExecDriver_KillUserPid_OnPluginReconnectFailure(t *testing.T) {
|
|
|
|
ctestutils.ExecCompatible(t)
|
|
|
|
task := &structs.Task{
|
2016-12-03 01:04:07 +00:00
|
|
|
Name: "sleep",
|
|
|
|
Driver: "exec",
|
2016-02-05 19:37:13 +00:00
|
|
|
Config: map[string]interface{}{
|
|
|
|
"command": "/bin/sleep",
|
|
|
|
"args": []string{"1000000"},
|
|
|
|
},
|
2016-02-10 21:54:54 +00:00
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
2016-02-05 19:37:13 +00:00
|
|
|
Resources: basicResources,
|
|
|
|
}
|
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(ctx.DriverCtx)
|
2016-02-05 19:37:13 +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)
|
|
|
|
}
|
2016-12-03 01:04:07 +00:00
|
|
|
handle, err := d.Start(ctx.ExecCtx, task)
|
2016-02-05 19:37:13 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
2016-02-25 04:06:43 +00:00
|
|
|
defer handle.Kill()
|
2016-02-05 19:37:13 +00:00
|
|
|
|
|
|
|
id := &execId{}
|
|
|
|
if err := json.Unmarshal([]byte(handle.ID()), id); err != nil {
|
|
|
|
t.Fatalf("Failed to parse handle '%s': %v", handle.ID(), err)
|
|
|
|
}
|
|
|
|
pluginPid := id.PluginConfig.Pid
|
|
|
|
proc, err := os.FindProcess(pluginPid)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("can't find plugin pid: %v", pluginPid)
|
|
|
|
}
|
|
|
|
if err := proc.Kill(); err != nil {
|
|
|
|
t.Fatalf("can't kill plugin pid: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Attempt to open
|
2016-12-03 01:04:07 +00:00
|
|
|
handle2, err := d.Open(ctx.ExecCtx, handle.ID())
|
2016-02-05 21:05:49 +00:00
|
|
|
if err == nil {
|
|
|
|
t.Fatalf("expected error")
|
2016-02-05 19:37:13 +00:00
|
|
|
}
|
|
|
|
if handle2 != nil {
|
2016-02-06 02:07:06 +00:00
|
|
|
handle2.Kill()
|
2016-02-05 19:37:13 +00:00
|
|
|
t.Fatalf("expected handle2 to be nil")
|
|
|
|
}
|
2017-01-17 20:51:19 +00:00
|
|
|
|
2016-02-05 21:05:49 +00:00
|
|
|
// Test if the userpid is still present
|
2017-01-17 20:51:19 +00:00
|
|
|
userProc, _ := os.FindProcess(id.UserPid)
|
2016-02-05 21:05:49 +00:00
|
|
|
|
2017-01-17 20:51:19 +00:00
|
|
|
for retry := 3; retry > 0; retry-- {
|
|
|
|
if err = userProc.Signal(syscall.Signal(0)); err != nil {
|
|
|
|
// Process is gone as expected; exit
|
|
|
|
return
|
|
|
|
}
|
2016-02-09 03:00:26 +00:00
|
|
|
|
2017-01-17 20:51:19 +00:00
|
|
|
// Killing processes is async; wait and check again
|
|
|
|
time.Sleep(time.Second)
|
|
|
|
}
|
|
|
|
if err = userProc.Signal(syscall.Signal(0)); err == nil {
|
2016-02-05 21:05:49 +00:00
|
|
|
t.Fatalf("expected user process to die")
|
|
|
|
}
|
2016-02-05 19:37:13 +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{
|
2016-12-03 01:04:07 +00:00
|
|
|
Name: "sleep",
|
|
|
|
Driver: "exec",
|
2015-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-08-29 23:20:07 +00:00
|
|
|
"command": "/bin/sleep",
|
2015-11-18 23:16:42 +00:00
|
|
|
"args": []string{"2"},
|
2015-08-29 23:20:07 +00:00
|
|
|
},
|
2016-02-10 21:54:54 +00:00
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
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
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(ctx.DriverCtx)
|
2015-09-25 23:49:14 +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)
|
|
|
|
}
|
2016-12-03 01:04:07 +00:00
|
|
|
handle, err := d.Start(ctx.ExecCtx, task)
|
2015-08-29 23:20:07 +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-08-29 23:20:07 +00:00
|
|
|
}
|
2016-01-21 23:24:24 +00:00
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * 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{
|
2016-12-03 01:04:07 +00:00
|
|
|
Name: "sleep",
|
|
|
|
Driver: "exec",
|
2015-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-09-27 19:17:51 +00:00
|
|
|
"command": "/bin/bash",
|
2015-11-18 23:16:42 +00:00
|
|
|
"args": []string{
|
|
|
|
"-c",
|
2016-02-05 01:21:00 +00:00
|
|
|
fmt.Sprintf(`sleep 1; echo -n %s > ${%s}/%s`, string(exp), env.AllocDir, file),
|
2015-11-18 23:16:42 +00:00
|
|
|
},
|
2015-09-27 19:17:51 +00:00
|
|
|
},
|
2016-02-10 21:54:54 +00:00
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
2015-09-27 19:17:51 +00:00
|
|
|
Resources: basicResources,
|
|
|
|
}
|
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(ctx.DriverCtx)
|
2015-09-27 19:17:51 +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)
|
|
|
|
}
|
2016-12-03 01:04:07 +00:00
|
|
|
handle, err := d.Start(ctx.ExecCtx, task)
|
2015-09-27 19:17:51 +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-09-27 19:17:51 +00:00
|
|
|
}
|
2016-01-21 23:24:24 +00:00
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * time.Second):
|
2015-09-27 19:17:51 +00:00
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that data was written to the shared alloc directory.
|
2016-12-03 01:04:07 +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{
|
2016-12-03 01:04:07 +00:00
|
|
|
Name: "sleep",
|
|
|
|
Driver: "exec",
|
2015-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-08-29 23:20:07 +00:00
|
|
|
"command": "/bin/sleep",
|
2016-02-09 17:43:40 +00:00
|
|
|
"args": []string{"100"},
|
2015-08-29 23:20:07 +00:00
|
|
|
},
|
2016-02-10 21:54:54 +00:00
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
2016-02-09 17:43:40 +00:00
|
|
|
Resources: basicResources,
|
|
|
|
KillTimeout: 10 * time.Second,
|
2015-08-29 23:20:07 +00:00
|
|
|
}
|
2015-09-25 23:49:14 +00:00
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(ctx.DriverCtx)
|
2015-09-25 23:49:14 +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)
|
|
|
|
}
|
2016-12-03 01:04:07 +00:00
|
|
|
handle, err := d.Start(ctx.ExecCtx, task)
|
2015-08-29 23:20:07 +00:00
|
|
|
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 {
|
2015-11-14 06:07:13 +00:00
|
|
|
case res := <-handle.WaitCh():
|
|
|
|
if res.Successful() {
|
2015-09-26 00:55:29 +00:00
|
|
|
t.Fatal("should err")
|
2015-08-29 23:20:07 +00:00
|
|
|
}
|
2016-01-21 23:24:24 +00:00
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*10) * time.Second):
|
2015-08-29 23:20:07 +00:00
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|
2016-03-24 07:47:23 +00:00
|
|
|
|
2016-10-10 18:46:27 +00:00
|
|
|
func TestExecDriver_Signal(t *testing.T) {
|
|
|
|
ctestutils.ExecCompatible(t)
|
|
|
|
task := &structs.Task{
|
2016-12-03 01:04:07 +00:00
|
|
|
Name: "signal",
|
|
|
|
Driver: "exec",
|
2016-10-10 18:46:27 +00:00
|
|
|
Config: map[string]interface{}{
|
|
|
|
"command": "/bin/bash",
|
|
|
|
"args": []string{"test.sh"},
|
|
|
|
},
|
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
|
|
|
Resources: basicResources,
|
|
|
|
KillTimeout: 10 * time.Second,
|
|
|
|
}
|
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(ctx.DriverCtx)
|
2016-10-10 18:46:27 +00:00
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
testFile := filepath.Join(ctx.ExecCtx.TaskDir.Dir, "test.sh")
|
2016-10-10 18:46:27 +00:00
|
|
|
testData := []byte(`
|
|
|
|
at_term() {
|
|
|
|
echo 'Terminated.'
|
|
|
|
exit 3
|
|
|
|
}
|
|
|
|
trap at_term USR1
|
|
|
|
while true; do
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
`)
|
|
|
|
if err := ioutil.WriteFile(testFile, testData, 0777); err != nil {
|
|
|
|
fmt.Errorf("Failed to write data")
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
}
|
2016-12-03 01:04:07 +00:00
|
|
|
handle, err := d.Start(ctx.ExecCtx, task)
|
2016-10-10 18:46:27 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
err := handle.Signal(syscall.SIGUSR1)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// Task should terminate quickly
|
|
|
|
select {
|
|
|
|
case res := <-handle.WaitCh():
|
|
|
|
if res.Successful() {
|
|
|
|
t.Fatal("should err")
|
|
|
|
}
|
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*6) * time.Second):
|
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the log file to see it exited because of the signal
|
2016-12-03 01:04:07 +00:00
|
|
|
outputFile := filepath.Join(ctx.ExecCtx.TaskDir.LogDir, "signal.stdout.0")
|
2016-10-10 18:46:27 +00:00
|
|
|
act, err := ioutil.ReadFile(outputFile)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("Couldn't read expected output: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
exp := "Terminated."
|
|
|
|
if strings.TrimSpace(string(act)) != exp {
|
|
|
|
t.Logf("Read from %v", outputFile)
|
|
|
|
t.Fatalf("Command outputted %v; want %v", act, exp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-24 07:47:23 +00:00
|
|
|
func TestExecDriverUser(t *testing.T) {
|
|
|
|
ctestutils.ExecCompatible(t)
|
|
|
|
task := &structs.Task{
|
2016-12-03 01:04:07 +00:00
|
|
|
Name: "sleep",
|
|
|
|
Driver: "exec",
|
|
|
|
User: "alice",
|
2016-03-24 07:47:23 +00:00
|
|
|
Config: map[string]interface{}{
|
|
|
|
"command": "/bin/sleep",
|
|
|
|
"args": []string{"100"},
|
|
|
|
},
|
|
|
|
LogConfig: &structs.LogConfig{
|
|
|
|
MaxFiles: 10,
|
|
|
|
MaxFileSizeMB: 10,
|
|
|
|
},
|
|
|
|
Resources: basicResources,
|
|
|
|
KillTimeout: 10 * time.Second,
|
|
|
|
}
|
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
ctx := testDriverContexts(t, task)
|
|
|
|
defer ctx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(ctx.DriverCtx)
|
2016-03-24 07:47:23 +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)
|
|
|
|
}
|
2016-12-03 01:04:07 +00:00
|
|
|
handle, err := d.Start(ctx.ExecCtx, task)
|
2016-03-24 07:47:23 +00:00
|
|
|
if err == nil {
|
|
|
|
handle.Kill()
|
|
|
|
t.Fatalf("Should've failed")
|
|
|
|
}
|
|
|
|
msg := "user alice"
|
|
|
|
if !strings.Contains(err.Error(), msg) {
|
|
|
|
t.Fatalf("Expecting '%v' in '%v'", msg, err)
|
|
|
|
}
|
|
|
|
}
|