open-nomad/command/util_test.go

58 lines
1.1 KiB
Go
Raw Normal View History

2015-09-11 18:10:20 +00:00
package command
import (
"testing"
2015-09-12 21:50:05 +00:00
"github.com/hashicorp/nomad/api"
"github.com/hashicorp/nomad/testutil"
2015-09-11 18:10:20 +00:00
)
2015-09-14 21:08:50 +00:00
// seen is used to track which tests we have already
// marked as parallel. Marking twice causes panic.
var seen map[*testing.T]struct{}
func init() {
seen = make(map[*testing.T]struct{})
}
func testServer(
t *testing.T,
cb testutil.ServerConfigCallback) (*testutil.TestServer, *api.Client, string) {
2015-09-13 18:39:49 +00:00
// Always run these tests in parallel.
if _, ok := seen[t]; !ok {
seen[t] = struct{}{}
t.Parallel()
}
2015-09-13 18:39:49 +00:00
// Make a new test server
srv := testutil.NewTestServer(t, cb)
2015-09-12 21:50:05 +00:00
// Make a client
clientConf := api.DefaultConfig()
clientConf.Address = "http://" + srv.HTTPAddr
2015-09-12 21:50:05 +00:00
client, err := api.NewClient(clientConf)
if err != nil {
t.Fatalf("err: %s", err)
}
return srv, client, clientConf.Address
2015-09-11 18:10:20 +00:00
}
func testJob(jobID string) *api.Job {
task := api.NewTask("task1", "exec").
2016-02-02 21:50:30 +00:00
Require(&api.Resources{
MemoryMB: 256,
DiskMB: 20,
CPU: 100,
})
group := api.NewTaskGroup("group1", 1).
AddTask(task)
job := api.NewBatchJob(jobID, jobID, "region1", 1).
AddDatacenter("dc1").
AddTaskGroup(group)
return job
}