-
Notifications
You must be signed in to change notification settings - Fork 351
/
iterators.go
499 lines (454 loc) · 16 KB
/
iterators.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
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
package kvtest
import (
"context"
"errors"
"sync/atomic"
"testing"
"github.com/go-test/deep"
"github.com/treeverse/lakefs/pkg/graveler"
"github.com/treeverse/lakefs/pkg/kv"
)
const (
firstPartitionKey = "m"
secondPartitionKey = "ma"
)
type StoreWithCounter struct {
kv.Store
ScanCalls int64
}
// MaxPageSize is the maximum page size for pagination tests
const MaxPageSize = 10
func NewStoreWithCounter(store kv.Store) *StoreWithCounter {
return &StoreWithCounter{Store: store}
}
func (swc *StoreWithCounter) Scan(ctx context.Context, partitionKey []byte, options kv.ScanOptions) (kv.EntriesIterator, error) {
atomic.AddInt64(&swc.ScanCalls, 1)
return swc.Store.Scan(ctx, partitionKey, options)
}
func testPartitionIterator(t *testing.T, ms MakeStore) {
ctx := context.Background()
store := ms(t, ctx)
// prepare data
modelNames := []string{"a", "aa", "b", "c", "d"}
for _, name := range modelNames {
model := TestModel{Name: []byte(name)}
for _, partitionKey := range []string{firstPartitionKey, secondPartitionKey} {
err := kv.SetMsg(ctx, store, partitionKey, model.Name, &model)
if err != nil {
t.Fatalf("failed to set model (partition %s, name %s): %s", partitionKey, name, err)
}
}
}
t.Run("listing all values of partition", testPartitionIteratorListAll(ctx, store))
t.Run("listing values SeekGE", listPartitionIteratorWithSeekGE(ctx, store))
t.Run("count scans on successive SeekGE operations", testPartitionIteratorCountScansOnSeekGE(store, ctx))
t.Run("failed SeekGE partition not found", testPartitionIteratorSeekGEOnPartitionNotFound(ctx, store))
t.Run("SeekGE past end", testPartitionIteratorSeekGEPastEnd(ctx, store))
t.Run("SeekGE seek back", testPartitionIteratorSeekGESeekBack(ctx, store))
t.Run("listing values SeekGE after pagination", testPartitionIteratorSeekGEWithPagination(ctx, store))
}
func testPartitionIteratorSeekGEWithPagination(ctx context.Context, store kv.Store) func(t *testing.T) {
return func(t *testing.T) {
// load much more data
moreModelNames := []string{
"da", "db", "dc", "dd", "de", "df", "dg", "dh", "di", "dj",
"dk", "dl", "dm", "dn", "do", "dp", "dq", "dr", "ds", "dt",
"du", "dv", "dw", "dx", "dy", "dz",
"z",
}
for _, name := range moreModelNames {
model := TestModel{Name: []byte(name)}
for _, partitionKey := range []string{firstPartitionKey, secondPartitionKey} {
err := kv.SetMsg(ctx, store, partitionKey, model.Name, &model)
if err != nil {
t.Fatalf("failed to set model (partition %s, name %s): %s", partitionKey, name, err)
}
}
}
itr := kv.NewPartitionIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(), secondPartitionKey, 0)
if itr == nil {
t.Fatalf("failed to create partition iterator")
}
defer itr.Close()
if !itr.Next() {
t.Fatal("expected Next to be true")
}
itr.SeekGE([]byte("b"))
for i := 0; i < MaxPageSize+1; i++ {
// force pagination
if !itr.Next() {
t.Fatal("expected Next to be true")
}
}
itr.SeekGE([]byte("z"))
if !itr.Next() {
t.Fatal("expected Next to be true")
}
itr.SeekGE([]byte("d1"))
names := scanPartitionIterator(t, itr, func(_ []byte, model *TestModel) string { return string(model.Name) })
if diffs := deep.Equal(names, moreModelNames); diffs != nil {
t.Fatalf("got wrong list of names: %v", diffs)
}
}
}
func testPartitionIteratorSeekGESeekBack(ctx context.Context, store kv.Store) func(t *testing.T) {
return func(t *testing.T) {
itr := kv.NewPartitionIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(), firstPartitionKey, 0)
if itr == nil {
t.Fatalf("failed to create partition iterator")
}
defer itr.Close()
itr.SeekGE([]byte("z"))
if itr.Next() {
t.Fatal("expected Next to be false")
}
if err := itr.Err(); err != nil {
t.Fatalf("unexpected error: %s", err)
}
itr.SeekGE([]byte("a"))
if !itr.Next() {
t.Fatalf("expected Next to be true")
}
if err := itr.Err(); err != nil {
t.Fatalf("unexpected error: %s", err)
}
e := itr.Entry()
model := e.Value.(*TestModel)
if string(model.Name) != "a" {
t.Fatalf("expected value a from iterator")
}
}
}
func testPartitionIteratorSeekGEPastEnd(ctx context.Context, store kv.Store) func(t *testing.T) {
return func(t *testing.T) {
itr := kv.NewPartitionIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(), firstPartitionKey, 0)
if itr == nil {
t.Fatalf("failed to create partition iterator")
}
defer itr.Close()
itr.SeekGE([]byte("b"))
if !itr.Next() {
t.Fatal("expected Next to be true")
}
e := itr.Entry()
model := e.Value.(*TestModel)
if string(model.Name) != "b" {
t.Fatalf("expected value b from iterator")
}
itr.SeekGE(graveler.UpperBoundForPrefix([]byte("d1")))
if itr.Next() {
t.Fatalf("expected Next to be false")
}
if err := itr.Err(); err != nil {
t.Fatalf("unexpected error: %v", err)
}
}
}
func testPartitionIteratorSeekGEOnPartitionNotFound(ctx context.Context, store kv.Store) func(t *testing.T) {
return func(t *testing.T) {
itr := kv.NewPartitionIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(), "", 0)
if itr == nil {
t.Fatalf("failed to create partition iterator")
}
defer itr.Close()
itr.SeekGE([]byte("d"))
if itr.Next() {
t.Fatalf("next after seekGE expected to be false")
}
itr.SeekGE([]byte("d"))
if itr.Next() {
t.Fatalf("next after seekGE expected to be false")
}
if err := itr.Err(); !errors.Is(err, kv.ErrMissingPartitionKey) {
t.Fatalf("expected error: %s, got %v", kv.ErrMissingPartitionKey, err)
}
}
}
func testPartitionIteratorCountScansOnSeekGE(store kv.Store, ctx context.Context) func(t *testing.T) {
return func(t *testing.T) {
store := NewStoreWithCounter(store)
itr := kv.NewPartitionIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(), secondPartitionKey, 0)
if itr == nil {
t.Fatalf("failed to create partition iterator")
}
defer itr.Close()
for _, seekValue := range []string{"b", "c", "d"} {
itr.SeekGE([]byte(seekValue))
if !itr.Next() {
t.Fatalf("Expected iterator to have a value")
}
if err := itr.Err(); err != nil {
t.Fatalf("unexpected error: %v", err)
}
k := itr.Entry().Key
if string(k) != seekValue {
t.Fatalf("Expected to find value %s. Found %s", seekValue, k)
}
}
scanCalls := atomic.LoadInt64(&store.ScanCalls)
if scanCalls != 1 {
t.Fatalf("Expected exactly 1 call to Scan. got: %d", scanCalls)
}
}
}
func listPartitionIteratorWithSeekGE(ctx context.Context, store kv.Store) func(t *testing.T) {
return func(t *testing.T) {
itr := kv.NewPartitionIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(), secondPartitionKey, 0)
if itr == nil {
t.Fatalf("failed to create partition iterator")
}
defer itr.Close()
for _, seekValue := range []string{"b", "aaa", "b"} {
itr.SeekGE([]byte(seekValue))
names := scanPartitionIterator(t, itr, func(_ []byte, model *TestModel) string { return string(model.Name) })
if diffs := deep.Equal(names, []string{"b", "c", "d"}); diffs != nil {
t.Fatalf("got wrong list of names: %v", diffs)
}
}
}
}
func testPartitionIteratorListAll(ctx context.Context, store kv.Store) func(t *testing.T) {
return func(t *testing.T) {
itr := kv.NewPartitionIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(), firstPartitionKey, 0)
if itr == nil {
t.Fatalf("failed to create partition iterator")
}
defer itr.Close()
names := scanPartitionIterator(t, itr, func(_ []byte, model *TestModel) string { return string(model.Name) })
if diffs := deep.Equal(names, []string{"a", "aa", "b", "c", "d"}); diffs != nil {
t.Fatalf("got wrong list of names: %v", diffs)
}
}
}
// scanPartitionIterator scans the iterator and returns a slice of the results of applying fn to each model.
// slice element type is based on the callback 'fn' function return type.
func scanPartitionIterator[E any](t *testing.T, itr kv.MessageIterator, fn func(key []byte, model *TestModel) E) []E {
t.Helper()
result := make([]E, 0)
for itr.Next() {
e := itr.Entry()
model := e.Value.(*TestModel)
result = append(result, fn(e.Key, model))
}
if err := itr.Err(); err != nil {
t.Fatalf("While scan partition iterator unexpected error: %v", err)
}
return result
}
func testPrimaryIterator(t *testing.T, ms MakeStore) {
ctx := context.Background()
store := ms(t, ctx)
// prepare data
modelNames := []string{"a", "aa", "b", "c", "d"}
for _, name := range modelNames {
model := TestModel{Name: []byte(name)}
for _, partitionKey := range []string{firstPartitionKey, secondPartitionKey} {
err := kv.SetMsg(ctx, store, partitionKey, model.Name, &model)
if err != nil {
t.Fatalf("failed to set model (partition %s, name %s): %s", partitionKey, name, err)
}
}
}
t.Run("listing all values of partition", func(t *testing.T) {
itr, err := kv.NewPrimaryIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(),
firstPartitionKey, []byte(""), kv.IteratorOptionsFrom([]byte("")))
if err != nil {
t.Fatalf("failed to create primary iterator: %v", err)
}
defer itr.Close()
names := scanPartitionIterator(t, itr, func(_ []byte, model *TestModel) string { return string(model.Name) })
if diffs := deep.Equal(names, []string{"a", "aa", "b", "c", "d"}); diffs != nil {
t.Fatalf("got wrong list of names: %v", diffs)
}
})
t.Run("listing with prefix", func(t *testing.T) {
itr, err := kv.NewPrimaryIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(),
secondPartitionKey, []byte("a"), kv.IteratorOptionsFrom([]byte("")))
if err != nil {
t.Fatalf("failed to create primary iterator: %v", err)
}
defer itr.Close()
names := scanPartitionIterator(t, itr, func(_ []byte, model *TestModel) string { return string(model.Name) })
if diffs := deep.Equal(names, []string{"a", "aa"}); diffs != nil {
t.Fatalf("got wrong list of names: %v", diffs)
}
})
t.Run("listing empty value", func(t *testing.T) {
itr, err := kv.NewPrimaryIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(),
secondPartitionKey, []byte(""), kv.IteratorOptionsAfter([]byte("d")))
if err != nil {
t.Fatalf("failed to create primary iterator: %v", err)
}
defer itr.Close()
if itr.Next() {
t.Fatalf("next should return false")
}
if err := itr.Err(); err != nil {
t.Fatalf("unexpected error: %v", err)
}
})
t.Run("listing from", func(t *testing.T) {
itr, err := kv.NewPrimaryIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(),
firstPartitionKey, []byte(""), kv.IteratorOptionsFrom([]byte("b")))
if err != nil {
t.Fatalf("failed to create primary iterator: %v", err)
}
defer itr.Close()
names := scanPartitionIterator(t, itr, func(_ []byte, model *TestModel) string { return string(model.Name) })
if diffs := deep.Equal(names, []string{"b", "c", "d"}); diffs != nil {
t.Fatalf("got wrong list of names: %v", diffs)
}
})
t.Run("listing after", func(t *testing.T) {
itr, err := kv.NewPrimaryIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(),
firstPartitionKey, []byte(""), kv.IteratorOptionsAfter([]byte("b")))
if err != nil {
t.Fatalf("failed to create primary iterator: %v", err)
}
defer itr.Close()
names := scanPartitionIterator(t, itr, func(_ []byte, model *TestModel) string { return string(model.Name) })
if diffs := deep.Equal(names, []string{"c", "d"}); diffs != nil {
t.Fatalf("got wrong list of names: %v", diffs)
}
})
}
func testSecondaryIterator(t *testing.T, ms MakeStore) {
ctx := context.Background()
store := ms(t, ctx)
// prepare data
m := []TestModel{
{Name: []byte("a"), JustAString: "one"},
{Name: []byte("b"), JustAString: "two"},
{Name: []byte("c"), JustAString: "three"},
{Name: []byte("d"), JustAString: "four"},
{Name: []byte("e"), JustAString: "five"},
}
for i := 0; i < len(m); i++ {
primaryKey := append([]byte("name/"), m[i].Name...)
err := kv.SetMsg(ctx, store, firstPartitionKey, primaryKey, &m[i])
if err != nil {
t.Fatal("failed to set model (primary key)", err)
}
secondaryKey := append([]byte("just_a_string/"), m[i].JustAString...)
err = kv.SetMsg(ctx, store, firstPartitionKey, secondaryKey, &kv.SecondaryIndex{PrimaryKey: primaryKey})
if err != nil {
t.Fatal("failed to set model (secondary key)", err)
}
}
err := kv.SetMsg(ctx, store, secondPartitionKey, []byte("just_a_string/e"), &kv.SecondaryIndex{})
if err != nil {
t.Fatal("failed to set key", err)
}
err = kv.SetMsg(ctx, store, secondPartitionKey, []byte("just_a_string/f"), &kv.SecondaryIndex{PrimaryKey: []byte("name/no-name")})
if err != nil {
t.Fatal("failed to set model", err)
}
t.Run("listing all values of partition", func(t *testing.T) {
itr, err := kv.NewSecondaryIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(),
firstPartitionKey, []byte("just_a_string/"), []byte(""))
if err != nil {
t.Fatalf("failed to create secondary iterator: %v", err)
}
defer itr.Close()
type KeyNameValue struct {
Key []byte
Name []byte
Value string
}
msgs := scanPartitionIterator(t, itr, func(key []byte, model *TestModel) KeyNameValue {
return KeyNameValue{
Key: key,
Name: model.Name,
Value: model.JustAString,
}
})
expectedMsgs := []KeyNameValue{
{Key: []byte("just_a_string/five"), Name: []byte("e"), Value: "five"},
{Key: []byte("just_a_string/four"), Name: []byte("d"), Value: "four"},
{Key: []byte("just_a_string/one"), Name: []byte("a"), Value: "one"},
{Key: []byte("just_a_string/three"), Name: []byte("c"), Value: "three"},
{Key: []byte("just_a_string/two"), Name: []byte("b"), Value: "two"},
}
if diffs := deep.Equal(msgs, expectedMsgs); diffs != nil {
t.Fatalf("Diff expected result: %v", diffs)
}
})
t.Run("listing with prefix", func(t *testing.T) {
itr, err := kv.NewSecondaryIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(),
firstPartitionKey, []byte("just_a_string/f"), []byte(""))
if err != nil {
t.Fatalf("failed to create secondary iterator: %v", err)
}
defer itr.Close()
var msgs []*TestModel
for itr.Next() {
e := itr.Entry()
model := e.Value.(*TestModel)
msgs = append(msgs, model)
}
if err := itr.Err(); err != nil {
t.Fatalf("unexpected error: %v", err)
}
expectedMsgs := []*TestModel{
{Name: []byte("e"), JustAString: "five"},
{Name: []byte("d"), JustAString: "four"},
}
if diffs := deep.Equal(msgs, expectedMsgs); diffs != nil {
t.Fatalf("Diff expected result: %v", diffs)
}
})
t.Run("listing after", func(t *testing.T) {
itr, err := kv.NewSecondaryIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(),
firstPartitionKey, []byte("just_a_string/"), []byte("just_a_string/four"))
if err != nil {
t.Fatalf("failed to create secondary iterator: %v", err)
}
defer itr.Close()
var msgs []*TestModel
for itr.Next() {
e := itr.Entry()
model := e.Value.(*TestModel)
msgs = append(msgs, model)
}
if err := itr.Err(); err != nil {
t.Fatalf("unexpected error: %v", err)
}
expectedMsgs := []*TestModel{
{Name: []byte("a"), JustAString: "one"},
{Name: []byte("c"), JustAString: "three"},
{Name: []byte("b"), JustAString: "two"},
}
if diffs := deep.Equal(msgs, expectedMsgs); diffs != nil {
t.Fatalf("Diff expected result: %v", diffs)
}
})
t.Run("key not found", func(t *testing.T) {
itr, err := kv.NewSecondaryIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(),
secondPartitionKey, []byte("just_a_string/e"), []byte(""))
if err != nil {
t.Fatalf("failed to create secondary iterator: %v", err)
}
defer itr.Close()
if itr.Next() {
t.Fatalf("Next() should return false")
}
expectedErr := kv.ErrMissingKey
if err := itr.Err(); !errors.Is(err, expectedErr) {
t.Fatalf("expected error: %s, got %v", expectedErr, err)
}
})
t.Run("value not found", func(t *testing.T) {
itr, err := kv.NewSecondaryIterator(ctx, store, (&TestModel{}).ProtoReflect().Type(),
secondPartitionKey, []byte("just_a_string/f"), []byte(""))
if err != nil {
t.Fatalf("failed to create secondary iterator: %v", err)
}
defer itr.Close()
if itr.Next() {
t.Fatalf("next should return false")
}
if err := itr.Err(); err != nil {
t.Fatalf("unexpected error: %v", err)
}
})
}