-
Notifications
You must be signed in to change notification settings - Fork 175
/
prxlsobj_internal_test.go
455 lines (367 loc) · 16.3 KB
/
prxlsobj_internal_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
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
// Package ais provides core functionality for the AIStore object storage.
/*
* Copyright (c) 2018-2024, NVIDIA CORPORATION. All rights reserved.
*/
package ais
import (
"github.com/NVIDIA/aistore/cmn"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
var _ = Describe("ListObjectsCache ListObjectsBuffer", func() {
makeEntries := func(xs ...string) (entries cmn.LsoEntries) {
for _, x := range xs {
entries = append(entries, &cmn.LsoEnt{
Name: x,
})
}
return
}
extractNames := func(entries cmn.LsoEntries) (xs []string) {
for _, entry := range entries {
xs = append(xs, entry.Name)
}
return
}
Describe("ListObjectsCache", func() {
var (
id = cacheReqID{bck: &cmn.Bck{Name: "some_bck"}}
cache *lsobjCaches
)
BeforeEach(func() {
cache = &lsobjCaches{}
})
It("should correctly add entries to cache", func() {
cache.set(id, "", makeEntries("a", "b", "c"), 3)
entries, hasEnough := cache.get(id, "", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c"}))
})
It("should correctly add streaming intervals", func() {
cache.set(id, "", makeEntries("a", "b", "c"), 3)
cache.set(id, "c", makeEntries("d", "e", "f"), 3)
cache.set(id, "f", makeEntries("g", "h", "i"), 3)
entries, hasEnough := cache.get(id, "", 9)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d", "e", "f", "g", "h", "i"}))
})
It("should correctly handle last page", func() {
cache.set(id, "", makeEntries("a", "b", "c"), 3)
cache.set(id, "c", makeEntries("d", "e", "f"), 3)
cache.set(id, "f", makeEntries("g", "h", "i"), 4)
entries, hasEnough := cache.get(id, "", 10)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d", "e", "f", "g", "h", "i"}))
})
It("should correctly handle empty last page", func() {
cache.set(id, "", makeEntries("a", "b", "c"), 3)
cache.set(id, "c", makeEntries("d", "e", "f"), 3)
cache.set(id, "f", cmn.LsoEntries{}, 4)
entries, hasEnough := cache.get(id, "", 10)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d", "e", "f"}))
})
It("should correctly handle overlapping entries", func() {
cache.set(id, "", makeEntries("a", "b", "c"), 3)
cache.set(id, "a", makeEntries("d", "e", "f"), 3)
entries, hasEnough := cache.get(id, "", 4)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "d", "e", "f"}))
})
It("should correctly merge intervals", func() {
cache.set(id, "", makeEntries("a", "b", "c"), 3)
cache.set(id, "g", makeEntries("h", "i", "j"), 3)
_, hasEnough := cache.get(id, "", 3)
Expect(hasEnough).To(BeTrue())
_, hasEnough = cache.get(id, "", 4)
Expect(hasEnough).To(BeFalse())
_, hasEnough = cache.get(id, "g", 2)
Expect(hasEnough).To(BeTrue())
// Add interval in the middle.
cache.set(id, "c", makeEntries("d", "e", "f", "g"), 4)
// Check that now intervals are connected.
entries, hasEnough := cache.get(id, "", 4)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d"}))
entries, hasEnough = cache.get(id, "", 10)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d", "e", "f", "g", "h", "i", "j"}))
})
It("should correctly merge overlapping intervals", func() {
cache.set(id, "", makeEntries("a", "b", "c"), 3)
cache.set(id, "g", makeEntries("h", "i", "j"), 3)
cache.set(id, "a", makeEntries("b", "c", "d", "e", "f", "g", "h", "i"), 8)
entries, hasEnough := cache.get(id, "", 10)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d", "e", "f", "g", "h", "i", "j"}))
})
Describe("prepend", func() {
It("should correctly prepend interval", func() {
cache.set(id, "c", makeEntries("d", "e", "f"), 3)
cache.set(id, "", makeEntries("a", "b", "c"), 3)
entries, hasEnough := cache.get(id, "", 6)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d", "e", "f"}))
})
It("should correctly prepend overlapping intervals", func() {
cache.set(id, "c", makeEntries("d", "e", "f"), 3)
cache.set(id, "", makeEntries("a", "b", "c", "d", "e"), 5)
entries, hasEnough := cache.get(id, "", 6)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d", "e", "f"}))
})
})
It("should discard interval if already exists", func() {
cache.set(id, "", makeEntries("a", "b", "c", "d", "e"), 5)
cache.set(id, "a", makeEntries("b", "c", "d"), 3)
entries, hasEnough := cache.get(id, "", 5)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d", "e"}))
})
It("should discard interval if already exists", func() {
cache.set(id, "", makeEntries("a", "b", "c", "d", "e"), 5)
cache.set(id, "", makeEntries("a", "b"), 2)
entries, hasEnough := cache.get(id, "", 5)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d", "e"}))
})
It("should return empty response if cache is empty", func() {
entries, hasEnough := cache.get(id, "", 0)
Expect(hasEnough).To(BeFalse())
Expect(entries).To(BeNil())
entries, hasEnough = cache.get(id, "", 1)
Expect(hasEnough).To(BeFalse())
Expect(entries).To(BeNil())
entries, hasEnough = cache.get(id, "a", 1)
Expect(hasEnough).To(BeFalse())
Expect(entries).To(BeNil())
})
It("should correctly distinguish between different caches", func() {
otherID := cacheReqID{bck: &cmn.Bck{Name: "something"}}
cache.set(id, "", makeEntries("a", "b", "c"), 3)
entries, hasEnough := cache.get(id, "", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c"}))
// Check if `otherID` cache is empty.
entries, hasEnough = cache.get(otherID, "", 3)
Expect(hasEnough).To(BeFalse())
Expect(entries).To(BeNil())
cache.set(otherID, "", makeEntries("d", "e", "f"), 3)
entries, hasEnough = cache.get(otherID, "", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"d", "e", "f"}))
})
Describe("prefix", func() {
It("should get prefixed entries from `id='bck'` cache", func() {
prefixID := cacheReqID{bck: id.bck, prefix: "p-"}
cache.set(id, "", makeEntries("a", "p-b", "p-c", "p-d", "z"), 5)
entries, hasEnough := cache.get(id, "", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "p-b", "p-c"}))
// Now check that getting for prefix works.
entries, hasEnough = cache.get(prefixID, "", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"p-b", "p-c", "p-d"}))
entries, hasEnough = cache.get(prefixID, "", 2)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"p-b", "p-c"}))
// User requests more than we have but also all the prefixes are
// fully contained in the interval so we are sure that there isn't
// more of them. Therefore, we should return what we have.
entries, hasEnough = cache.get(prefixID, "", 4)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"p-b", "p-c", "p-d"}))
})
It("should get prefixed entries from `id='bck' cache (boundaries)", func() {
cache.set(id, "", makeEntries("b", "d", "y"), 3)
entries, hasEnough := cache.get(id, "", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"b", "d", "y"}))
// Get entries with prefix `y`.
entries, hasEnough = cache.get(cacheReqID{bck: id.bck, prefix: "y"}, "", 1)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"y"}))
_, hasEnough = cache.get(cacheReqID{bck: id.bck, prefix: "y"}, "", 2)
Expect(hasEnough).To(BeFalse())
// Get entries with prefix `b`.
entries, hasEnough = cache.get(cacheReqID{bck: id.bck, prefix: "b"}, "", 1)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"b"}))
entries, hasEnough = cache.get(cacheReqID{bck: id.bck, prefix: "b"}, "", 2)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"b"}))
// Get entries with prefix `a`.
entries, hasEnough = cache.get(cacheReqID{bck: id.bck, prefix: "a"}, "", 1)
Expect(hasEnough).To(BeTrue())
Expect(entries).To(Equal(cmn.LsoEntries{}))
entries, hasEnough = cache.get(cacheReqID{bck: id.bck, prefix: "a"}, "", 2)
Expect(hasEnough).To(BeTrue())
Expect(entries).To(Equal(cmn.LsoEntries{}))
// Make interval "last".
cache.set(id, "y", makeEntries(), 1)
// Get entries with prefix `y`.
entries, hasEnough = cache.get(cacheReqID{bck: id.bck, prefix: "y"}, "", 1)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"y"}))
entries, hasEnough = cache.get(cacheReqID{bck: id.bck, prefix: "y"}, "", 2)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"y"}))
// Get entries with prefix `ya`.
entries, hasEnough = cache.get(cacheReqID{bck: id.bck, prefix: "ya"}, "", 1)
Expect(hasEnough).To(BeTrue())
Expect(entries).To(Equal(cmn.LsoEntries{}))
})
It("should correctly behave in `id='bck'` cache if prefix is contained in interval but there aren't matching entries", func() {
prefixID := cacheReqID{bck: id.bck, prefix: "b-"}
cache.set(id, "", makeEntries("a", "p-b", "p-c", "p-d", "z"), 5)
entries, hasEnough := cache.get(id, "", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "p-b", "p-c"}))
// It should correctly return no entries when prefixes are
// contained in the interval but there is no such entries.
entries, hasEnough = cache.get(prefixID, "", 2)
Expect(hasEnough).To(BeTrue())
Expect(entries).To(Equal(cmn.LsoEntries{}))
entries, hasEnough = cache.get(prefixID, "a", 2)
Expect(hasEnough).To(BeTrue())
Expect(entries).To(Equal(cmn.LsoEntries{}))
})
It("should correctly behave in `id='bck'` cache if prefix is out of the interval", func() {
cache.set(id, "", makeEntries("b", "m", "p", "y"), 4)
entries, hasEnough := cache.get(id, "", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"b", "m", "p"}))
_, hasEnough = cache.get(cacheReqID{bck: id.bck, prefix: "z"}, "", 1)
Expect(hasEnough).To(BeFalse())
})
It("should get prefixed entries from `id='bck prefix'` cache", func() {
prefixID := cacheReqID{bck: id.bck, prefix: "p-"}
cache.set(id, "", makeEntries("p-a", "p-b", "p-c", "p-d", "p-e"), 5)
entries, hasEnough := cache.get(prefixID, "", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"p-a", "p-b", "p-c"}))
// Now check that getting for prefix works.
entries, hasEnough = cache.get(prefixID, "p-b", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"p-c", "p-d", "p-e"}))
_, hasEnough = cache.get(prefixID, "p-b", 4)
Expect(hasEnough).To(BeFalse())
})
It("should fallback to `id='bck'` cache when there is not enough entries in `id='bck prefix'` cache", func() {
prefixID := cacheReqID{bck: id.bck, prefix: "p-"}
cache.set(id, "", makeEntries("a", "p-b", "p-c", "p-d"), 4)
cache.set(prefixID, "", makeEntries("p-b", "p-c"), 2)
entries, hasEnough := cache.get(prefixID, "", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"p-b", "p-c", "p-d"}))
// Insert more into `id="bck prefix"` cache end check that we can get from it.
cache.set(prefixID, "p-c", makeEntries("p-d", "p-f", "p-g"), 3)
entries, hasEnough = cache.get(prefixID, "", 5)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"p-b", "p-c", "p-d", "p-f", "p-g"}))
})
})
})
Describe("ListObjectsBuffer", func() {
var (
id = "some_id"
buffer *lsobjBuffers
)
BeforeEach(func() {
buffer = &lsobjBuffers{}
})
It("should correctly create single buffer", func() {
buffer.set(id, "target1", makeEntries("a", "d", "g"), 3)
buffer.set(id, "target2", makeEntries("b", "c", "h"), 3)
buffer.set(id, "target3", makeEntries("e", "f"), 2)
entries, hasEnough := buffer.get(id, "", 6)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d", "e", "f"}))
// Since `f` is the smallest of the last elements we cannot join:
// `g` and `h` because there might be still some elements after `f`
// in `target3`. Therefore, we should answer "not enough" to next calls.
entries, hasEnough = buffer.get(id, "f", 1)
Expect(hasEnough).To(BeFalse())
Expect(entries).To(BeNil())
})
It("should correctly append new entries", func() {
buffer.set(id, "target1", makeEntries("a", "d", "g"), 3)
buffer.set(id, "target2", makeEntries("b", "c", "h"), 3)
buffer.set(id, "target3", makeEntries("e", "f"), 2)
entries, hasEnough := buffer.get(id, "", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c"}))
entries, hasEnough = buffer.get(id, "c", 4)
Expect(hasEnough).To(BeFalse())
Expect(entries).To(BeNil())
last := buffer.last(id, "c")
// `f` is the smallest of the last elements of all targets, so it
// should be next continuation token.
Expect(last).To(Equal("f"))
// Now we simulate receiving entries after `f` token.
buffer.set(id, "target1", makeEntries("g", "k", "m"), 3)
buffer.set(id, "target2", makeEntries("h", "i", "n"), 3)
buffer.set(id, "target3", makeEntries("j", "l"), 2)
entries, hasEnough = buffer.get(id, "c", 9)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"d", "e", "f", "g", "h", "i", "j", "k", "l"}))
entries, hasEnough = buffer.get(id, "l", 1)
Expect(hasEnough).To(BeFalse())
Expect(entries).To(BeNil())
})
It("should correctly identify no objects", func() {
entries, hasEnough := buffer.get("id", "a", 10)
Expect(hasEnough).To(BeFalse())
Expect(entries).To(BeNil())
entries, hasEnough = buffer.get("id", "a", 10)
Expect(hasEnough).To(BeFalse())
Expect(entries).To(BeNil())
})
It("should correctly handle end of entries", func() {
buffer.set(id, "target1", makeEntries("a", "d", "e"), 4)
buffer.set(id, "target2", makeEntries("b", "c", "f"), 4)
entries, hasEnough := buffer.get(id, "", 7)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b", "c", "d", "e", "f"}))
entries, hasEnough = buffer.get(id, "f", 1)
Expect(hasEnough).To(BeTrue())
Expect(entries).To(HaveLen(0))
})
It("should correctly handle getting 0 entries", func() {
buffer.set(id, "target1", makeEntries(), 2)
buffer.set(id, "target2", makeEntries(), 2)
entries, hasEnough := buffer.get(id, "", 7)
Expect(hasEnough).To(BeTrue())
Expect(entries).To(HaveLen(0))
entries, hasEnough = buffer.get(id, "f", 1)
Expect(hasEnough).To(BeTrue())
Expect(entries).To(HaveLen(0))
})
It("should correctly handle rerequesting the page", func() {
buffer.set(id, "target1", makeEntries("a", "d", "g"), 3)
buffer.set(id, "target2", makeEntries("b", "c", "h"), 3)
buffer.set(id, "target3", makeEntries("e", "f"), 2)
entries, hasEnough := buffer.get(id, "", 2)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"a", "b"}))
entries, hasEnough = buffer.get(id, "b", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"c", "d", "e"}))
// Rerequest the page with token `b`.
_, hasEnough = buffer.get(id, "b", 3)
Expect(hasEnough).To(BeFalse())
// Simulate targets resending data.
buffer.set(id, "target1", makeEntries("d", "g"), 2)
buffer.set(id, "target2", makeEntries("c", "h"), 2)
buffer.set(id, "target3", makeEntries("e", "f"), 2)
entries, hasEnough = buffer.get(id, "b", 3)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"c", "d", "e"}))
entries, hasEnough = buffer.get(id, "e", 1)
Expect(hasEnough).To(BeTrue())
Expect(extractNames(entries)).To(Equal([]string{"f"}))
_, hasEnough = buffer.get(id, "f", 1)
Expect(hasEnough).To(BeFalse())
})
})
})