open-nomad/nomad/plan_apply_test.go

344 lines
7.3 KiB
Go
Raw Normal View History

2015-07-28 22:15:42 +00:00
package nomad
2015-08-05 01:10:57 +00:00
import (
"testing"
2015-07-28 22:15:42 +00:00
"github.com/hashicorp/nomad/nomad/mock"
2015-08-05 01:10:57 +00:00
"github.com/hashicorp/nomad/nomad/structs"
2015-08-05 01:18:44 +00:00
"github.com/hashicorp/nomad/testutil"
2015-08-05 01:10:57 +00:00
)
2015-08-05 01:18:44 +00:00
func testRegisterNode(t *testing.T, s *Server, n *structs.Node) {
// Create the register request
req := &structs.NodeRegisterRequest{
Node: n,
WriteRequest: structs.WriteRequest{Region: "region1"},
}
// Fetch the response
2015-08-07 00:02:37 +00:00
var resp structs.NodeUpdateResponse
2015-08-05 01:18:44 +00:00
if err := s.RPC("Client.Register", req, &resp); err != nil {
t.Fatalf("err: %v", err)
}
if resp.Index == 0 {
t.Fatalf("bad index: %d", resp.Index)
}
}
func TestPlanApply_applyPlan(t *testing.T) {
s1 := testServer(t, nil)
defer s1.Shutdown()
testutil.WaitForLeader(t, s1.RPC)
// Register ndoe
node := mock.Node()
2015-08-05 01:18:44 +00:00
testRegisterNode(t, s1, node)
// Register alloc
alloc := mock.Alloc()
2015-08-05 01:18:44 +00:00
plan := &structs.PlanResult{
NodeEvict: map[string][]string{
node.ID: []string{},
},
NodeAllocation: map[string][]*structs.Allocation{
node.ID: []*structs.Allocation{alloc},
},
}
// Apply the plan
index, err := s1.applyPlan(plan)
if err != nil {
t.Fatalf("err: %v", err)
}
if index == 0 {
t.Fatalf("bad: %d", index)
}
// Lookup the allocation
out, err := s1.fsm.State().GetAllocByID(alloc.ID)
if err != nil {
t.Fatalf("err: %v", err)
}
if out == nil {
t.Fatalf("missing alloc")
}
// Evict alloc, Register alloc2
alloc2 := mock.Alloc()
2015-08-05 01:18:44 +00:00
plan = &structs.PlanResult{
NodeEvict: map[string][]string{
node.ID: []string{alloc.ID},
},
NodeAllocation: map[string][]*structs.Allocation{
node.ID: []*structs.Allocation{alloc2},
},
}
// Apply the plan
index, err = s1.applyPlan(plan)
if err != nil {
t.Fatalf("err: %v", err)
}
if index == 0 {
t.Fatalf("bad: %d", index)
}
// Lookup the allocation
out, err = s1.fsm.State().GetAllocByID(alloc.ID)
if err != nil {
t.Fatalf("err: %v", err)
}
if out != nil {
t.Fatalf("should be missing alloc")
}
// Lookup the allocation
out, err = s1.fsm.State().GetAllocByID(alloc2.ID)
if err != nil {
t.Fatalf("err: %v", err)
}
if out == nil {
t.Fatalf("missing alloc")
}
}
2015-08-05 01:30:05 +00:00
func TestPlanApply_EvalPlan_Simple(t *testing.T) {
state := testStateStore(t)
node := mock.Node()
2015-08-05 01:30:05 +00:00
state.RegisterNode(1000, node)
snap, _ := state.Snapshot()
alloc := mock.Alloc()
2015-08-05 01:30:05 +00:00
plan := &structs.Plan{
NodeAllocation: map[string][]*structs.Allocation{
node.ID: []*structs.Allocation{alloc},
},
}
result, err := evaluatePlan(snap, plan)
if err != nil {
t.Fatalf("err: %v", err)
}
if result == nil {
t.Fatalf("missing result")
}
}
func TestPlanApply_EvalPlan_Partial(t *testing.T) {
state := testStateStore(t)
node := mock.Node()
2015-08-05 01:30:05 +00:00
state.RegisterNode(1000, node)
node2 := mock.Node()
2015-08-05 01:30:05 +00:00
state.RegisterNode(1001, node2)
snap, _ := state.Snapshot()
alloc := mock.Alloc()
alloc2 := mock.Alloc() // Ensure alloc2 does not fit
2015-08-05 01:30:05 +00:00
alloc2.Resources = node2.Resources
plan := &structs.Plan{
NodeAllocation: map[string][]*structs.Allocation{
node.ID: []*structs.Allocation{alloc},
node2.ID: []*structs.Allocation{alloc2},
},
}
result, err := evaluatePlan(snap, plan)
if err != nil {
t.Fatalf("err: %v", err)
}
if result == nil {
t.Fatalf("missing result")
}
if _, ok := result.NodeAllocation[node.ID]; !ok {
t.Fatalf("should allow alloc")
}
if _, ok := result.NodeAllocation[node2.ID]; ok {
t.Fatalf("should not allow alloc2")
}
}
func TestPlanApply_EvalPlan_Partial_AllAtOnce(t *testing.T) {
state := testStateStore(t)
node := mock.Node()
2015-08-05 01:30:05 +00:00
state.RegisterNode(1000, node)
node2 := mock.Node()
2015-08-05 01:30:05 +00:00
state.RegisterNode(1001, node2)
snap, _ := state.Snapshot()
alloc := mock.Alloc()
alloc2 := mock.Alloc() // Ensure alloc2 does not fit
2015-08-05 01:30:05 +00:00
alloc2.Resources = node2.Resources
plan := &structs.Plan{
AllAtOnce: true, // Require all to make progress
NodeAllocation: map[string][]*structs.Allocation{
node.ID: []*structs.Allocation{alloc},
node2.ID: []*structs.Allocation{alloc2},
},
}
result, err := evaluatePlan(snap, plan)
if err != nil {
t.Fatalf("err: %v", err)
}
if result == nil {
t.Fatalf("missing result")
}
if len(result.NodeAllocation) != 0 {
t.Fatalf("should not alloc: %v", result.NodeAllocation)
}
}
2015-08-05 01:10:57 +00:00
func TestPlanApply_EvalNodePlan_Simple(t *testing.T) {
state := testStateStore(t)
node := mock.Node()
2015-08-05 01:10:57 +00:00
state.RegisterNode(1000, node)
snap, _ := state.Snapshot()
alloc := mock.Alloc()
2015-08-05 01:10:57 +00:00
plan := &structs.Plan{
NodeAllocation: map[string][]*structs.Allocation{
node.ID: []*structs.Allocation{alloc},
},
}
fit, err := evaluateNodePlan(snap, plan, node.ID)
if err != nil {
t.Fatalf("err: %v", err)
}
if !fit {
t.Fatalf("bad")
}
}
func TestPlanApply_EvalNodePlan_NodeNotReady(t *testing.T) {
state := testStateStore(t)
node := mock.Node()
2015-08-05 01:10:57 +00:00
node.Status = structs.NodeStatusInit
state.RegisterNode(1000, node)
snap, _ := state.Snapshot()
alloc := mock.Alloc()
2015-08-05 01:10:57 +00:00
plan := &structs.Plan{
NodeAllocation: map[string][]*structs.Allocation{
node.ID: []*structs.Allocation{alloc},
},
}
fit, err := evaluateNodePlan(snap, plan, node.ID)
if err != nil {
t.Fatalf("err: %v", err)
}
if fit {
t.Fatalf("bad")
}
}
func TestPlanApply_EvalNodePlan_NodeNotExist(t *testing.T) {
state := testStateStore(t)
snap, _ := state.Snapshot()
nodeID := "foo"
alloc := mock.Alloc()
2015-08-05 01:10:57 +00:00
plan := &structs.Plan{
NodeAllocation: map[string][]*structs.Allocation{
nodeID: []*structs.Allocation{alloc},
},
}
fit, err := evaluateNodePlan(snap, plan, nodeID)
if err != nil {
t.Fatalf("err: %v", err)
}
if fit {
t.Fatalf("bad")
}
}
func TestPlanApply_EvalNodePlan_NodeFull(t *testing.T) {
alloc := mock.Alloc()
2015-08-05 01:10:57 +00:00
state := testStateStore(t)
node := mock.Node()
2015-08-05 01:10:57 +00:00
alloc.NodeID = node.ID
node.Resources = alloc.Resources
node.Reserved = nil
state.RegisterNode(1000, node)
state.UpdateAllocations(1001, nil,
[]*structs.Allocation{alloc})
snap, _ := state.Snapshot()
plan := &structs.Plan{
NodeAllocation: map[string][]*structs.Allocation{
node.ID: []*structs.Allocation{alloc},
},
}
fit, err := evaluateNodePlan(snap, plan, node.ID)
if err != nil {
t.Fatalf("err: %v", err)
}
if fit {
t.Fatalf("bad")
}
}
func TestPlanApply_EvalNodePlan_NodeFull_Evict(t *testing.T) {
alloc := mock.Alloc()
2015-08-05 01:10:57 +00:00
state := testStateStore(t)
node := mock.Node()
2015-08-05 01:10:57 +00:00
alloc.NodeID = node.ID
node.Resources = alloc.Resources
node.Reserved = nil
state.RegisterNode(1000, node)
state.UpdateAllocations(1001, nil,
[]*structs.Allocation{alloc})
snap, _ := state.Snapshot()
alloc2 := mock.Alloc()
2015-08-05 01:10:57 +00:00
plan := &structs.Plan{
NodeEvict: map[string][]string{
node.ID: []string{alloc.ID},
},
NodeAllocation: map[string][]*structs.Allocation{
node.ID: []*structs.Allocation{alloc2},
},
}
fit, err := evaluateNodePlan(snap, plan, node.ID)
if err != nil {
t.Fatalf("err: %v", err)
}
if !fit {
t.Fatalf("bad")
}
2015-07-28 22:15:42 +00:00
}
func TestPlanApply_EvalNodePlan_NodeMaint_EvictOnly(t *testing.T) {
alloc := mock.Alloc()
state := testStateStore(t)
node := mock.Node()
alloc.NodeID = node.ID
node.Resources = alloc.Resources
node.Reserved = nil
node.Status = structs.NodeStatusMaint
state.RegisterNode(1000, node)
state.UpdateAllocations(1001, nil,
[]*structs.Allocation{alloc})
snap, _ := state.Snapshot()
plan := &structs.Plan{
NodeEvict: map[string][]string{
node.ID: []string{alloc.ID},
},
}
fit, err := evaluateNodePlan(snap, plan, node.ID)
if err != nil {
t.Fatalf("err: %v", err)
}
if !fit {
t.Fatalf("bad")
}
}