forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmock.go
158 lines (136 loc) · 3.79 KB
/
mock.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// 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,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package owner
import (
"context"
"sync/atomic"
"time"
"github.com/pingcap/errors"
"github.com/pingcap/tidb/ddl/util"
)
var _ Manager = &mockManager{}
// mockManager represents the structure which is used for electing owner.
// It's used for local store and testing.
// So this worker will always be the owner.
type mockManager struct {
owner int32
id string // id is the ID of manager.
cancel context.CancelFunc
beOwnerHook func()
}
// NewMockManager creates a new mock Manager.
func NewMockManager(ctx context.Context, id string) Manager {
_, cancelFunc := context.WithCancel(ctx)
return &mockManager{
id: id,
cancel: cancelFunc,
}
}
// ID implements Manager.ID interface.
func (m *mockManager) ID() string {
return m.id
}
// IsOwner implements Manager.IsOwner interface.
func (m *mockManager) IsOwner() bool {
return atomic.LoadInt32(&m.owner) == 1
}
func (m *mockManager) toBeOwner() {
if m.beOwnerHook != nil {
m.beOwnerHook()
}
atomic.StoreInt32(&m.owner, 1)
}
// RetireOwner implements Manager.RetireOwner interface.
func (m *mockManager) RetireOwner() {
atomic.StoreInt32(&m.owner, 0)
}
// Cancel implements Manager.Cancel interface.
func (m *mockManager) Cancel() {
m.cancel()
}
// GetOwnerID implements Manager.GetOwnerID interface.
func (m *mockManager) GetOwnerID(_ context.Context) (string, error) {
if m.IsOwner() {
return m.ID(), nil
}
return "", errors.New("no owner")
}
var mockOwnerOpValue = OpNone
func (*mockManager) SetOwnerOpValue(_ context.Context, op OpType) error {
mockOwnerOpValue = op
return nil
}
// CampaignOwner implements Manager.CampaignOwner interface.
func (m *mockManager) CampaignOwner(_ ...int) error {
m.toBeOwner()
return nil
}
// ResignOwner lets the owner start a new election.
func (m *mockManager) ResignOwner(_ context.Context) error {
if m.IsOwner() {
m.RetireOwner()
}
return nil
}
// RequireOwner implements Manager.RequireOwner interface.
func (*mockManager) RequireOwner(context.Context) error {
return nil
}
func (m *mockManager) SetBeOwnerHook(hook func()) {
m.beOwnerHook = hook
}
// CampaignCancel implements Manager.CampaignCancel interface
func (m *mockManager) CampaignCancel() {
// do nothing
}
func mockDelOwnerKey(mockCal, ownerKey string, m *ownerManager) error {
checkIsOwner := func(m *ownerManager, checkTrue bool) error {
// 5s
for i := 0; i < 100; i++ {
if m.IsOwner() == checkTrue {
break
}
time.Sleep(50 * time.Millisecond)
}
if m.IsOwner() != checkTrue {
return errors.Errorf("expect manager state:%v", checkTrue)
}
return nil
}
needCheckOwner := false
switch mockCal {
case "delOwnerKeyAndNotOwner":
m.CampaignCancel()
// Make sure the manager is not owner. And it will exit campaignLoop.
err := checkIsOwner(m, false)
if err != nil {
return err
}
case "onlyDelOwnerKey":
needCheckOwner = true
}
err := util.DeleteKeyFromEtcd(ownerKey, m.etcdCli, 1, keyOpDefaultTimeout)
if err != nil {
return errors.Trace(err)
}
if needCheckOwner {
// Mock the manager become not owner because the owner is deleted(like TTL is timeout).
// And then the manager campaigns the owner again, and become the owner.
err = checkIsOwner(m, true)
if err != nil {
return err
}
}
return nil
}