-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_util.go
More file actions
436 lines (379 loc) · 10.4 KB
/
test_util.go
File metadata and controls
436 lines (379 loc) · 10.4 KB
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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
package adapter
import (
"context"
"log"
"net"
"strconv"
"sync"
"sync/atomic"
"testing"
"time"
"github.com/Jille/raft-grpc-leader-rpc/leaderhealth"
transport "github.com/Jille/raft-grpc-transport"
"github.com/Jille/raftadmin"
"github.com/bootjp/elastickv/kv"
pb "github.com/bootjp/elastickv/proto"
"github.com/bootjp/elastickv/store"
"github.com/cockroachdb/errors"
"github.com/hashicorp/go-hclog"
"github.com/hashicorp/raft"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/sys/unix"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
)
func shutdown(nodes []Node) {
for _, n := range nodes {
n.grpcServer.Stop()
if n.grpcService != nil {
if err := n.grpcService.Close(); err != nil {
log.Printf("grpc service close: %v", err)
}
}
n.redisServer.Stop()
if n.dynamoServer != nil {
n.dynamoServer.Stop()
}
if n.raft != nil {
n.raft.Shutdown()
}
if n.tm != nil {
if err := n.tm.Close(); err != nil {
log.Printf("transport close: %v", err)
}
}
}
}
type portsAdress struct {
grpc int
raft int
redis int
dynamo int
grpcAddress string
raftAddress string
redisAddress string
dynamoAddress string
}
const (
// raft and the grpc requested by the client use grpc and are received on the same port
grpcPort = 50000
raftPort = 50000
redisPort = 63790
dynamoPort = 28000
// followers wait longer before starting elections to give the leader time to bootstrap and share config.
followerElectionTimeout = 10 * time.Second
)
var mu sync.Mutex
var portGrpc atomic.Int32
var portRaft atomic.Int32
var portRedis atomic.Int32
var portDynamo atomic.Int32
func init() {
portGrpc.Store(raftPort)
portRaft.Store(grpcPort)
portRedis.Store(redisPort)
portDynamo.Store(dynamoPort)
}
func portAssigner() portsAdress {
mu.Lock()
defer mu.Unlock()
gp := portGrpc.Add(1)
rp := portRaft.Add(1)
rd := portRedis.Add(1)
dn := portDynamo.Add(1)
return portsAdress{
grpc: int(gp),
raft: int(rp),
redis: int(rd),
dynamo: int(dn),
grpcAddress: net.JoinHostPort("localhost", strconv.Itoa(int(gp))),
raftAddress: net.JoinHostPort("localhost", strconv.Itoa(int(rp))),
redisAddress: net.JoinHostPort("localhost", strconv.Itoa(int(rd))),
dynamoAddress: net.JoinHostPort("localhost", strconv.Itoa(int(dn))),
}
}
type Node struct {
grpcAddress string
raftAddress string
redisAddress string
dynamoAddress string
grpcServer *grpc.Server
grpcService *GRPCServer
redisServer *RedisServer
dynamoServer *DynamoDBServer
raft *raft.Raft
tm *transport.Manager
}
func newNode(grpcAddress, raftAddress, redisAddress, dynamoAddress string, r *raft.Raft, tm *transport.Manager, grpcs *grpc.Server, grpcService *GRPCServer, rd *RedisServer, ds *DynamoDBServer) Node {
return Node{
grpcAddress: grpcAddress,
raftAddress: raftAddress,
redisAddress: redisAddress,
dynamoAddress: dynamoAddress,
grpcServer: grpcs,
grpcService: grpcService,
redisServer: rd,
dynamoServer: ds,
raft: r,
tm: tm,
}
}
//nolint:unparam
func createNode(t *testing.T, n int) ([]Node, []string, []string) {
const (
waitTimeout = 5 * time.Second
waitInterval = 100 * time.Millisecond
)
t.Helper()
ctx := context.Background()
ports := assignPorts(n)
nodes, grpcAdders, redisAdders, cfg := setupNodes(t, ctx, n, ports)
waitForNodeListeners(t, ctx, nodes, waitTimeout, waitInterval)
waitForConfigReplication(t, cfg, nodes, waitTimeout, waitInterval)
waitForRaftReadiness(t, nodes, waitTimeout, waitInterval)
return nodes, grpcAdders, redisAdders
}
type listeners struct {
grpc net.Listener
redis net.Listener
dynamo net.Listener
}
func bindListeners(ctx context.Context, lc *net.ListenConfig, port portsAdress) (portsAdress, listeners, bool, error) {
grpcSock, err := lc.Listen(ctx, "tcp", port.grpcAddress)
if err != nil {
if errors.Is(err, unix.EADDRINUSE) {
return port, listeners{}, true, nil
}
return port, listeners{}, false, errors.WithStack(err)
}
redisSock, err := lc.Listen(ctx, "tcp", port.redisAddress)
if err != nil {
_ = grpcSock.Close()
if errors.Is(err, unix.EADDRINUSE) {
return port, listeners{}, true, nil
}
return port, listeners{}, false, errors.WithStack(err)
}
dynamoSock, err := lc.Listen(ctx, "tcp", port.dynamoAddress)
if err != nil {
_ = grpcSock.Close()
_ = redisSock.Close()
if errors.Is(err, unix.EADDRINUSE) {
return port, listeners{}, true, nil
}
return port, listeners{}, false, errors.WithStack(err)
}
return port, listeners{
grpc: grpcSock,
redis: redisSock,
dynamo: dynamoSock,
}, false, nil
}
func waitForNodeListeners(t *testing.T, ctx context.Context, nodes []Node, waitTimeout, waitInterval time.Duration) {
t.Helper()
d := &net.Dialer{Timeout: time.Second}
for _, n := range nodes {
assert.Eventually(t, func() bool {
conn, err := d.DialContext(ctx, "tcp", n.grpcAddress)
if err != nil {
return false
}
_ = conn.Close()
conn, err = d.DialContext(ctx, "tcp", n.redisAddress)
if err != nil {
return false
}
_ = conn.Close()
return true
}, waitTimeout, waitInterval)
}
}
func waitForRaftReadiness(t *testing.T, nodes []Node, waitTimeout, waitInterval time.Duration) {
t.Helper()
expectedLeader := raft.ServerAddress(nodes[0].raftAddress)
assert.Eventually(t, func() bool {
for i, n := range nodes {
state := n.raft.State()
if i == 0 {
if state != raft.Leader {
return false
}
} else if state != raft.Follower {
return false
}
addr, _ := n.raft.LeaderWithID()
if addr != expectedLeader {
return false
}
}
return true
}, waitTimeout, waitInterval)
}
func waitForConfigReplication(t *testing.T, cfg raft.Configuration, nodes []Node, waitTimeout, waitInterval time.Duration) {
t.Helper()
assert.Eventually(t, func() bool {
for _, n := range nodes {
future := n.raft.GetConfiguration()
if future.Error() != nil {
return false
}
current := future.Configuration().Servers
if len(current) != len(cfg.Servers) {
return false
}
for _, expected := range cfg.Servers {
if !containsServer(current, expected) {
return false
}
}
}
return true
}, waitTimeout, waitInterval)
}
func containsServer(servers []raft.Server, expected raft.Server) bool {
for _, s := range servers {
if s.ID == expected.ID && s.Address == expected.Address && s.Suffrage == expected.Suffrage {
return true
}
}
return false
}
func assignPorts(n int) []portsAdress {
ports := make([]portsAdress, n)
for i := range n {
ports[i] = portAssigner()
}
return ports
}
func buildRaftConfig(n int, ports []portsAdress) raft.Configuration {
cfg := raft.Configuration{}
for i := range n {
suffrage := raft.Nonvoter
if i == 0 {
suffrage = raft.Voter
}
cfg.Servers = append(cfg.Servers, raft.Server{
Suffrage: suffrage,
ID: raft.ServerID(strconv.Itoa(i)),
Address: raft.ServerAddress(ports[i].raftAddress),
})
}
return cfg
}
const leaderElectionTimeout = 0 * time.Second
func setupNodes(t *testing.T, ctx context.Context, n int, ports []portsAdress) ([]Node, []string, []string, raft.Configuration) {
t.Helper()
var grpcAdders []string
var redisAdders []string
var nodes []Node
lc := net.ListenConfig{}
lis := make([]listeners, n)
for i := range n {
var (
bound portsAdress
l listeners
retry bool
err error
)
for {
bound, l, retry, err = bindListeners(ctx, &lc, ports[i])
require.NoError(t, err)
if retry {
ports[i] = portAssigner()
continue
}
ports[i] = bound
lis[i] = l
break
}
}
cfg := buildRaftConfig(n, ports)
leaderRedisMap := make(map[raft.ServerAddress]string, len(ports))
for _, p := range ports {
leaderRedisMap[raft.ServerAddress(p.raftAddress)] = p.redisAddress
}
for i := range n {
st := store.NewMVCCStore()
fsm := kv.NewKvFSM(st)
port := ports[i]
grpcSock := lis[i].grpc
redisSock := lis[i].redis
dynamoSock := lis[i].dynamo
// リーダーが先に投票を開始させる
electionTimeout := leaderElectionTimeout
if i != 0 {
electionTimeout = followerElectionTimeout
}
r, tm, err := newRaft(strconv.Itoa(i), port.raftAddress, fsm, i == 0, cfg, electionTimeout)
assert.NoError(t, err)
s := grpc.NewServer()
trx := kv.NewTransaction(r)
coordinator := kv.NewCoordinator(trx, r)
relay := NewRedisPubSubRelay()
routedStore := kv.NewLeaderRoutedStore(st, coordinator)
gs := NewGRPCServer(routedStore, coordinator, WithCloseStore())
tm.Register(s)
pb.RegisterRawKVServer(s, gs)
pb.RegisterTransactionalKVServer(s, gs)
pb.RegisterInternalServer(s, NewInternal(trx, r, coordinator.Clock(), relay))
leaderhealth.Setup(r, s, []string{"Example"})
raftadmin.Register(s, r)
grpcAdders = append(grpcAdders, port.grpcAddress)
redisAdders = append(redisAdders, port.redisAddress)
go func(srv *grpc.Server, lis net.Listener) {
assert.NoError(t, srv.Serve(lis))
}(s, grpcSock)
rd := NewRedisServer(redisSock, port.redisAddress, routedStore, coordinator, leaderRedisMap, relay)
go func(server *RedisServer) {
assert.NoError(t, server.Run())
}(rd)
ds := NewDynamoDBServer(dynamoSock, st, coordinator)
go func() {
assert.NoError(t, ds.Run())
}()
nodes = append(nodes, newNode(
port.grpcAddress,
port.raftAddress,
port.redisAddress,
port.dynamoAddress,
r,
tm,
s,
gs,
rd,
ds,
))
}
return nodes, grpcAdders, redisAdders, cfg
}
func newRaft(myID string, myAddress string, fsm raft.FSM, bootstrap bool, cfg raft.Configuration, electionTimeout time.Duration) (*raft.Raft, *transport.Manager, error) {
c := raft.DefaultConfig()
c.LocalID = raft.ServerID(myID)
c.CommitTimeout = 1 * time.Millisecond
if electionTimeout > 0 {
c.ElectionTimeout = electionTimeout
}
// this config is for development
ldb := raft.NewInmemStore()
sdb := raft.NewInmemStore()
fss := raft.NewInmemSnapshotStore()
c.Logger = hclog.New(&hclog.LoggerOptions{
Name: "raft-" + myID,
Level: hclog.LevelFromString("WARN"),
})
tm := transport.New(raft.ServerAddress(myAddress), []grpc.DialOption{
grpc.WithTransportCredentials(insecure.NewCredentials()),
})
r, err := raft.NewRaft(c, fsm, ldb, sdb, fss, tm.Transport())
if err != nil {
return nil, nil, errors.WithStack(err)
}
if bootstrap {
f := r.BootstrapCluster(cfg)
if err := f.Error(); err != nil {
return nil, nil, errors.WithStack(err)
}
}
return r, tm, nil
}