2015-08-11 21:27:14 +00:00
|
|
|
package mock
|
|
|
|
|
2015-10-31 01:34:23 +00:00
|
|
|
import (
|
|
|
|
"time"
|
2015-11-13 01:47:51 +00:00
|
|
|
|
|
|
|
"github.com/hashicorp/nomad/nomad/structs"
|
2015-10-31 01:34:23 +00:00
|
|
|
)
|
2015-08-11 21:27:14 +00:00
|
|
|
|
|
|
|
func Node() *structs.Node {
|
|
|
|
node := &structs.Node{
|
2015-09-07 22:23:03 +00:00
|
|
|
ID: structs.GenerateUUID(),
|
2015-08-11 21:27:14 +00:00
|
|
|
Datacenter: "dc1",
|
|
|
|
Name: "foobar",
|
|
|
|
Attributes: map[string]string{
|
2015-09-07 02:47:02 +00:00
|
|
|
"kernel.name": "linux",
|
|
|
|
"arch": "x86",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"driver.exec": "1",
|
2015-08-11 21:27:14 +00:00
|
|
|
},
|
|
|
|
Resources: &structs.Resources{
|
2015-09-23 18:14:32 +00:00
|
|
|
CPU: 4000,
|
2015-08-11 21:27:14 +00:00
|
|
|
MemoryMB: 8192,
|
|
|
|
DiskMB: 100 * 1024,
|
|
|
|
IOPS: 150,
|
|
|
|
Networks: []*structs.NetworkResource{
|
|
|
|
&structs.NetworkResource{
|
2015-09-13 02:34:46 +00:00
|
|
|
Device: "eth0",
|
|
|
|
CIDR: "192.168.0.100/32",
|
|
|
|
MBits: 1000,
|
2015-08-11 21:27:14 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Reserved: &structs.Resources{
|
2015-09-23 18:14:32 +00:00
|
|
|
CPU: 100,
|
2015-08-11 21:27:14 +00:00
|
|
|
MemoryMB: 256,
|
|
|
|
DiskMB: 4 * 1024,
|
2015-09-13 02:34:46 +00:00
|
|
|
Networks: []*structs.NetworkResource{
|
|
|
|
&structs.NetworkResource{
|
|
|
|
Device: "eth0",
|
|
|
|
IP: "192.168.0.100",
|
2015-11-14 02:35:49 +00:00
|
|
|
ReservedPorts: []structs.Port{{Label: "main", Value: 22}},
|
2015-09-13 02:34:46 +00:00
|
|
|
MBits: 1,
|
|
|
|
},
|
|
|
|
},
|
2015-08-11 21:27:14 +00:00
|
|
|
},
|
|
|
|
Links: map[string]string{
|
|
|
|
"consul": "foobar.dc1",
|
|
|
|
},
|
|
|
|
Meta: map[string]string{
|
|
|
|
"pci-dss": "true",
|
|
|
|
},
|
|
|
|
NodeClass: "linux-medium-pci",
|
|
|
|
Status: structs.NodeStatusReady,
|
|
|
|
}
|
2016-01-27 01:34:41 +00:00
|
|
|
node.ComputeClass()
|
2015-08-11 21:27:14 +00:00
|
|
|
return node
|
|
|
|
}
|
|
|
|
|
|
|
|
func Job() *structs.Job {
|
|
|
|
job := &structs.Job{
|
2015-09-15 18:12:46 +00:00
|
|
|
Region: "global",
|
2015-09-07 22:23:03 +00:00
|
|
|
ID: structs.GenerateUUID(),
|
2015-08-14 05:07:01 +00:00
|
|
|
Name: "my-job",
|
|
|
|
Type: structs.JobTypeService,
|
|
|
|
Priority: 50,
|
|
|
|
AllAtOnce: false,
|
|
|
|
Datacenters: []string{"dc1"},
|
2015-08-11 21:27:14 +00:00
|
|
|
Constraints: []*structs.Constraint{
|
|
|
|
&structs.Constraint{
|
2016-02-05 00:50:20 +00:00
|
|
|
LTarget: "${attr.kernel.name}",
|
2015-08-11 21:27:14 +00:00
|
|
|
RTarget: "linux",
|
|
|
|
Operand: "=",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
TaskGroups: []*structs.TaskGroup{
|
|
|
|
&structs.TaskGroup{
|
|
|
|
Name: "web",
|
|
|
|
Count: 10,
|
2015-10-31 01:34:23 +00:00
|
|
|
RestartPolicy: &structs.RestartPolicy{
|
2016-02-02 23:08:07 +00:00
|
|
|
Attempts: 3,
|
|
|
|
Interval: 10 * time.Minute,
|
|
|
|
Delay: 1 * time.Minute,
|
|
|
|
Mode: structs.RestartPolicyModeDelay,
|
2015-10-31 01:34:23 +00:00
|
|
|
},
|
2015-08-11 21:27:14 +00:00
|
|
|
Tasks: []*structs.Task{
|
|
|
|
&structs.Task{
|
|
|
|
Name: "web",
|
2015-08-29 23:24:01 +00:00
|
|
|
Driver: "exec",
|
2015-11-14 02:09:42 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-08-29 23:24:01 +00:00
|
|
|
"command": "/bin/date",
|
2015-08-11 21:27:14 +00:00
|
|
|
},
|
2015-10-23 21:52:06 +00:00
|
|
|
Env: map[string]string{
|
|
|
|
"FOO": "bar",
|
|
|
|
},
|
2015-11-27 03:26:00 +00:00
|
|
|
Services: []*structs.Service{
|
|
|
|
{
|
|
|
|
Name: "${TASK}-frontend",
|
|
|
|
PortLabel: "http",
|
|
|
|
},
|
2015-12-15 18:43:56 +00:00
|
|
|
{
|
|
|
|
Name: "${TASK}-admin",
|
|
|
|
PortLabel: "admin",
|
|
|
|
},
|
2015-11-27 03:26:00 +00:00
|
|
|
},
|
2016-02-11 01:46:35 +00:00
|
|
|
LogConfig: structs.DefaultLogConfig(),
|
2015-08-11 21:27:14 +00:00
|
|
|
Resources: &structs.Resources{
|
2015-09-23 18:14:32 +00:00
|
|
|
CPU: 500,
|
2015-08-11 21:27:14 +00:00
|
|
|
MemoryMB: 256,
|
2016-02-12 01:34:46 +00:00
|
|
|
DiskMB: 150,
|
2015-09-13 23:40:31 +00:00
|
|
|
Networks: []*structs.NetworkResource{
|
|
|
|
&structs.NetworkResource{
|
|
|
|
MBits: 50,
|
2015-12-15 18:43:56 +00:00
|
|
|
DynamicPorts: []structs.Port{{Label: "http"}, {Label: "admin"}},
|
2015-09-13 23:40:31 +00:00
|
|
|
},
|
|
|
|
},
|
2015-08-11 21:27:14 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Meta: map[string]string{
|
|
|
|
"elb_check_type": "http",
|
|
|
|
"elb_check_interval": "30s",
|
|
|
|
"elb_check_min": "3",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Meta: map[string]string{
|
|
|
|
"owner": "armon",
|
|
|
|
},
|
2016-01-12 17:50:33 +00:00
|
|
|
Status: structs.JobStatusPending,
|
|
|
|
CreateIndex: 42,
|
|
|
|
ModifyIndex: 99,
|
|
|
|
JobModifyIndex: 99,
|
2015-08-11 21:27:14 +00:00
|
|
|
}
|
2015-12-16 01:13:04 +00:00
|
|
|
job.InitFields()
|
2015-08-11 21:27:14 +00:00
|
|
|
return job
|
|
|
|
}
|
|
|
|
|
2015-10-14 23:43:06 +00:00
|
|
|
func SystemJob() *structs.Job {
|
|
|
|
job := &structs.Job{
|
|
|
|
Region: "global",
|
|
|
|
ID: structs.GenerateUUID(),
|
|
|
|
Name: "my-job",
|
|
|
|
Type: structs.JobTypeSystem,
|
|
|
|
Priority: 100,
|
|
|
|
AllAtOnce: false,
|
|
|
|
Datacenters: []string{"dc1"},
|
|
|
|
Constraints: []*structs.Constraint{
|
|
|
|
&structs.Constraint{
|
2016-02-05 00:50:20 +00:00
|
|
|
LTarget: "${attr.kernel.name}",
|
2015-10-14 23:43:06 +00:00
|
|
|
RTarget: "linux",
|
|
|
|
Operand: "=",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
TaskGroups: []*structs.TaskGroup{
|
|
|
|
&structs.TaskGroup{
|
2015-10-15 20:14:44 +00:00
|
|
|
Name: "web",
|
|
|
|
Count: 1,
|
2015-10-31 01:34:23 +00:00
|
|
|
RestartPolicy: &structs.RestartPolicy{
|
2016-02-02 23:08:07 +00:00
|
|
|
Attempts: 3,
|
|
|
|
Interval: 10 * time.Minute,
|
|
|
|
Delay: 1 * time.Minute,
|
|
|
|
Mode: structs.RestartPolicyModeDelay,
|
2015-10-31 01:34:23 +00:00
|
|
|
},
|
2015-10-14 23:43:06 +00:00
|
|
|
Tasks: []*structs.Task{
|
|
|
|
&structs.Task{
|
|
|
|
Name: "web",
|
|
|
|
Driver: "exec",
|
2015-11-14 02:09:42 +00:00
|
|
|
Config: map[string]interface{}{
|
2015-10-14 23:43:06 +00:00
|
|
|
"command": "/bin/date",
|
|
|
|
},
|
|
|
|
Resources: &structs.Resources{
|
|
|
|
CPU: 500,
|
|
|
|
MemoryMB: 256,
|
|
|
|
Networks: []*structs.NetworkResource{
|
|
|
|
&structs.NetworkResource{
|
|
|
|
MBits: 50,
|
2015-11-14 02:35:49 +00:00
|
|
|
DynamicPorts: []structs.Port{{Label: "http"}},
|
2015-10-14 23:43:06 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2016-02-11 01:46:35 +00:00
|
|
|
LogConfig: structs.DefaultLogConfig(),
|
2015-10-14 23:43:06 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Meta: map[string]string{
|
|
|
|
"owner": "armon",
|
|
|
|
},
|
|
|
|
Status: structs.JobStatusPending,
|
|
|
|
CreateIndex: 42,
|
|
|
|
ModifyIndex: 99,
|
|
|
|
}
|
|
|
|
return job
|
|
|
|
}
|
|
|
|
|
2015-12-18 20:26:28 +00:00
|
|
|
func PeriodicJob() *structs.Job {
|
|
|
|
job := Job()
|
2015-12-05 00:53:36 +00:00
|
|
|
job.Type = structs.JobTypeBatch
|
2015-12-18 20:26:28 +00:00
|
|
|
job.Periodic = &structs.PeriodicConfig{
|
|
|
|
Enabled: true,
|
|
|
|
SpecType: structs.PeriodicSpecCron,
|
2015-12-05 00:53:36 +00:00
|
|
|
Spec: "*/30 * * * *",
|
2015-12-18 20:26:28 +00:00
|
|
|
}
|
|
|
|
return job
|
|
|
|
}
|
|
|
|
|
2015-08-11 21:27:14 +00:00
|
|
|
func Eval() *structs.Evaluation {
|
|
|
|
eval := &structs.Evaluation{
|
2015-09-07 22:23:03 +00:00
|
|
|
ID: structs.GenerateUUID(),
|
2015-08-11 21:27:14 +00:00
|
|
|
Priority: 50,
|
|
|
|
Type: structs.JobTypeService,
|
2015-09-07 22:23:03 +00:00
|
|
|
JobID: structs.GenerateUUID(),
|
2015-08-11 21:27:14 +00:00
|
|
|
Status: structs.EvalStatusPending,
|
|
|
|
}
|
|
|
|
return eval
|
|
|
|
}
|
|
|
|
|
|
|
|
func Alloc() *structs.Allocation {
|
|
|
|
alloc := &structs.Allocation{
|
2015-09-07 22:23:03 +00:00
|
|
|
ID: structs.GenerateUUID(),
|
|
|
|
EvalID: structs.GenerateUUID(),
|
2016-01-14 20:57:43 +00:00
|
|
|
NodeID: "12345678-abcd-efab-cdef-123456789abc",
|
2015-08-29 23:24:01 +00:00
|
|
|
TaskGroup: "web",
|
2015-08-11 21:27:14 +00:00
|
|
|
Resources: &structs.Resources{
|
2015-09-23 18:14:32 +00:00
|
|
|
CPU: 500,
|
2015-09-14 00:06:34 +00:00
|
|
|
MemoryMB: 256,
|
2015-08-11 21:27:14 +00:00
|
|
|
Networks: []*structs.NetworkResource{
|
|
|
|
&structs.NetworkResource{
|
2015-09-13 02:13:00 +00:00
|
|
|
Device: "eth0",
|
2015-09-14 00:06:34 +00:00
|
|
|
IP: "192.168.0.100",
|
2015-11-14 02:35:49 +00:00
|
|
|
ReservedPorts: []structs.Port{{Label: "main", Value: 12345}},
|
2015-08-11 21:27:14 +00:00
|
|
|
MBits: 100,
|
2015-11-14 02:35:49 +00:00
|
|
|
DynamicPorts: []structs.Port{{Label: "http"}},
|
2015-09-14 00:06:34 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
TaskResources: map[string]*structs.Resources{
|
|
|
|
"web": &structs.Resources{
|
2015-09-23 18:14:32 +00:00
|
|
|
CPU: 500,
|
2015-09-14 00:06:34 +00:00
|
|
|
MemoryMB: 256,
|
|
|
|
Networks: []*structs.NetworkResource{
|
|
|
|
&structs.NetworkResource{
|
|
|
|
Device: "eth0",
|
|
|
|
IP: "192.168.0.100",
|
2015-11-14 02:35:49 +00:00
|
|
|
ReservedPorts: []structs.Port{{Label: "main", Value: 5000}},
|
2015-09-14 00:06:34 +00:00
|
|
|
MBits: 50,
|
2015-11-14 02:35:49 +00:00
|
|
|
DynamicPorts: []structs.Port{{Label: "http"}},
|
2015-09-14 00:06:34 +00:00
|
|
|
},
|
2015-08-11 21:27:14 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2015-12-21 01:30:45 +00:00
|
|
|
TaskStates: map[string]*structs.TaskState{
|
|
|
|
"web": &structs.TaskState{
|
|
|
|
State: structs.TaskStatePending,
|
|
|
|
},
|
|
|
|
},
|
2015-08-25 23:19:21 +00:00
|
|
|
Job: Job(),
|
|
|
|
DesiredStatus: structs.AllocDesiredStatusRun,
|
|
|
|
ClientStatus: structs.AllocClientStatusPending,
|
2015-08-11 21:27:14 +00:00
|
|
|
}
|
|
|
|
alloc.JobID = alloc.Job.ID
|
|
|
|
return alloc
|
|
|
|
}
|
|
|
|
|
|
|
|
func Plan() *structs.Plan {
|
|
|
|
return &structs.Plan{
|
|
|
|
Priority: 50,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func PlanResult() *structs.PlanResult {
|
|
|
|
return &structs.PlanResult{}
|
|
|
|
}
|