-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
send_test.go
388 lines (342 loc) · 10.5 KB
/
send_test.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
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
// Copyright 2015 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
package kvcoord
import (
"context"
"net"
"reflect"
"strconv"
"testing"
"time"
"github.com/cockroachdb/cockroach/pkg/gossip"
"github.com/cockroachdb/cockroach/pkg/kv/kvclient/rangecache"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/rpc"
"github.com/cockroachdb/cockroach/pkg/rpc/nodedialer"
"github.com/cockroachdb/cockroach/pkg/settings/cluster"
"github.com/cockroachdb/cockroach/pkg/util"
"github.com/cockroachdb/cockroach/pkg/util/hlc"
"github.com/cockroachdb/cockroach/pkg/util/leaktest"
"github.com/cockroachdb/cockroach/pkg/util/log"
"github.com/cockroachdb/cockroach/pkg/util/netutil"
"github.com/cockroachdb/cockroach/pkg/util/stop"
"github.com/cockroachdb/errors"
"github.com/stretchr/testify/require"
)
var _ roachpb.InternalServer = Node(0)
type Node time.Duration
func (n Node) Batch(
ctx context.Context, args *roachpb.BatchRequest,
) (*roachpb.BatchResponse, error) {
if n > 0 {
time.Sleep(time.Duration(n))
}
return &roachpb.BatchResponse{}, nil
}
func (n Node) RangeLookup(
_ context.Context, _ *roachpb.RangeLookupRequest,
) (*roachpb.RangeLookupResponse, error) {
panic("unimplemented")
}
func (n Node) RangeFeed(_ *roachpb.RangeFeedRequest, _ roachpb.Internal_RangeFeedServer) error {
panic("unimplemented")
}
func (n Node) MuxRangeFeed(server roachpb.Internal_MuxRangeFeedServer) error {
panic("unimplemented")
}
func (n Node) GossipSubscription(
_ *roachpb.GossipSubscriptionRequest, _ roachpb.Internal_GossipSubscriptionServer,
) error {
panic("unimplemented")
}
func (n Node) Join(context.Context, *roachpb.JoinNodeRequest) (*roachpb.JoinNodeResponse, error) {
panic("unimplemented")
}
func (n Node) ResetQuorum(
context.Context, *roachpb.ResetQuorumRequest,
) (*roachpb.ResetQuorumResponse, error) {
panic("unimplemented")
}
func (n Node) TokenBucket(
ctx context.Context, in *roachpb.TokenBucketRequest,
) (*roachpb.TokenBucketResponse, error) {
panic("unimplemented")
}
func (n Node) GetSpanConfigs(
_ context.Context, _ *roachpb.GetSpanConfigsRequest,
) (*roachpb.GetSpanConfigsResponse, error) {
panic("unimplemented")
}
func (n Node) GetAllSystemSpanConfigsThatApply(
_ context.Context, _ *roachpb.GetAllSystemSpanConfigsThatApplyRequest,
) (*roachpb.GetAllSystemSpanConfigsThatApplyResponse, error) {
panic("unimplemented")
}
func (n Node) UpdateSpanConfigs(
_ context.Context, _ *roachpb.UpdateSpanConfigsRequest,
) (*roachpb.UpdateSpanConfigsResponse, error) {
panic("unimplemented")
}
func (n Node) SpanConfigConformance(
context.Context, *roachpb.SpanConfigConformanceRequest,
) (*roachpb.SpanConfigConformanceResponse, error) {
panic("implement me")
}
func (n Node) TenantSettings(
*roachpb.TenantSettingsRequest, roachpb.Internal_TenantSettingsServer,
) error {
panic("unimplemented")
}
// TestSendToOneClient verifies that Send correctly sends a request
// to one server using the heartbeat RPC.
func TestSendToOneClient(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)
ctx := context.Background()
stopper := stop.NewStopper()
defer stopper.Stop(ctx)
clock := hlc.NewClockWithSystemTimeSource(time.Nanosecond /* maxOffset */)
rpcContext := rpc.NewInsecureTestingContext(ctx, clock, stopper)
// This test uses the testing function sendBatch() which does not
// support setting the node ID on GRPCDialNode(). Disable Node ID
// checks to avoid log.Fatal.
rpcContext.TestingAllowNamedRPCToAnonymousServer = true
s := rpc.NewServer(rpcContext)
roachpb.RegisterInternalServer(s, Node(0))
ln, err := netutil.ListenAndServeGRPC(rpcContext.Stopper, s, util.TestAddr)
if err != nil {
t.Fatal(err)
}
nodeDialer := nodedialer.New(rpcContext, func(roachpb.NodeID) (net.Addr, error) {
return ln.Addr(), nil
})
reply, err := sendBatch(ctx, t, nil, []net.Addr{ln.Addr()}, rpcContext, nodeDialer)
if err != nil {
t.Fatal(err)
}
if reply == nil {
t.Errorf("expected reply")
}
}
// firstNErrorTransport is a mock transport that sends an error on
// requests to the first N addresses, then succeeds.
type firstNErrorTransport struct {
replicas ReplicaSlice
numErrors int
numSent int
}
func (f *firstNErrorTransport) IsExhausted() bool {
return f.numSent >= len(f.replicas)
}
func (f *firstNErrorTransport) Release() {}
func (f *firstNErrorTransport) SendNext(
_ context.Context, _ roachpb.BatchRequest,
) (*roachpb.BatchResponse, error) {
var err error
if f.numSent < f.numErrors {
err = errors.New("firstNErrorTransport injected error")
}
f.numSent++
return &roachpb.BatchResponse{}, err
}
func (f *firstNErrorTransport) NextInternalClient(
ctx context.Context,
) (rpc.RestrictedInternalClient, error) {
panic("unimplemented")
}
func (f *firstNErrorTransport) NextReplica() roachpb.ReplicaDescriptor {
return f.replicas[f.numSent].ReplicaDescriptor
}
func (f *firstNErrorTransport) SkipReplica() {
panic("SkipReplica not supported")
}
func (*firstNErrorTransport) MoveToFront(roachpb.ReplicaDescriptor) bool {
return true
}
// TestComplexScenarios verifies various complex success/failure scenarios by
// mocking sendOne.
func TestComplexScenarios(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)
ctx := context.Background()
stopper := stop.NewStopper()
defer stopper.Stop(ctx)
clock := hlc.NewClockWithSystemTimeSource(time.Nanosecond /* maxOffset */)
rpcContext := rpc.NewInsecureTestingContext(ctx, clock, stopper)
// We're going to serve multiple node IDs with that one
// context. Disable node ID checks.
rpcContext.TestingAllowNamedRPCToAnonymousServer = true
nodeDialer := nodedialer.New(rpcContext, nil)
// TODO(bdarnell): the retryable flag is no longer used for RPC errors.
// Rework this test to incorporate application-level errors carried in
// the BatchResponse.
testCases := []struct {
numServers int
numErrors int
success bool
}{
// --- Success scenarios ---
{1, 0, true},
{5, 0, true},
// There are some errors, but enough RPCs succeed.
{5, 1, true},
{5, 4, true},
{5, 2, true},
// --- Failure scenarios ---
// All RPCs fail.
{5, 5, false},
}
for i, test := range testCases {
var serverAddrs []net.Addr
for j := 0; j < test.numServers; j++ {
serverAddrs = append(serverAddrs, util.NewUnresolvedAddr("dummy",
strconv.Itoa(j)))
}
reply, err := sendBatch(
ctx,
t,
func(
_ SendOptions,
_ *nodedialer.Dialer,
replicas ReplicaSlice,
) (Transport, error) {
return &firstNErrorTransport{
replicas: replicas,
numErrors: test.numErrors,
}, nil
},
serverAddrs,
rpcContext,
nodeDialer,
)
if test.success {
if err != nil {
t.Errorf("%d: unexpected error: %s", i, err)
}
if reply == nil {
t.Errorf("%d: expected reply", i)
}
} else {
if err == nil {
t.Errorf("%d: unexpected success", i)
}
}
}
}
// TestSplitHealthy tests that the splitHealthy method sorts healthy nodes
// before unhealthy nodes.
func TestSplitHealthy(t *testing.T) {
defer leaktest.AfterTest(t)()
defer log.Scope(t).Close(t)
type batchClient struct {
replica roachpb.ReplicaDescriptor
healthy bool
}
testData := []struct {
in []batchClient
out []roachpb.ReplicaDescriptor
}{
{nil, []roachpb.ReplicaDescriptor{}},
{
[]batchClient{
{replica: roachpb.ReplicaDescriptor{NodeID: 1}, healthy: false},
{replica: roachpb.ReplicaDescriptor{NodeID: 2}, healthy: false},
{replica: roachpb.ReplicaDescriptor{NodeID: 3}, healthy: true},
},
[]roachpb.ReplicaDescriptor{{NodeID: 3}, {NodeID: 1}, {NodeID: 2}},
},
{
[]batchClient{
{replica: roachpb.ReplicaDescriptor{NodeID: 1}, healthy: true},
{replica: roachpb.ReplicaDescriptor{NodeID: 2}, healthy: false},
{replica: roachpb.ReplicaDescriptor{NodeID: 3}, healthy: true},
},
[]roachpb.ReplicaDescriptor{{NodeID: 1}, {NodeID: 3}, {NodeID: 2}},
},
{
[]batchClient{
{replica: roachpb.ReplicaDescriptor{NodeID: 1}, healthy: true},
{replica: roachpb.ReplicaDescriptor{NodeID: 2}, healthy: true},
{replica: roachpb.ReplicaDescriptor{NodeID: 3}, healthy: true},
},
[]roachpb.ReplicaDescriptor{{NodeID: 1}, {NodeID: 2}, {NodeID: 3}},
},
}
for _, td := range testData {
t.Run("", func(t *testing.T) {
replicas := make([]roachpb.ReplicaDescriptor, len(td.in))
var health util.FastIntMap
for i, r := range td.in {
replicas[i] = r.replica
if r.healthy {
health.Set(i, healthHealthy)
} else {
health.Set(i, healthUnhealthy)
}
}
gt := grpcTransport{
replicas: replicas,
replicaHealth: health,
}
gt.splitHealthy()
if !reflect.DeepEqual(gt.replicas, td.out) {
t.Errorf("splitHealthy(...) = %+v not %+v", replicas, td.out)
}
})
}
}
// sendBatch sends Batch requests to specified addresses using send.
func sendBatch(
ctx context.Context,
t *testing.T,
transportFactory TransportFactory,
addrs []net.Addr,
rpcContext *rpc.Context,
nodeDialer *nodedialer.Dialer,
) (*roachpb.BatchResponse, error) {
stopper := stop.NewStopper()
defer stopper.Stop(ctx)
g := makeGossip(t, stopper, rpcContext)
desc := new(roachpb.RangeDescriptor)
desc.StartKey = roachpb.RKeyMin
desc.EndKey = roachpb.RKeyMax
for i, addr := range addrs {
nd := &roachpb.NodeDescriptor{
NodeID: roachpb.NodeID(i + 1),
Address: util.MakeUnresolvedAddr(addr.Network(), addr.String()),
}
err := g.AddInfoProto(gossip.MakeNodeIDKey(nd.NodeID), nd, gossip.NodeDescriptorTTL)
require.NoError(t, err)
desc.InternalReplicas = append(desc.InternalReplicas,
roachpb.ReplicaDescriptor{
NodeID: nd.NodeID,
StoreID: 0,
ReplicaID: roachpb.ReplicaID(i + 1),
})
}
ds := NewDistSender(DistSenderConfig{
AmbientCtx: log.MakeTestingAmbientCtxWithNewTracer(),
Settings: cluster.MakeTestingClusterSettings(),
NodeDescs: g,
RPCContext: rpcContext,
NodeDialer: nodeDialer,
FirstRangeProvider: g,
TestingKnobs: ClientTestingKnobs{
TransportFactory: transportFactory,
},
})
ds.rangeCache.Insert(ctx, roachpb.RangeInfo{
Desc: *desc,
Lease: roachpb.Lease{},
})
routing, err := ds.getRoutingInfo(ctx, desc.StartKey, rangecache.EvictionToken{}, false /* useReverseScan */)
require.NoError(t, err)
return ds.sendToReplicas(ctx, roachpb.BatchRequest{}, routing, false /* withCommit */)
}