open-nomad/api/util_test.go

65 lines
1.3 KiB
Go
Raw Normal View History

2015-09-09 01:42:34 +00:00
package api
2017-02-06 19:48:28 +00:00
import (
"testing"
"github.com/hashicorp/nomad/helper"
)
2015-09-09 01:42:34 +00:00
func assertQueryMeta(t *testing.T, qm *QueryMeta) {
if qm.LastIndex == 0 {
t.Fatalf("bad index: %d", qm.LastIndex)
}
if !qm.KnownLeader {
t.Fatalf("expected known leader, got none")
}
}
func assertWriteMeta(t *testing.T, wm *WriteMeta) {
if wm.LastIndex == 0 {
t.Fatalf("bad index: %d", wm.LastIndex)
}
}
func testJob() *Job {
2015-09-16 18:42:08 +00:00
task := NewTask("task1", "exec").
2016-04-13 22:55:46 +00:00
SetConfig("command", "/bin/sleep").
2016-02-02 21:26:12 +00:00
Require(&Resources{
2017-02-06 19:48:28 +00:00
CPU: helper.IntToPtr(100),
MemoryMB: helper.IntToPtr(256),
IOPS: helper.IntToPtr(10),
2016-02-19 23:49:32 +00:00
}).
2016-02-10 21:36:47 +00:00
SetLogConfig(&LogConfig{
2017-02-06 19:48:28 +00:00
MaxFiles: helper.IntToPtr(1),
MaxFileSizeMB: helper.IntToPtr(2),
2016-02-19 23:49:32 +00:00
})
2015-09-16 18:42:08 +00:00
group := NewTaskGroup("group1", 1).
2016-08-26 03:10:25 +00:00
AddTask(task).
RequireDisk(&EphemeralDisk{
2017-02-06 19:48:28 +00:00
SizeMB: helper.IntToPtr(25),
2016-08-26 03:10:25 +00:00
})
2015-09-16 18:42:08 +00:00
job := NewBatchJob("job1", "redis", "region1", 1).
AddDatacenter("dc1").
AddTaskGroup(group)
return job
2015-09-09 01:42:34 +00:00
}
2016-01-13 18:19:53 +00:00
func testPeriodicJob() *Job {
job := testJob().AddPeriodicConfig(&PeriodicConfig{
2017-02-06 19:48:28 +00:00
Enabled: helper.BoolToPtr(true),
Spec: helper.StringToPtr("*/30 * * * *"),
SpecType: helper.StringToPtr("cron"),
2016-01-13 18:19:53 +00:00
})
return job
}
2017-09-07 23:56:15 +00:00
func testNamespace() *Namespace {
return &Namespace{
Name: "test-namespace",
Description: "Testing namespaces",
}
}