open-nomad/client/task_runner_test.go

200 lines
4.7 KiB
Go
Raw Normal View History

2015-08-30 03:07:24 +00:00
package client
import (
"log"
"os"
2015-09-25 23:49:14 +00:00
"path/filepath"
2015-08-30 03:07:24 +00:00
"strings"
"testing"
"time"
2015-09-25 23:49:14 +00:00
"github.com/hashicorp/nomad/client/allocdir"
2015-08-30 03:07:24 +00:00
"github.com/hashicorp/nomad/client/driver"
"github.com/hashicorp/nomad/nomad/mock"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/testutil"
2015-09-23 00:10:03 +00:00
2015-09-23 01:48:42 +00:00
ctestutil "github.com/hashicorp/nomad/client/testutil"
2015-08-30 03:07:24 +00:00
)
func testLogger() *log.Logger {
return log.New(os.Stderr, "", log.LstdFlags)
}
type MockTaskStateUpdater struct {
Count int
Name []string
Status []string
Description []string
}
func (m *MockTaskStateUpdater) Update(name, status, desc string) {
m.Count += 1
m.Name = append(m.Name, name)
m.Status = append(m.Status, status)
m.Description = append(m.Description, desc)
}
func testTaskRunner() (*MockTaskStateUpdater, *TaskRunner) {
logger := testLogger()
conf := DefaultConfig()
2015-09-24 21:29:53 +00:00
conf.StateDir = os.TempDir()
conf.AllocDir = os.TempDir()
2015-08-30 03:07:24 +00:00
upd := &MockTaskStateUpdater{}
alloc := mock.Alloc()
task := alloc.Job.TaskGroups[0].Tasks[0]
// Initialize the port listing. This should be done by the offer process but
// we have a mock so that doesn't happen.
task.Resources.Networks[0].ReservedPorts = []int{80}
2015-09-25 23:49:14 +00:00
allocDir := allocdir.NewAllocDir(filepath.Join(conf.AllocDir, alloc.ID))
allocDir.Build([]*structs.Task{task})
ctx := driver.NewExecContext(allocDir)
rp := structs.NewRestartPolicy(structs.JobTypeService)
restartTracker := newRestartTracker(structs.JobTypeService, rp)
tr := NewTaskRunner(logger, conf, upd.Update, ctx, alloc.ID, task, restartTracker)
2015-08-30 03:07:24 +00:00
return upd, tr
}
func TestTaskRunner_SimpleRun(t *testing.T) {
2015-09-23 01:48:42 +00:00
ctestutil.ExecCompatible(t)
upd, tr := testTaskRunner()
2015-08-30 03:07:24 +00:00
go tr.Run()
defer tr.Destroy()
2015-09-24 23:59:09 +00:00
defer tr.ctx.AllocDir.Destroy()
2015-08-30 03:07:24 +00:00
select {
case <-tr.WaitCh():
case <-time.After(2 * time.Second):
t.Fatalf("timeout")
}
if upd.Count != 2 {
t.Fatalf("should have 2 updates: %#v", upd)
}
if upd.Name[0] != tr.task.Name {
t.Fatalf("bad: %#v", upd.Name)
}
if upd.Status[0] != structs.AllocClientStatusRunning {
t.Fatalf("bad: %#v", upd.Status)
}
if upd.Description[0] != "task started" {
t.Fatalf("bad: %#v", upd.Description)
}
if upd.Name[1] != tr.task.Name {
t.Fatalf("bad: %#v", upd.Name)
}
if upd.Status[1] != structs.AllocClientStatusDead {
t.Fatalf("bad: %#v", upd.Status)
}
if upd.Description[1] != "task completed" {
t.Fatalf("bad: %#v", upd.Description)
}
}
func TestTaskRunner_Destroy(t *testing.T) {
2015-09-23 01:48:42 +00:00
ctestutil.ExecCompatible(t)
2015-08-30 03:07:24 +00:00
upd, tr := testTaskRunner()
2015-09-24 23:59:09 +00:00
defer tr.ctx.AllocDir.Destroy()
2015-08-30 03:07:24 +00:00
// Change command to ensure we run for a bit
tr.task.Config["command"] = "/bin/sleep"
tr.task.Config["args"] = "10"
go tr.Run()
// Begin the tear down
go func() {
time.Sleep(100 * time.Millisecond)
tr.Destroy()
}()
select {
case <-tr.WaitCh():
case <-time.After(2 * time.Second):
t.Fatalf("timeout")
}
if upd.Count != 2 {
t.Fatalf("should have 2 updates: %#v", upd)
}
if upd.Status[0] != structs.AllocClientStatusRunning {
t.Fatalf("bad: %#v", upd.Status)
}
if upd.Status[1] != structs.AllocClientStatusDead {
t.Fatalf("bad: %#v", upd.Status)
}
if !strings.Contains(upd.Description[1], "task failed") {
t.Fatalf("bad: %#v", upd.Description)
}
}
func TestTaskRunner_Update(t *testing.T) {
2015-09-23 01:48:42 +00:00
ctestutil.ExecCompatible(t)
2015-08-30 03:07:24 +00:00
_, tr := testTaskRunner()
// Change command to ensure we run for a bit
tr.task.Config["command"] = "/bin/sleep"
tr.task.Config["args"] = "10"
go tr.Run()
defer tr.Destroy()
2015-09-24 23:59:09 +00:00
defer tr.ctx.AllocDir.Destroy()
2015-08-30 03:07:24 +00:00
// Update the task definition
newTask := new(structs.Task)
*newTask = *tr.task
newTask.Driver = "foobar"
tr.Update(newTask)
// Wait for update to take place
testutil.WaitForResult(func() (bool, error) {
return tr.task == newTask, nil
}, func(err error) {
t.Fatalf("err: %v", err)
})
}
/*
TODO: This test is disabled til a follow-up api changes the restore state interface.
The driver/executor interface will be changed from Open to Cleanup, in which
clean-up tears down previous allocs.
2015-08-30 03:07:24 +00:00
func TestTaskRunner_SaveRestoreState(t *testing.T) {
upd, tr := testTaskRunner()
// Change command to ensure we run for a bit
tr.task.Config["command"] = "/bin/sleep"
tr.task.Config["args"] = "10"
go tr.Run()
defer tr.Destroy()
// Snapshot state
time.Sleep(200 * time.Millisecond)
err := tr.SaveState()
if err != nil {
t.Fatalf("err: %v", err)
}
// Create a new task runner
tr2 := NewTaskRunner(tr.logger, tr.config, upd.Update,
tr.ctx, tr.allocID, &structs.Task{Name: tr.task.Name})
err = tr2.RestoreState()
if err != nil {
t.Fatalf("err: %v", err)
}
go tr2.Run()
defer tr2.Destroy()
// Destroy and wait
tr2.Destroy()
select {
case <-tr.WaitCh():
case <-time.After(2 * time.Second):
t.Fatalf("timeout")
}
}
*/