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
|
// Copyright 2018 The gVisor 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 buffer_test contains tests for the VectorisedView type.
package buffer
import (
"reflect"
"testing"
)
// copy returns a deep-copy of the vectorised view.
func (vv VectorisedView) copy() VectorisedView {
uu := VectorisedView{
views: make([]View, 0, len(vv.views)),
size: vv.size,
}
for _, v := range vv.views {
uu.views = append(uu.views, append(View(nil), v...))
}
return uu
}
// vv is an helper to build VectorisedView from different strings.
func vv(size int, pieces ...string) VectorisedView {
views := make([]View, len(pieces))
for i, p := range pieces {
views[i] = []byte(p)
}
return NewVectorisedView(size, views)
}
var capLengthTestCases = []struct {
comment string
in VectorisedView
length int
want VectorisedView
}{
{
comment: "Simple case",
in: vv(2, "12"),
length: 1,
want: vv(1, "1"),
},
{
comment: "Case spanning across two Views",
in: vv(4, "123", "4"),
length: 2,
want: vv(2, "12"),
},
{
comment: "Corner case with negative length",
in: vv(1, "1"),
length: -1,
want: vv(0),
},
{
comment: "Corner case with length = 0",
in: vv(3, "12", "3"),
length: 0,
want: vv(0),
},
{
comment: "Corner case with length = size",
in: vv(1, "1"),
length: 1,
want: vv(1, "1"),
},
{
comment: "Corner case with length > size",
in: vv(1, "1"),
length: 2,
want: vv(1, "1"),
},
}
func TestCapLength(t *testing.T) {
for _, c := range capLengthTestCases {
orig := c.in.copy()
c.in.CapLength(c.length)
if !reflect.DeepEqual(c.in, c.want) {
t.Errorf("Test \"%s\" failed when calling CapLength(%d) on %v. Got %v. Want %v",
c.comment, c.length, orig, c.in, c.want)
}
}
}
var trimFrontTestCases = []struct {
comment string
in VectorisedView
count int
want VectorisedView
}{
{
comment: "Simple case",
in: vv(2, "12"),
count: 1,
want: vv(1, "2"),
},
{
comment: "Case where we trim an entire View",
in: vv(2, "1", "2"),
count: 1,
want: vv(1, "2"),
},
{
comment: "Case spanning across two Views",
in: vv(3, "1", "23"),
count: 2,
want: vv(1, "3"),
},
{
comment: "Corner case with negative count",
in: vv(1, "1"),
count: -1,
want: vv(1, "1"),
},
{
comment: " Corner case with count = 0",
in: vv(1, "1"),
count: 0,
want: vv(1, "1"),
},
{
comment: "Corner case with count = size",
in: vv(1, "1"),
count: 1,
want: vv(0),
},
{
comment: "Corner case with count > size",
in: vv(1, "1"),
count: 2,
want: vv(0),
},
}
func TestTrimFront(t *testing.T) {
for _, c := range trimFrontTestCases {
orig := c.in.copy()
c.in.TrimFront(c.count)
if !reflect.DeepEqual(c.in, c.want) {
t.Errorf("Test \"%s\" failed when calling TrimFront(%d) on %v. Got %v. Want %v",
c.comment, c.count, orig, c.in, c.want)
}
}
}
var toViewCases = []struct {
comment string
in VectorisedView
want View
}{
{
comment: "Simple case",
in: vv(2, "12"),
want: []byte("12"),
},
{
comment: "Case with multiple views",
in: vv(2, "1", "2"),
want: []byte("12"),
},
{
comment: "Empty case",
in: vv(0),
want: []byte(""),
},
}
func TestToView(t *testing.T) {
for _, c := range toViewCases {
got := c.in.ToView()
if !reflect.DeepEqual(got, c.want) {
t.Errorf("Test \"%s\" failed when calling ToView() on %v. Got %v. Want %v",
c.comment, c.in, got, c.want)
}
}
}
var toCloneCases = []struct {
comment string
inView VectorisedView
inBuffer []View
}{
{
comment: "Simple case",
inView: vv(1, "1"),
inBuffer: make([]View, 1),
},
{
comment: "Case with multiple views",
inView: vv(2, "1", "2"),
inBuffer: make([]View, 2),
},
{
comment: "Case with buffer too small",
inView: vv(2, "1", "2"),
inBuffer: make([]View, 1),
},
{
comment: "Case with buffer larger than needed",
inView: vv(1, "1"),
inBuffer: make([]View, 2),
},
{
comment: "Case with nil buffer",
inView: vv(1, "1"),
inBuffer: nil,
},
}
func TestToClone(t *testing.T) {
for _, c := range toCloneCases {
t.Run(c.comment, func(t *testing.T) {
got := c.inView.Clone(c.inBuffer)
if !reflect.DeepEqual(got, c.inView) {
t.Fatalf("got (%+v).Clone(%+v) = %+v, want = %+v",
c.inView, c.inBuffer, got, c.inView)
}
})
}
}
func TestVVReadToVV(t *testing.T) {
testCases := []struct {
comment string
vv VectorisedView
bytesToRead int
wantBytes string
leftVV VectorisedView
}{
{
comment: "large VV, short read",
vv: vv(30, "012345678901234567890123456789"),
bytesToRead: 10,
wantBytes: "0123456789",
leftVV: vv(20, "01234567890123456789"),
},
{
comment: "largeVV, multiple views, short read",
vv: vv(13, "123", "345", "567", "8910"),
bytesToRead: 6,
wantBytes: "123345",
leftVV: vv(7, "567", "8910"),
},
{
comment: "smallVV (multiple views), large read",
vv: vv(3, "1", "2", "3"),
bytesToRead: 10,
wantBytes: "123",
leftVV: vv(0, ""),
},
{
comment: "smallVV (single view), large read",
vv: vv(1, "1"),
bytesToRead: 10,
wantBytes: "1",
leftVV: vv(0, ""),
},
{
comment: "emptyVV, large read",
vv: vv(0, ""),
bytesToRead: 10,
wantBytes: "",
leftVV: vv(0, ""),
},
}
for _, tc := range testCases {
t.Run(tc.comment, func(t *testing.T) {
var readTo VectorisedView
inSize := tc.vv.Size()
copied := tc.vv.ReadToVV(&readTo, tc.bytesToRead)
if got, want := copied, len(tc.wantBytes); got != want {
t.Errorf("incorrect number of bytes copied returned in ReadToVV got: %d, want: %d, tc: %+v", got, want, tc)
}
if got, want := string(readTo.ToView()), tc.wantBytes; got != want {
t.Errorf("unexpected content in readTo got: %s, want: %s", got, want)
}
if got, want := tc.vv.Size(), inSize-copied; got != want {
t.Errorf("test VV has incorrect size after reading got: %d, want: %d, tc.vv: %+v", got, want, tc.vv)
}
if got, want := string(tc.vv.ToView()), string(tc.leftVV.ToView()); got != want {
t.Errorf("unexpected data left in vv after read got: %+v, want: %+v", got, want)
}
})
}
}
func TestVVRead(t *testing.T) {
testCases := []struct {
comment string
vv VectorisedView
bytesToRead int
readBytes string
leftBytes string
wantError bool
}{
{
comment: "large VV, short read",
vv: vv(30, "012345678901234567890123456789"),
bytesToRead: 10,
readBytes: "0123456789",
leftBytes: "01234567890123456789",
},
{
comment: "largeVV, multiple buffers, short read",
vv: vv(13, "123", "345", "567", "8910"),
bytesToRead: 6,
readBytes: "123345",
leftBytes: "5678910",
},
{
comment: "smallVV, large read",
vv: vv(3, "1", "2", "3"),
bytesToRead: 10,
readBytes: "123",
leftBytes: "",
},
{
comment: "smallVV, large read",
vv: vv(1, "1"),
bytesToRead: 10,
readBytes: "1",
leftBytes: "",
},
{
comment: "emptyVV, large read",
vv: vv(0, ""),
bytesToRead: 10,
readBytes: "",
wantError: true,
},
}
for _, tc := range testCases {
t.Run(tc.comment, func(t *testing.T) {
readTo := NewView(tc.bytesToRead)
inSize := tc.vv.Size()
copied, err := tc.vv.Read(readTo)
if !tc.wantError && err != nil {
t.Fatalf("unexpected error in tc.vv.Read(..) = %s", err)
}
readTo = readTo[:copied]
if got, want := copied, len(tc.readBytes); got != want {
t.Errorf("incorrect number of bytes copied returned in ReadToVV got: %d, want: %d, tc.vv: %+v", got, want, tc.vv)
}
if got, want := string(readTo), tc.readBytes; got != want {
t.Errorf("unexpected data in readTo got: %s, want: %s", got, want)
}
if got, want := tc.vv.Size(), inSize-copied; got != want {
t.Errorf("test VV has incorrect size after reading got: %d, want: %d, tc.vv: %+v", got, want, tc.vv)
}
if got, want := string(tc.vv.ToView()), tc.leftBytes; got != want {
t.Errorf("vv has incorrect data after Read got: %s, want: %s", got, want)
}
})
}
}
|