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-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-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
2015-09-25 23:49:14 +00:00
|
|
|
ctestutils.ExecCompatible(t)
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, _ := testDriverContexts(&structs.Task{Name: "foo"})
|
|
|
|
d := NewExecDriver(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) {
|
2015-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
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-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
|
|
|
},
|
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-01-06 02:02:11 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2015-09-25 23:49:14 +00:00
|
|
|
d := NewExecDriver(driverCtx)
|
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
handle, err := d.Start(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-01-06 02:02:11 +00:00
|
|
|
handle2, err := d.Open(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) {
|
|
|
|
t.Parallel()
|
|
|
|
ctestutils.ExecCompatible(t)
|
|
|
|
task := &structs.Task{
|
|
|
|
Name: "sleep",
|
|
|
|
Config: map[string]interface{}{
|
|
|
|
"command": "/bin/sleep",
|
|
|
|
"args": []string{"1000000"},
|
|
|
|
},
|
|
|
|
Resources: basicResources,
|
|
|
|
}
|
|
|
|
|
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
|
|
|
d := NewExecDriver(driverCtx)
|
|
|
|
|
|
|
|
handle, err := d.Start(execCtx, task)
|
|
|
|
defer handle.Kill()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if handle == nil {
|
|
|
|
t.Fatalf("missing handle")
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
handle2, err := d.Open(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")
|
|
|
|
}
|
2016-02-05 21:05:49 +00:00
|
|
|
// Test if the userpid is still present
|
|
|
|
userProc, err := os.FindProcess(id.UserPid)
|
|
|
|
|
|
|
|
err = userProc.Signal(syscall.Signal(0))
|
|
|
|
if err != nil {
|
|
|
|
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-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
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-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
|
|
|
},
|
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-01-06 02:02:11 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2015-09-25 23:49:14 +00:00
|
|
|
d := NewExecDriver(driverCtx)
|
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
handle, err := d.Start(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-10-15 21:40:08 +00:00
|
|
|
func TestExecDriver_Start_Artifact_basic(t *testing.T) {
|
2015-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
2015-10-15 21:40:08 +00:00
|
|
|
ctestutils.ExecCompatible(t)
|
2015-10-29 00:22:04 +00:00
|
|
|
file := "hi_linux_amd64"
|
2015-11-05 15:23:45 +00:00
|
|
|
checksum := "sha256:6f99b4c5184726e601ecb062500aeb9537862434dfe1898dbe5c68d9f50c179c"
|
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-05 15:23:45 +00:00
|
|
|
"artifact_source": fmt.Sprintf("https://dl.dropboxusercontent.com/u/47675/jar_thing/%s?checksum=%s", file, checksum),
|
2016-02-04 23:18:22 +00:00
|
|
|
"command": file,
|
2015-10-15 21:40:08 +00:00
|
|
|
},
|
|
|
|
Resources: basicResources,
|
|
|
|
}
|
|
|
|
|
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 := NewExecDriver(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")
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-15 21:40:08 +00:00
|
|
|
}
|
2016-01-21 23:24:24 +00:00
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*5) * time.Second):
|
2015-10-15 21:40:08 +00:00
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestExecDriver_Start_Artifact_expanded(t *testing.T) {
|
2015-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
2015-10-15 21:40:08 +00:00
|
|
|
ctestutils.ExecCompatible(t)
|
2015-10-29 00:22:04 +00:00
|
|
|
file := "hi_linux_amd64"
|
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-10-15 21:40:08 +00:00
|
|
|
"artifact_source": fmt.Sprintf("https://dl.dropboxusercontent.com/u/47675/jar_thing/%s", file),
|
|
|
|
"command": "/bin/bash",
|
2016-02-04 23:18:22 +00:00
|
|
|
"args": []string{"-c", fmt.Sprintf("/bin/sleep 1 && %s", file)},
|
2015-10-15 21:40:08 +00:00
|
|
|
},
|
|
|
|
Resources: basicResources,
|
|
|
|
}
|
|
|
|
|
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 := NewExecDriver(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")
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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-15 21:40:08 +00:00
|
|
|
}
|
2016-01-21 23:24:24 +00:00
|
|
|
case <-time.After(time.Duration(testutil.TestMultiplier()*15) * time.Second):
|
2015-10-15 21:40:08 +00:00
|
|
|
t.Fatalf("timeout")
|
|
|
|
}
|
|
|
|
}
|
2015-09-27 19:17:51 +00:00
|
|
|
func TestExecDriver_Start_Wait_AllocDir(t *testing.T) {
|
2015-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
2015-09-27 19:17:51 +00:00
|
|
|
ctestutils.ExecCompatible(t)
|
|
|
|
|
|
|
|
exp := []byte{'w', 'i', 'n'}
|
|
|
|
file := "output.txt"
|
|
|
|
task := &structs.Task{
|
|
|
|
Name: "sleep",
|
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
|
|
|
},
|
|
|
|
Resources: basicResources,
|
|
|
|
}
|
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2015-09-27 19:17:51 +00:00
|
|
|
d := NewExecDriver(driverCtx)
|
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
handle, err := d.Start(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-01-06 02:02:11 +00:00
|
|
|
outputFile := filepath.Join(execCtx.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-11-24 20:12:31 +00:00
|
|
|
t.Parallel()
|
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-11-15 08:37:00 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-08-29 23:20:07 +00:00
|
|
|
"command": "/bin/sleep",
|
2016-02-04 20:40:48 +00:00
|
|
|
"args": []string{"10"},
|
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
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
driverCtx, execCtx := testDriverContexts(task)
|
|
|
|
defer execCtx.AllocDir.Destroy()
|
2015-09-25 23:49:14 +00:00
|
|
|
d := NewExecDriver(driverCtx)
|
|
|
|
|
2016-01-06 02:02:11 +00:00
|
|
|
handle, err := d.Start(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")
|
|
|
|
}
|
|
|
|
}
|