2015-09-08 23:24:26 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"reflect"
|
2015-09-17 20:15:45 +00:00
|
|
|
"sort"
|
2015-09-09 00:20:52 +00:00
|
|
|
"strings"
|
2015-09-08 23:24:26 +00:00
|
|
|
"testing"
|
2016-01-19 19:09:36 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/testutil"
|
2015-09-08 23:24:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestJobs_Register(t *testing.T) {
|
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
jobs := c.Jobs()
|
|
|
|
|
|
|
|
// Listing jobs before registering returns nothing
|
2015-09-09 20:18:50 +00:00
|
|
|
resp, qm, err := jobs.List(nil)
|
2015-09-08 23:24:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
2015-09-08 23:45:16 +00:00
|
|
|
if qm.LastIndex != 0 {
|
|
|
|
t.Fatalf("bad index: %d", qm.LastIndex)
|
|
|
|
}
|
2015-09-08 23:24:26 +00:00
|
|
|
if n := len(resp); n != 0 {
|
|
|
|
t.Fatalf("expected 0 jobs, got: %d", n)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a job and attempt to register it
|
2015-09-09 01:42:34 +00:00
|
|
|
job := testJob()
|
2015-09-08 23:45:16 +00:00
|
|
|
eval, wm, err := jobs.Register(job, nil)
|
2015-09-08 23:24:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if eval == "" {
|
|
|
|
t.Fatalf("missing eval id")
|
|
|
|
}
|
2015-09-09 01:42:34 +00:00
|
|
|
assertWriteMeta(t, wm)
|
2015-09-08 23:24:26 +00:00
|
|
|
|
|
|
|
// Query the jobs back out again
|
2015-09-09 20:18:50 +00:00
|
|
|
resp, qm, err = jobs.List(nil)
|
2015-09-08 23:24:26 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
2015-09-09 01:42:34 +00:00
|
|
|
assertQueryMeta(t, qm)
|
2015-09-08 23:24:26 +00:00
|
|
|
|
|
|
|
// Check that we got the expected response
|
2015-09-14 02:55:47 +00:00
|
|
|
if len(resp) != 1 || resp[0].ID != job.ID {
|
2015-09-08 23:24:26 +00:00
|
|
|
t.Fatalf("bad: %#v", resp[0])
|
|
|
|
}
|
|
|
|
}
|
2015-09-09 00:20:52 +00:00
|
|
|
|
2015-09-09 00:49:31 +00:00
|
|
|
func TestJobs_Info(t *testing.T) {
|
2015-09-09 00:20:52 +00:00
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
jobs := c.Jobs()
|
|
|
|
|
|
|
|
// Trying to retrieve a job by ID before it exists
|
|
|
|
// returns an error
|
2015-09-09 20:18:50 +00:00
|
|
|
_, _, err := jobs.Info("job1", nil)
|
2015-09-09 00:20:52 +00:00
|
|
|
if err == nil || !strings.Contains(err.Error(), "not found") {
|
|
|
|
t.Fatalf("expected not found error, got: %#v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register the job
|
2015-09-09 01:42:34 +00:00
|
|
|
job := testJob()
|
|
|
|
_, wm, err := jobs.Register(job, nil)
|
|
|
|
if err != nil {
|
2015-09-09 00:20:52 +00:00
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
2015-09-09 01:42:34 +00:00
|
|
|
assertWriteMeta(t, wm)
|
2015-09-09 00:20:52 +00:00
|
|
|
|
|
|
|
// Query the job again and ensure it exists
|
2015-09-09 20:18:50 +00:00
|
|
|
result, qm, err := jobs.Info("job1", nil)
|
2015-09-09 00:20:52 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
2015-09-09 01:42:34 +00:00
|
|
|
assertQueryMeta(t, qm)
|
|
|
|
|
|
|
|
// Check that the result is what we expect
|
2015-09-14 02:55:47 +00:00
|
|
|
if result == nil || result.ID != job.ID {
|
2015-09-09 00:20:52 +00:00
|
|
|
t.Fatalf("expect: %#v, got: %#v", job, result)
|
|
|
|
}
|
|
|
|
}
|
2015-09-09 00:49:31 +00:00
|
|
|
|
2015-12-24 10:46:59 +00:00
|
|
|
func TestJobs_PrefixList(t *testing.T) {
|
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
jobs := c.Jobs()
|
|
|
|
|
|
|
|
// Listing when nothing exists returns empty
|
|
|
|
results, qm, err := jobs.PrefixList("dummy")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if qm.LastIndex != 0 {
|
|
|
|
t.Fatalf("bad index: %d", qm.LastIndex)
|
|
|
|
}
|
|
|
|
if n := len(results); n != 0 {
|
|
|
|
t.Fatalf("expected 0 jobs, got: %d", n)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register the job
|
|
|
|
job := testJob()
|
|
|
|
_, wm, err := jobs.Register(job, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertWriteMeta(t, wm)
|
|
|
|
|
|
|
|
// Query the job again and ensure it exists
|
|
|
|
// Listing when nothing exists returns empty
|
|
|
|
results, qm, err = jobs.PrefixList(job.ID[:1])
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we have the right list
|
|
|
|
if len(results) != 1 || results[0].ID != job.ID {
|
|
|
|
t.Fatalf("bad: %#v", results)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestJobs_List(t *testing.T) {
|
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
jobs := c.Jobs()
|
|
|
|
|
|
|
|
// Listing when nothing exists returns empty
|
|
|
|
results, qm, err := jobs.List(nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if qm.LastIndex != 0 {
|
|
|
|
t.Fatalf("bad index: %d", qm.LastIndex)
|
|
|
|
}
|
|
|
|
if n := len(results); n != 0 {
|
|
|
|
t.Fatalf("expected 0 jobs, got: %d", n)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Register the job
|
|
|
|
job := testJob()
|
|
|
|
_, wm, err := jobs.Register(job, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertWriteMeta(t, wm)
|
|
|
|
|
|
|
|
// Query the job again and ensure it exists
|
|
|
|
// Listing when nothing exists returns empty
|
|
|
|
results, qm, err = jobs.List(nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if we have the right list
|
|
|
|
if len(results) != 1 || results[0].ID != job.ID {
|
|
|
|
t.Fatalf("bad: %#v", results)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-09 00:49:31 +00:00
|
|
|
func TestJobs_Allocations(t *testing.T) {
|
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
jobs := c.Jobs()
|
|
|
|
|
|
|
|
// Looking up by a non-existent job returns nothing
|
2015-09-09 20:18:50 +00:00
|
|
|
allocs, qm, err := jobs.Allocations("job1", nil)
|
2015-09-09 00:49:31 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if qm.LastIndex != 0 {
|
2015-09-09 01:42:34 +00:00
|
|
|
t.Fatalf("bad index: %d", qm.LastIndex)
|
2015-09-09 00:49:31 +00:00
|
|
|
}
|
|
|
|
if n := len(allocs); n != 0 {
|
|
|
|
t.Fatalf("expected 0 allocs, got: %d", n)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: do something here to create some allocations for
|
|
|
|
// an existing job, lookup again.
|
|
|
|
}
|
2015-09-09 01:42:34 +00:00
|
|
|
|
|
|
|
func TestJobs_Evaluations(t *testing.T) {
|
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
jobs := c.Jobs()
|
|
|
|
|
|
|
|
// Looking up by a non-existent job ID returns nothing
|
2015-09-09 20:18:50 +00:00
|
|
|
evals, qm, err := jobs.Evaluations("job1", nil)
|
2015-09-09 01:42:34 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if qm.LastIndex != 0 {
|
|
|
|
t.Fatalf("bad index: %d", qm.LastIndex)
|
|
|
|
}
|
|
|
|
if n := len(evals); n != 0 {
|
|
|
|
t.Fatalf("expected 0 evals, got: %d", n)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Insert a job. This also creates an evaluation so we should
|
|
|
|
// be able to query that out after.
|
|
|
|
job := testJob()
|
|
|
|
evalID, wm, err := jobs.Register(job, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertWriteMeta(t, wm)
|
|
|
|
|
|
|
|
// Look up the evaluations again.
|
2015-09-09 20:18:50 +00:00
|
|
|
evals, qm, err = jobs.Evaluations("job1", nil)
|
2015-09-09 01:42:34 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertQueryMeta(t, qm)
|
|
|
|
|
|
|
|
// Check that we got the evals back
|
|
|
|
if n := len(evals); n == 0 || evals[0].ID != evalID {
|
|
|
|
t.Fatalf("expected 1 eval (%s), got: %#v", evalID, evals)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-17 00:16:01 +00:00
|
|
|
func TestJobs_Deregister(t *testing.T) {
|
2015-09-09 01:42:34 +00:00
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
jobs := c.Jobs()
|
|
|
|
|
|
|
|
// Register a new job
|
|
|
|
job := testJob()
|
|
|
|
_, wm, err := jobs.Register(job, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertWriteMeta(t, wm)
|
|
|
|
|
2015-12-09 01:26:22 +00:00
|
|
|
// Attempting delete on non-existing job returns an error
|
|
|
|
if _, _, err = jobs.Deregister("nope", nil); err == nil {
|
|
|
|
t.Fatalf("expected error deregistering job")
|
2015-09-09 01:42:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Deleting an existing job works
|
2015-09-17 00:16:01 +00:00
|
|
|
evalID, wm3, err := jobs.Deregister("job1", nil)
|
2015-09-09 01:42:34 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertWriteMeta(t, wm3)
|
2015-09-17 00:12:48 +00:00
|
|
|
if evalID == "" {
|
|
|
|
t.Fatalf("missing eval ID")
|
|
|
|
}
|
2015-09-09 01:42:34 +00:00
|
|
|
|
|
|
|
// Check that the job is really gone
|
2015-09-09 20:18:50 +00:00
|
|
|
result, qm, err := jobs.List(nil)
|
2015-09-09 01:42:34 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertQueryMeta(t, qm)
|
|
|
|
if n := len(result); n != 0 {
|
|
|
|
t.Fatalf("expected 0 jobs, got: %d", n)
|
|
|
|
}
|
|
|
|
}
|
2015-09-10 00:29:43 +00:00
|
|
|
|
2015-09-10 01:39:24 +00:00
|
|
|
func TestJobs_ForceEvaluate(t *testing.T) {
|
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
jobs := c.Jobs()
|
|
|
|
|
|
|
|
// Force-eval on a non-existent job fails
|
|
|
|
_, _, err := jobs.ForceEvaluate("job1", nil)
|
|
|
|
if err == nil || !strings.Contains(err.Error(), "not found") {
|
|
|
|
t.Fatalf("expected not found error, got: %#v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new job
|
|
|
|
_, wm, err := jobs.Register(testJob(), nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertWriteMeta(t, wm)
|
|
|
|
|
|
|
|
// Try force-eval again
|
|
|
|
evalID, wm, err := jobs.ForceEvaluate("job1", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertWriteMeta(t, wm)
|
|
|
|
|
|
|
|
// Retrieve the evals and see if we get a matching one
|
|
|
|
evals, qm, err := jobs.Evaluations("job1", nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertQueryMeta(t, qm)
|
|
|
|
for _, eval := range evals {
|
|
|
|
if eval.ID == evalID {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
t.Fatalf("evaluation %q missing", evalID)
|
|
|
|
}
|
|
|
|
|
2016-01-19 19:09:36 +00:00
|
|
|
func TestJobs_PeriodicForce(t *testing.T) {
|
|
|
|
c, s := makeClient(t, nil, nil)
|
|
|
|
defer s.Stop()
|
|
|
|
jobs := c.Jobs()
|
|
|
|
|
|
|
|
// Force-eval on a non-existent job fails
|
|
|
|
_, _, err := jobs.PeriodicForce("job1", nil)
|
|
|
|
if err == nil || !strings.Contains(err.Error(), "not found") {
|
|
|
|
t.Fatalf("expected not found error, got: %#v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a new job
|
|
|
|
job := testPeriodicJob()
|
|
|
|
_, _, err = jobs.Register(job, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
testutil.WaitForResult(func() (bool, error) {
|
|
|
|
out, _, err := jobs.Info(job.ID, nil)
|
|
|
|
if err != nil || out == nil || out.ID != job.ID {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return true, nil
|
|
|
|
}, func(err error) {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
})
|
|
|
|
|
|
|
|
// Try force again
|
|
|
|
evalID, wm, err := jobs.PeriodicForce(job.ID, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertWriteMeta(t, wm)
|
|
|
|
|
|
|
|
if evalID == "" {
|
|
|
|
t.Fatalf("empty evalID")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Retrieve the eval
|
|
|
|
evals := c.Evaluations()
|
|
|
|
eval, qm, err := evals.Info(evalID, nil)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
assertQueryMeta(t, qm)
|
|
|
|
if eval.ID == evalID {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
t.Fatalf("evaluation %q missing", evalID)
|
|
|
|
}
|
|
|
|
|
2015-09-10 00:29:43 +00:00
|
|
|
func TestJobs_NewBatchJob(t *testing.T) {
|
2015-09-16 18:42:08 +00:00
|
|
|
job := NewBatchJob("job1", "myjob", "region1", 5)
|
2015-09-10 00:29:43 +00:00
|
|
|
expect := &Job{
|
2015-09-16 18:42:08 +00:00
|
|
|
Region: "region1",
|
2015-09-10 00:29:43 +00:00
|
|
|
ID: "job1",
|
|
|
|
Name: "myjob",
|
|
|
|
Type: JobTypeBatch,
|
|
|
|
Priority: 5,
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(job, expect) {
|
|
|
|
t.Fatalf("expect: %#v, got: %#v", expect, job)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestJobs_NewServiceJob(t *testing.T) {
|
2015-09-16 18:42:08 +00:00
|
|
|
job := NewServiceJob("job1", "myjob", "region1", 5)
|
2015-09-10 00:29:43 +00:00
|
|
|
expect := &Job{
|
2015-09-16 18:42:08 +00:00
|
|
|
Region: "region1",
|
2015-09-10 00:29:43 +00:00
|
|
|
ID: "job1",
|
|
|
|
Name: "myjob",
|
|
|
|
Type: JobTypeService,
|
|
|
|
Priority: 5,
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(job, expect) {
|
|
|
|
t.Fatalf("expect: %#v, got: %#v", expect, job)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestJobs_SetMeta(t *testing.T) {
|
|
|
|
job := &Job{Meta: nil}
|
|
|
|
|
|
|
|
// Initializes a nil map
|
|
|
|
out := job.SetMeta("foo", "bar")
|
|
|
|
if job.Meta == nil {
|
|
|
|
t.Fatalf("should initialize metadata")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the job was returned
|
|
|
|
if job != out {
|
|
|
|
t.Fatalf("expect: %#v, got: %#v", job, out)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setting another pair is additive
|
|
|
|
job.SetMeta("baz", "zip")
|
|
|
|
expect := map[string]string{"foo": "bar", "baz": "zip"}
|
|
|
|
if !reflect.DeepEqual(job.Meta, expect) {
|
|
|
|
t.Fatalf("expect: %#v, got: %#v", expect, job.Meta)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestJobs_Constrain(t *testing.T) {
|
|
|
|
job := &Job{Constraints: nil}
|
|
|
|
|
|
|
|
// Create and add a constraint
|
2015-10-27 21:31:14 +00:00
|
|
|
out := job.Constrain(NewConstraint("kernel.name", "=", "darwin"))
|
2015-09-10 00:29:43 +00:00
|
|
|
if n := len(job.Constraints); n != 1 {
|
|
|
|
t.Fatalf("expected 1 constraint, got: %d", n)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check that the job was returned
|
|
|
|
if job != out {
|
|
|
|
t.Fatalf("expect: %#v, got: %#v", job, out)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adding another constraint preserves the original
|
2015-10-27 21:31:14 +00:00
|
|
|
job.Constrain(NewConstraint("memory.totalbytes", ">=", "128000000"))
|
2015-09-10 00:29:43 +00:00
|
|
|
expect := []*Constraint{
|
|
|
|
&Constraint{
|
|
|
|
LTarget: "kernel.name",
|
|
|
|
RTarget: "darwin",
|
|
|
|
Operand: "=",
|
|
|
|
},
|
|
|
|
&Constraint{
|
|
|
|
LTarget: "memory.totalbytes",
|
|
|
|
RTarget: "128000000",
|
|
|
|
Operand: ">=",
|
|
|
|
},
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(job.Constraints, expect) {
|
|
|
|
t.Fatalf("expect: %#v, got: %#v", expect, job.Constraints)
|
|
|
|
}
|
|
|
|
}
|
2015-09-17 20:15:45 +00:00
|
|
|
|
|
|
|
func TestJobs_Sort(t *testing.T) {
|
|
|
|
jobs := []*JobListStub{
|
|
|
|
&JobListStub{ID: "job2"},
|
|
|
|
&JobListStub{ID: "job0"},
|
|
|
|
&JobListStub{ID: "job1"},
|
|
|
|
}
|
|
|
|
sort.Sort(JobIDSort(jobs))
|
|
|
|
|
|
|
|
expect := []*JobListStub{
|
|
|
|
&JobListStub{ID: "job0"},
|
|
|
|
&JobListStub{ID: "job1"},
|
|
|
|
&JobListStub{ID: "job2"},
|
|
|
|
}
|
|
|
|
if !reflect.DeepEqual(jobs, expect) {
|
|
|
|
t.Fatalf("\n\n%#v\n\n%#v", jobs, expect)
|
|
|
|
}
|
|
|
|
}
|