-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
send_test.go
293 lines (265 loc) · 8.09 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
// Copyright 2015 The Cockroach Authors.
//
// 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 kv
import (
"context"
"net"
"reflect"
"strconv"
"testing"
"time"
"github.com/cockroachdb/cockroach/pkg/roachpb"
"github.com/cockroachdb/cockroach/pkg/rpc"
"github.com/cockroachdb/cockroach/pkg/rpc/nodedialer"
"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/cockroach/pkg/util/tracing"
)
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) RangeFeed(_ *roachpb.RangeFeedRequest, _ roachpb.Internal_RangeFeedServer) 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)()
stopper := stop.NewStopper()
defer stopper.Stop(context.TODO())
clock := hlc.NewClock(hlc.UnixNano, time.Nanosecond)
rpcContext := rpc.NewInsecureTestingContext(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(context.Background(), 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) SendNext(
_ context.Context, _ roachpb.BatchRequest,
) (*roachpb.BatchResponse, error) {
var err error
if f.numSent < f.numErrors {
err = roachpb.NewSendError("test")
}
f.numSent++
return &roachpb.BatchResponse{}, err
}
func (f *firstNErrorTransport) NextInternalClient(
ctx context.Context,
) (context.Context, roachpb.InternalClient, error) {
panic("unimplemented")
}
func (f *firstNErrorTransport) NextReplica() roachpb.ReplicaDescriptor {
return roachpb.ReplicaDescriptor{}
}
func (*firstNErrorTransport) MoveToFront(roachpb.ReplicaDescriptor) {
}
// TestComplexScenarios verifies various complex success/failure scenarios by
// mocking sendOne.
func TestComplexScenarios(t *testing.T) {
defer leaktest.AfterTest(t)()
stopper := stop.NewStopper()
defer stopper.Stop(context.TODO())
clock := hlc.NewClock(hlc.UnixNano, time.Nanosecond)
rpcContext := rpc.NewInsecureTestingContext(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(
context.Background(),
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 helper function sorts healthy
// nodes before unhealthy nodes.
func TestSplitHealthy(t *testing.T) {
defer leaktest.AfterTest(t)()
testData := []struct {
in []batchClient
out []batchClient
nHealthy int
}{
{nil, nil, 0},
{
[]batchClient{
{replica: roachpb.ReplicaDescriptor{NodeID: 1}, healthy: false},
{replica: roachpb.ReplicaDescriptor{NodeID: 2}, healthy: false},
{replica: roachpb.ReplicaDescriptor{NodeID: 3}, healthy: true},
},
[]batchClient{
{replica: roachpb.ReplicaDescriptor{NodeID: 3}, healthy: true},
{replica: roachpb.ReplicaDescriptor{NodeID: 1}, healthy: false},
{replica: roachpb.ReplicaDescriptor{NodeID: 2}, healthy: false},
},
1,
},
{
[]batchClient{
{replica: roachpb.ReplicaDescriptor{NodeID: 1}, healthy: true},
{replica: roachpb.ReplicaDescriptor{NodeID: 2}, healthy: false},
{replica: roachpb.ReplicaDescriptor{NodeID: 3}, healthy: true},
},
[]batchClient{
{replica: roachpb.ReplicaDescriptor{NodeID: 1}, healthy: true},
{replica: roachpb.ReplicaDescriptor{NodeID: 3}, healthy: true},
{replica: roachpb.ReplicaDescriptor{NodeID: 2}, healthy: false},
},
2,
},
{
[]batchClient{
{replica: roachpb.ReplicaDescriptor{NodeID: 1}, healthy: true},
{replica: roachpb.ReplicaDescriptor{NodeID: 2}, healthy: true},
{replica: roachpb.ReplicaDescriptor{NodeID: 3}, healthy: true},
},
[]batchClient{
{replica: roachpb.ReplicaDescriptor{NodeID: 1}, healthy: true},
{replica: roachpb.ReplicaDescriptor{NodeID: 2}, healthy: true},
{replica: roachpb.ReplicaDescriptor{NodeID: 3}, healthy: true},
},
3,
},
}
for i, td := range testData {
nHealthy := splitHealthy(td.in)
if nHealthy != td.nHealthy {
t.Errorf("%d. splitHealthy(%+v) = %d; not %d", i, td.in, nHealthy, td.nHealthy)
}
if !reflect.DeepEqual(td.in, td.out) {
t.Errorf("%d. splitHealthy(...)\n = %+v;\nnot %+v", i, td.in, td.out)
}
}
}
func makeReplicas(addrs ...net.Addr) ReplicaSlice {
replicas := make(ReplicaSlice, len(addrs))
for i, addr := range addrs {
replicas[i].NodeDesc = &roachpb.NodeDescriptor{
Address: util.MakeUnresolvedAddr(addr.Network(), addr.String()),
}
}
return replicas
}
// sendBatch sends Batch requests to specified addresses using send.
func sendBatch(
ctx context.Context,
transportFactory TransportFactory,
addrs []net.Addr,
rpcContext *rpc.Context,
nodeDialer *nodedialer.Dialer,
) (*roachpb.BatchResponse, error) {
ds := NewDistSender(DistSenderConfig{
AmbientCtx: log.AmbientContext{Tracer: tracing.NewTracer()},
RPCContext: rpcContext,
TestingKnobs: ClientTestingKnobs{
TransportFactory: transportFactory,
},
}, nil)
return ds.sendToReplicas(
ctx,
roachpb.BatchRequest{},
SendOptions{metrics: &ds.metrics},
0, /* rangeID */
makeReplicas(addrs...),
nodeDialer,
roachpb.ReplicaDescriptor{},
false, /* withCommit */
)
}