forked from tsuna/gohbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mockrc_test.go
265 lines (245 loc) · 7.63 KB
/
mockrc_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
// Copyright (C) 2016 The GoHBase Authors. All rights reserved.
// This file is part of GoHBase.
// Use of this source code is governed by the Apache License 2.0
// that can be found in the COPYING file.
package gohbase
import (
"bytes"
"context"
"fmt"
"net"
"sync"
"sync/atomic"
"time"
"github.com/tsuna/gohbase/compression"
"github.com/tsuna/gohbase/hrpc"
"github.com/tsuna/gohbase/pb"
"github.com/tsuna/gohbase/region"
"google.golang.org/protobuf/proto"
)
type testClient struct {
addr string
numNSRE int32
}
var nsreRegion = &pb.Result{Cell: []*pb.Cell{
&pb.Cell{
Row: []byte("nsre,,1434573235908.56f833d5569a27c7a43fbf547b4924a4."),
Family: []byte("info"),
Qualifier: []byte("regioninfo"),
Value: []byte("PBUF\b\xc4\xcd\xe9\x99\xe0)\x12\x0f\n\adefault\x12\x04nsre" +
"\x1a\x00\"\x00(\x000\x008\x00"),
},
&pb.Cell{
Row: []byte("nsre,,1434573235908.56f833d5569a27c7a43fbf547b4924a4."),
Family: []byte("info"),
Qualifier: []byte("seqnumDuringOpen"),
Value: []byte("\x00\x00\x00\x00\x00\x00\x00\x02"),
},
&pb.Cell{
Row: []byte("nsre,,1434573235908.56f833d5569a27c7a43fbf547b4924a4."),
Family: []byte("info"),
Qualifier: []byte("server"),
Value: []byte("regionserver:1"),
},
&pb.Cell{
Row: []byte("nsre,,1434573235908.56f833d5569a27c7a43fbf547b4924a4."),
Family: []byte("info"),
Qualifier: []byte("serverstartcode"),
Value: []byte("\x00\x00\x01N\x02\x92R\xb1"),
},
}}
// makeRegionResult returns a region that spans the whole table
// and uses name of the table as the hostname of the regionserver
func makeRegionResult(key []byte) *pb.ScanResponse {
s := bytes.SplitN(key, []byte(","), 2)
fqtable := s[0]
row := append(fqtable, []byte(",,1434573235908.56f833d5569a27c7a43fbf547b4924a4.")...)
t := bytes.SplitN(fqtable, []byte{':'}, 2)
var namespace, table []byte
if len(t) == 2 {
namespace = t[0]
table = t[1]
} else {
namespace = []byte("default")
table = fqtable
}
regionInfo := &pb.RegionInfo{
RegionId: proto.Uint64(1434573235908),
TableName: &pb.TableName{
Namespace: namespace,
Qualifier: table,
},
Offline: proto.Bool(false),
}
regionInfoValue, err := proto.Marshal(regionInfo)
if err != nil {
panic(err)
}
regionInfoValue = append([]byte("PBUF"), regionInfoValue...)
return &pb.ScanResponse{Results: []*pb.Result{
&pb.Result{Cell: []*pb.Cell{
&pb.Cell{
Row: row,
Family: []byte("info"),
Qualifier: []byte("regioninfo"),
Value: regionInfoValue,
},
&pb.Cell{
Row: row,
Family: []byte("info"),
Qualifier: []byte("seqnumDuringOpen"),
Value: []byte("\x00\x00\x00\x00\x00\x00\x00\x02"),
},
&pb.Cell{
Row: row,
Family: []byte("info"),
Qualifier: []byte("server"),
Value: fqtable,
},
&pb.Cell{
Row: row,
Family: []byte("info"),
Qualifier: []byte("serverstartcode"),
Value: []byte("\x00\x00\x01N\x02\x92R\xb1"),
},
}}}}
}
var metaRow = &pb.Result{Cell: []*pb.Cell{
&pb.Cell{
Row: []byte("test,,1434573235908.56f833d5569a27c7a43fbf547b4924a4."),
Family: []byte("info"),
Qualifier: []byte("regioninfo"),
Value: []byte("PBUF\b\xc4\xcd\xe9\x99\xe0)\x12\x0f\n\adefault\x12\x04test" +
"\x1a\x00\"\x00(\x000\x008\x00"),
},
&pb.Cell{
Row: []byte("test,,1434573235908.56f833d5569a27c7a43fbf547b4924a4."),
Family: []byte("info"),
Qualifier: []byte("seqnumDuringOpen"),
Value: []byte("\x00\x00\x00\x00\x00\x00\x00\x02"),
},
&pb.Cell{
Row: []byte("test,,1434573235908.56f833d5569a27c7a43fbf547b4924a4."),
Family: []byte("info"),
Qualifier: []byte("server"),
Value: []byte("regionserver:2"),
},
&pb.Cell{
Row: []byte("test,,1434573235908.56f833d5569a27c7a43fbf547b4924a4."),
Family: []byte("info"),
Qualifier: []byte("serverstartcode"),
Value: []byte("\x00\x00\x01N\x02\x92R\xb1"),
},
}}
var test1SplitA = &pb.Result{Cell: []*pb.Cell{
&pb.Cell{
Row: []byte("test1,,1480547738107.825c5c7e480c76b73d6d2bad5d3f7bb8."),
Family: []byte("info"),
Qualifier: []byte("regioninfo"),
Value: []byte("PBUF\b\xfbÖ\xbc\x8b+\x12\x10\n\adefault\x12\x05" +
"test1\x1a\x00\"\x03baz(\x000\x008\x00"),
},
&pb.Cell{
Row: []byte("test1,,1480547738107.825c5c7e480c76b73d6d2bad5d3f7bb8."),
Family: []byte("info"),
Qualifier: []byte("seqnumDuringOpen"),
Value: []byte("\x00\x00\x00\x00\x00\x00\x00\v"),
},
&pb.Cell{
Row: []byte("test1,,1480547738107.825c5c7e480c76b73d6d2bad5d3f7bb8."),
Family: []byte("info"),
Qualifier: []byte("server"),
Value: []byte("regionserver:1"),
},
&pb.Cell{
Row: []byte("test1,,1480547738107.825c5c7e480c76b73d6d2bad5d3f7bb8."),
Family: []byte("info"),
Qualifier: []byte("serverstartcode"),
Value: []byte("\x00\x00\x01X\xb6\x83^3"),
},
}}
var m sync.RWMutex
var clients map[string]uint32
func init() {
clients = make(map[string]uint32)
}
func newMockRegionClient(addr string, ctype region.ClientType, queueSize int,
flushInterval time.Duration, effectiveUser string,
readTimeout time.Duration, codec compression.Codec,
dialer func(ctx context.Context, network, addr string) (net.Conn, error)) hrpc.RegionClient {
m.Lock()
clients[addr]++
m.Unlock()
return &testClient{addr: addr}
}
func (c *testClient) Dial(ctx context.Context) error {
return nil
}
func (c *testClient) Addr() string {
return c.addr
}
func (c *testClient) String() string {
return fmt.Sprintf("RegionClient{Addr: %s}", c.addr)
}
func (c *testClient) QueueRPC(call hrpc.Call) {
// ignore timed out rpcs to mock the region client
select {
case <-call.Context().Done():
return
default:
}
if !bytes.Equal(call.Table(), []byte("hbase:meta")) {
_, ok := call.(*hrpc.Get)
if !ok || !bytes.HasSuffix(call.Key(), bytes.Repeat([]byte{0}, 17)) {
// not a get and not a region probe
// just return as the mock call should just populate the ResultChan in test
return
}
// region probe, fail for the nsre region 3 times to force retry
if bytes.Equal(call.Table(), []byte("nsre")) {
i := atomic.AddInt32(&c.numNSRE, 1)
if i <= 3 {
call.ResultChan() <- hrpc.RPCResult{Error: region.NotServingRegionError{}}
return
}
}
m.RLock()
i := clients[c.addr]
m.RUnlock()
// if we are connected to this client the first time,
// pretend it's down to fail the probe and start a reconnect
if bytes.Equal(call.Table(), []byte("down")) {
if i <= 1 {
call.ResultChan() <- hrpc.RPCResult{Error: region.ServerError{}}
} else {
// otherwise, the region is fine
call.ResultChan() <- hrpc.RPCResult{}
}
return
}
}
if bytes.HasSuffix(call.Key(), bytes.Repeat([]byte{0}, 17)) {
// meta region probe, return empty to signify that region is online
call.ResultChan() <- hrpc.RPCResult{}
} else if bytes.HasPrefix(call.Key(), []byte("test,")) {
call.ResultChan() <- hrpc.RPCResult{Msg: &pb.ScanResponse{
Results: []*pb.Result{metaRow}}}
} else if bytes.HasPrefix(call.Key(), []byte("test1,,")) {
call.ResultChan() <- hrpc.RPCResult{Msg: &pb.ScanResponse{
Results: []*pb.Result{test1SplitA}}}
} else if bytes.HasPrefix(call.Key(), []byte("nsre,,")) {
call.ResultChan() <- hrpc.RPCResult{Msg: &pb.ScanResponse{
Results: []*pb.Result{nsreRegion}}}
} else if bytes.HasPrefix(call.Key(), []byte("tablenotfound,")) {
call.ResultChan() <- hrpc.RPCResult{Msg: &pb.ScanResponse{
Results: []*pb.Result{},
MoreResults: proto.Bool(false),
}}
} else {
call.ResultChan() <- hrpc.RPCResult{Msg: makeRegionResult(call.Key())}
}
}
func (c *testClient) QueueBatch(ctx context.Context, batch []hrpc.Call) {
// do nothing. Let the test fill in result.
}
func (c *testClient) Close() {}