-
Notifications
You must be signed in to change notification settings - Fork 0
/
sort_test.go
261 lines (226 loc) · 7.15 KB
/
sort_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
// Copyright 2019 Tim Shannon. All rights reserved.
// Use of this source code is governed by the MIT license
// that can be found in the LICENSE file.
package badgerhold_test
import (
"fmt"
"testing"
badgerhold "github.com/inits/badgerholdv2"
)
var sortTests = []test{
{
name: "Sort By Name",
query: badgerhold.Where("Category").Eq("animal").SortBy("Name"),
result: []int{9, 5, 14, 8, 13, 2, 16},
},
{
name: "Sort By Name Reversed",
query: badgerhold.Where("Category").Eq("animal").SortBy("Name").Reverse(),
result: []int{16, 2, 13, 8, 14, 5, 9},
},
{
name: "Sort By Multiple Fields",
query: badgerhold.Where("ID").In(8, 3, 13).SortBy("Category", "Name"),
result: []int{13, 15, 4, 3},
},
{
name: "Sort By Multiple Fields Reversed",
query: badgerhold.Where("ID").In(8, 3, 13).SortBy("Category", "Name").Reverse(),
result: []int{3, 4, 15, 13},
},
{
name: "Sort By Duplicate Field Names",
query: badgerhold.Where("ID").In(8, 3, 13).SortBy("Category", "Name", "Category"),
result: []int{13, 15, 4, 3},
},
{
name: "Sort By Name with limit",
query: badgerhold.Where("Category").Eq("animal").SortBy("Name").Limit(3),
result: []int{9, 5, 14},
},
{
name: "Sort By Name with skip",
query: badgerhold.Where("Category").Eq("animal").SortBy("Name").Skip(3),
result: []int{8, 13, 2, 16},
},
{
name: "Sort By Name with skip and limit",
query: badgerhold.Where("Category").Eq("animal").SortBy("Name").Skip(2).Limit(3),
result: []int{14, 8, 13},
},
{
name: "Sort By Name Reversed with limit",
query: badgerhold.Where("Category").Eq("animal").SortBy("Name").Skip(2).Limit(3),
result: []int{14, 8, 13},
},
{
name: "Sort By Name Reversed with skip",
query: badgerhold.Where("Category").Eq("animal").SortBy("Name").Skip(4),
result: []int{13, 2, 16},
},
{
name: "Sort By Name Reversed with skip and limit",
query: badgerhold.Where("Category").Eq("animal").SortBy("Name").Skip(2).Limit(3),
result: []int{14, 8, 13},
},
{
name: "Sort By Name with skip greater than length",
query: badgerhold.Where("Category").Eq("animal").SortBy("Name").Skip(10),
result: []int{},
},
}
func TestSortedFind(t *testing.T) {
testWrap(t, func(store *badgerhold.Store, t *testing.T) {
insertTestData(t, store)
for _, tst := range sortTests {
t.Run(tst.name, func(t *testing.T) {
var result []ItemTest
err := store.Find(&result, tst.query)
if err != nil {
t.Fatalf("Error finding sort data from badgerhold: %s", err)
}
if len(result) != len(tst.result) {
if testing.Verbose() {
t.Fatalf("Sorted Find result count is %d wanted %d. Results: %v", len(result),
len(tst.result), result)
}
t.Fatalf("Sorted Find result count is %d wanted %d.", len(result), len(tst.result))
}
for i := range result {
if !result[i].equal(&testData[tst.result[i]]) {
if testing.Verbose() {
t.Fatalf("Expected index %d to be %v, Got %v Results: %v", i, &testData[tst.result[i]],
result[i], result)
}
t.Fatalf("Expected index %d to be %v, Got %v", i, &testData[tst.result[i]], result[i])
}
}
})
}
})
}
func TestSortedUpdateMatching(t *testing.T) {
for _, tst := range sortTests {
t.Run(tst.name, func(t *testing.T) {
testWrap(t, func(store *badgerhold.Store, t *testing.T) {
insertTestData(t, store)
err := store.UpdateMatching(&ItemTest{}, tst.query, func(record interface{}) error {
update, ok := record.(*ItemTest)
if !ok {
return fmt.Errorf("Record isn't the correct type! Wanted Itemtest, got %T", record)
}
update.UpdateField = "updated"
update.UpdateIndex = "updated index"
return nil
})
if err != nil {
t.Fatalf("Error updating data from badgerhold: %s", err)
}
var result []ItemTest
err = store.Find(&result, badgerhold.Where("UpdateIndex").Eq("updated index").And("UpdateField").Eq("updated"))
if err != nil {
t.Fatalf("Error finding result after update from badgerhold: %s", err)
}
if len(result) != len(tst.result) {
if testing.Verbose() {
t.Fatalf("Find result count after update is %d wanted %d. Results: %v",
len(result), len(tst.result), result)
}
t.Fatalf("Find result count after update is %d wanted %d.", len(result),
len(tst.result))
}
for i := range result {
found := false
for k := range tst.result {
if result[i].Key == testData[tst.result[k]].Key &&
result[i].UpdateField == "updated" &&
result[i].UpdateIndex == "updated index" {
found = true
break
}
}
if !found {
if testing.Verbose() {
t.Fatalf("Could not find %v in the update result set! Full results: %v",
result[i], result)
}
t.Fatalf("Could not find %v in the updated result set!", result[i])
}
}
})
})
}
}
func TestSortedDeleteMatching(t *testing.T) {
for _, tst := range sortTests {
t.Run(tst.name, func(t *testing.T) {
testWrap(t, func(store *badgerhold.Store, t *testing.T) {
insertTestData(t, store)
err := store.DeleteMatching(&ItemTest{}, tst.query)
if err != nil {
t.Fatalf("Error deleting data from badgerhold: %s", err)
}
var result []ItemTest
err = store.Find(&result, nil)
if err != nil {
t.Fatalf("Error finding result after delete from badgerhold: %s", err)
}
if len(result) != (len(testData) - len(tst.result)) {
if testing.Verbose() {
t.Fatalf("Delete result count is %d wanted %d. Results: %v", len(result),
(len(testData) - len(tst.result)), result)
}
t.Fatalf("Delete result count is %d wanted %d.", len(result),
(len(testData) - len(tst.result)))
}
for i := range result {
found := false
for k := range tst.result {
if result[i].equal(&testData[tst.result[k]]) {
found = true
break
}
}
if found {
if testing.Verbose() {
t.Fatalf("Found %v in the result set when it should've been deleted! Full results: %v", result[i], result)
}
t.Fatalf("Found %v in the result set when it should've been deleted!", result[i])
}
}
})
})
}
}
func TestSortOnKey(t *testing.T) {
testWrap(t, func(store *badgerhold.Store, t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Fatalf("Running Sort on Key field did not panic!")
}
}()
var result []ItemTest
_ = store.Find(&result, badgerhold.Where("Name").Eq("blah").SortBy(badgerhold.Key))
})
}
func TestSortedFindOnInvalidFieldName(t *testing.T) {
testWrap(t, func(store *badgerhold.Store, t *testing.T) {
insertTestData(t, store)
var result []ItemTest
err := store.Find(&result, badgerhold.Where("BadFieldName").Eq("test").SortBy("BadFieldName"))
if err == nil {
t.Fatalf("Sorted find query against a bad field name didn't return an error!")
}
})
}
func TestSortedFindWithNonSlicePtr(t *testing.T) {
testWrap(t, func(store *badgerhold.Store, t *testing.T) {
defer func() {
if r := recover(); r == nil {
t.Fatalf("Running Find with non-slice pointer did not panic!")
}
}()
var result []ItemTest
_ = store.Find(result, badgerhold.Where("Name").Eq("blah").SortBy("Name"))
})
}