forked from tikv/pd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_util.go
64 lines (58 loc) · 2.53 KB
/
test_util.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// 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 schedulers
import (
"github.com/pingcap/check"
"github.com/pingcap/pd/server/schedule"
)
// CheckAddPeer checks add peer
func CheckAddPeer(c *check.C, op *schedule.Operator, kind schedule.OperatorKind, storeID uint64) {
c.Assert(op, check.NotNil)
c.Assert(op.Len(), check.Equals, 1)
c.Assert(op.Step(0).(schedule.AddPeer).ToStore, check.Equals, storeID)
kind |= schedule.OpRegion
c.Assert(op.Kind()&kind, check.Equals, kind)
}
// CheckAddPeerWithLearner checks add peer with learner
func CheckAddPeerWithLearner(c *check.C, op *schedule.Operator, kind schedule.OperatorKind, storeID uint64) {
c.Assert(op, check.NotNil)
c.Assert(op.Len(), check.Equals, 2)
c.Assert(op.Step(0).(schedule.AddLearner).ToStore, check.Equals, storeID)
c.Assert(op.Step(1).(schedule.PromoteLearner).ToStore, check.Equals, storeID)
kind |= schedule.OpRegion
c.Assert(op.Kind()&kind, check.Equals, kind)
}
// CheckTransferLeader check whether leader is transferred
func CheckTransferLeader(c *check.C, op *schedule.Operator, kind schedule.OperatorKind, sourceID, targetID uint64) {
c.Assert(op, check.NotNil)
c.Assert(op.Len(), check.Equals, 1)
c.Assert(op.Step(0), check.Equals, schedule.TransferLeader{FromStore: sourceID, ToStore: targetID})
kind |= schedule.OpLeader
c.Assert(op.Kind()&kind, check.Equals, kind)
}
// CheckTransferPeer checks peer transfer
func CheckTransferPeer(c *check.C, op *schedule.Operator, kind schedule.OperatorKind, sourceID, targetID uint64) {
c.Assert(op, check.NotNil)
if op.Len() == 2 {
c.Assert(op.Step(0).(schedule.AddPeer).ToStore, check.Equals, targetID)
c.Assert(op.Step(1).(schedule.RemovePeer).FromStore, check.Equals, sourceID)
} else {
c.Assert(op.Len(), check.Equals, 3)
c.Assert(op.Step(0).(schedule.AddPeer).ToStore, check.Equals, targetID)
c.Assert(op.Step(1).(schedule.TransferLeader).FromStore, check.Equals, sourceID)
c.Assert(op.Step(2).(schedule.RemovePeer).FromStore, check.Equals, sourceID)
kind |= schedule.OpLeader
}
kind |= schedule.OpRegion
c.Assert(op.Kind()&kind, check.Equals, kind)
}