talent-plan-tinykv/scheduler/pkg/testutil/operator_check.go

75 lines
3.1 KiB
Go
Raw Normal View History

// Copyright 2017 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package testutil
import (
"github.com/pingcap-incubator/tinykv/scheduler/server/schedule/operator"
check "github.com/pingcap/check"
)
// CheckAddPeer checks if the operator is to add peer on specified store.
func CheckAddPeer(c *check.C, op *operator.Operator, kind operator.OpKind, storeID uint64) {
c.Assert(op, check.NotNil)
c.Assert(op.Len(), check.Equals, 1)
c.Assert(op.Step(0).(operator.AddPeer).ToStore, check.Equals, storeID)
kind |= operator.OpRegion
c.Assert(op.Kind()&kind, check.Equals, kind)
}
// CheckRemovePeer checks if the operator is to remove peer on specified store.
func CheckRemovePeer(c *check.C, op *operator.Operator, storeID uint64) {
if op.Len() == 1 {
c.Assert(op.Step(0).(operator.RemovePeer).FromStore, check.Equals, storeID)
} else {
c.Assert(op.Len(), check.Equals, 2)
c.Assert(op.Step(0).(operator.TransferLeader).FromStore, check.Equals, storeID)
c.Assert(op.Step(1).(operator.RemovePeer).FromStore, check.Equals, storeID)
}
}
// CheckTransferLeader checks if the operator is to transfer leader between the specified source and target stores.
func CheckTransferLeader(c *check.C, op *operator.Operator, kind operator.OpKind, sourceID, targetID uint64) {
c.Assert(op, check.NotNil)
c.Assert(op.Len(), check.Equals, 1)
c.Assert(op.Step(0), check.Equals, operator.TransferLeader{FromStore: sourceID, ToStore: targetID})
kind |= operator.OpLeader
c.Assert(op.Kind()&kind, check.Equals, kind)
}
// CheckTransferPeer checks if the operator is to transfer peer between the specified source and target stores.
func CheckTransferPeer(c *check.C, op *operator.Operator, kind operator.OpKind, sourceID, targetID uint64) {
c.Assert(op, check.NotNil)
if op.Len() == 2 {
c.Assert(op.Step(0).(operator.AddPeer).ToStore, check.Equals, targetID)
c.Assert(op.Step(1).(operator.RemovePeer).FromStore, check.Equals, sourceID)
} else {
c.Assert(op.Len(), check.Equals, 3)
c.Assert(op.Step(0).(operator.AddPeer).ToStore, check.Equals, targetID)
c.Assert(op.Step(1).(operator.TransferLeader).FromStore, check.Equals, sourceID)
c.Assert(op.Step(2).(operator.RemovePeer).FromStore, check.Equals, sourceID)
kind |= operator.OpLeader
}
kind |= operator.OpRegion
c.Assert(op.Kind()&kind, check.Equals, kind)
}
// CheckTransferPeerWithLeaderTransfer checks if the operator is to transfer
// peer between the specified source and target stores and it meanwhile
// transfers the leader out of source store.
func CheckTransferPeerWithLeaderTransfer(c *check.C, op *operator.Operator, kind operator.OpKind, sourceID, targetID uint64) {
c.Assert(op, check.NotNil)
c.Assert(op.Len(), check.Equals, 3)
CheckTransferPeer(c, op, kind, sourceID, targetID)
}