-
-
Notifications
You must be signed in to change notification settings - Fork 179
/
scan_test.go
255 lines (235 loc) · 6.28 KB
/
scan_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
package dynamo
import (
"context"
"reflect"
"sync"
"testing"
"time"
)
func TestScan(t *testing.T) {
if testDB == nil {
t.Skip(offlineSkipMsg)
}
table := testDB.Table(testTableWidgets)
ctx := context.TODO()
// first, add an item to make sure there is at least one
item := widget{
UserID: 42,
Time: time.Now().UTC(),
Msg: "hello",
}
err := table.Put(item).Run(ctx)
if err != nil {
t.Error("unexpected error:", err)
}
// count items via Query
ct, err := table.Get("UserID", 42).Consistent(true).Count(ctx)
if err != nil {
t.Error("unexpected error:", err)
}
// now check if get all and count return the same amount of items
t.Run("All", func(t *testing.T) {
var result []widget
var cc ConsumedCapacity
err = table.Scan().Filter("UserID = ?", 42).Consistent(true).ConsumedCapacity(&cc).All(ctx, &result)
if err != nil {
t.Error("unexpected error:", err)
}
if int(ct) != len(result) {
t.Errorf("count and scan don't match. count: %d, scan: %d", ct, len(result))
}
if cc.Total == 0 {
t.Error("bad consumed capacity", cc)
}
// search for our inserted item
found := false
for _, w := range result {
if w.Time.Equal(item.Time) && reflect.DeepEqual(w, item) {
found = true
break
}
}
if !found {
t.Error("exact match of put item not found in scan")
}
})
// check this against Scan's count, too
t.Run("Count", func(t *testing.T) {
var cc2 ConsumedCapacity
scanCt, err := table.Scan().Filter("UserID = ?", 42).Consistent(true).ConsumedCapacity(&cc2).Count(ctx)
if err != nil {
t.Error("unexpected error:", err)
}
if scanCt != ct {
t.Errorf("scan count and get count don't match. scan count: %d, get count: %d", scanCt, ct)
}
if cc2.Total == 0 {
t.Error("bad consumed capacity", cc2)
}
})
t.Run("AllParallel", func(t *testing.T) {
var result2 []widget
var cc3 ConsumedCapacity
err = table.Scan().Filter("UserID = ?", 42).Consistent(true).ConsumedCapacity(&cc3).AllParallel(context.Background(), 4, &result2)
if err != nil {
t.Error("unexpected error:", err)
}
if int(ct) != len(result2) {
t.Errorf("count and scan don't match. count: %d, scan: %d", ct, len(result2))
}
if cc3.Total == 0 {
t.Error("bad consumed capacity", cc3)
}
// search for our inserted item
found := false
for _, w := range result2 {
if w.Time.Equal(item.Time) && reflect.DeepEqual(w, item) {
found = true
break
}
}
if !found {
t.Error("exact match of put item not found in scan")
}
})
}
func TestScanPaging(t *testing.T) {
if testDB == nil {
t.Skip(offlineSkipMsg)
}
table := testDB.Table(testTableWidgets)
ctx := context.TODO()
// prepare data
insert := make([]interface{}, 10)
for i := 0; i < len(insert); i++ {
insert[i] = widget{
UserID: 2068,
Time: time.Date(2068, 1, i+1, 0, 0, 0, 0, time.UTC),
Msg: "garbage",
}
}
if _, err := table.Batch().Write().Put(insert...).Run(ctx); err != nil {
t.Fatal(err)
}
t.Run("synchronous", func(t *testing.T) {
widgets := [10]widget{}
itr := table.Scan().Consistent(true).SearchLimit(1).Iter()
for i := 0; i < len(widgets); i++ {
itr.Next(ctx, &widgets[i])
if itr.Err() != nil {
t.Error("unexpected error", itr.Err())
break
}
lek, err := itr.LastEvaluatedKey(context.Background())
if err != nil {
t.Error("LEK error", err)
}
itr = table.Scan().StartFrom(lek).SearchLimit(1).Iter()
}
for i, w := range widgets {
if w.UserID == 0 && w.Time.IsZero() {
t.Error("scan didn't find item", i, "got:", w)
}
}
})
t.Run("parallel", func(t *testing.T) {
const segments = 2
ctx := context.Background()
widgets := [10]widget{}
limit := int(len(widgets) / segments)
itr := table.Scan().Consistent(true).SearchLimit(limit).IterParallel(ctx, segments)
for i := 0; i < len(widgets); {
for ; i < len(widgets) && itr.Next(ctx, &widgets[i]); i++ {
}
if itr.Err() != nil {
t.Error("unexpected error", itr.Err())
break
}
t.Logf("parallel chunk: %d", i)
lek, err := itr.LastEvaluatedKeys(ctx)
if err != nil {
t.Fatal("lek error", err)
}
itr = table.Scan().SearchLimit(limit).IterParallelStartFrom(ctx, lek)
}
for i, w := range widgets {
if w.UserID == 0 && w.Time.IsZero() {
t.Error("scan didn't find item", i, "got:", w)
}
}
})
}
func TestScanMagicLEK(t *testing.T) {
if testDB == nil {
t.Skip(offlineSkipMsg)
}
testDB0 := *testDB
testDB0.descs = new(sync.Map)
freshTestDB := &testDB0
table := freshTestDB.Table(testTableWidgets)
ctx := context.Background()
widgets := []interface{}{
widget{
UserID: 2069,
Time: time.Date(2069, 4, 00, 0, 0, 0, 0, time.UTC),
Msg: "TestScanMagicLEK",
},
widget{
UserID: 2069,
Time: time.Date(2069, 4, 10, 0, 0, 0, 0, time.UTC),
Msg: "TestScanMagicLEK",
},
widget{
UserID: 2069,
Time: time.Date(2069, 4, 20, 0, 0, 0, 0, time.UTC),
Msg: "TestScanMagicLEK",
},
}
// prepare data
if _, err := table.Batch().Write().Put(widgets...).Run(ctx); err != nil {
t.Fatal(err)
}
t.Run("having to use DescribeTable", func(t *testing.T) {
itr := table.Scan().Filter("'Msg' = ?", "TestScanMagicLEK").Limit(2).Iter()
for i := 0; i < len(widgets); i++ {
var w widget
itr.Next(ctx, &w)
if itr.Err() != nil {
t.Error("unexpected error", itr.Err())
}
lek, err := itr.LastEvaluatedKey(context.Background())
if err != nil {
t.Error("LEK error", err)
}
itr = table.Scan().Filter("'Msg' = ?", "TestScanMagicLEK").StartFrom(lek).Limit(2).Iter()
}
})
t.Run("via index", func(t *testing.T) {
itr := table.Scan().Index("Msg-Time-index").Filter("UserID = ?", 2069).Limit(2).Iter()
for i := 0; i < len(widgets); i++ {
var w widget
itr.Next(ctx, &w)
if itr.Err() != nil {
t.Error("unexpected error", itr.Err())
}
lek, err := itr.LastEvaluatedKey(context.Background())
if err != nil {
t.Error("LEK error", err)
}
itr = table.Scan().Index("Msg-Time-index").Filter("UserID = ?", 2069).StartFrom(lek).Limit(2).Iter()
}
})
t.Run("table cache", func(t *testing.T) {
pk, err := table.primaryKeys(context.Background(), nil, nil, "")
if err != nil {
t.Fatal(err)
}
expect := map[string]struct{}{
"UserID": {},
"Time": {},
}
if !reflect.DeepEqual(pk, expect) {
t.Error("unexpected key cache. want:", expect, "got:", pk)
}
})
}