-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcqf_test.go
296 lines (235 loc) · 5.18 KB
/
cqf_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
package cqf
import (
"fmt"
"math"
"math/rand"
"testing"
"time"
)
func getCQF() *CQF {
cqf, _ := NewCQF()
return cqf
}
func TestNew(t *testing.T) {
_, err := NewCQF()
if err != nil {
t.Errorf("NewCQF() err: %s", err)
}
}
func TestNoInsert(t *testing.T) {
c := getCQF()
if count := c.CountHash(uint32(0)); count != 0 {
t.Errorf("shouldn't have found uint(0)")
}
}
func TestZero(t *testing.T) {
c := getCQF()
c.InsertHash(uint32(1), 1)
if count := c.CountHash(uint32(0)); count != 0 {
t.Errorf("shouldn't have found uint(0)")
}
}
func TestSimpleInsert(t *testing.T) {
c := getCQF()
key1 := uint32(8)
key2 := uint32(789010101)
c.InsertHash(key1, 1)
c.InsertHash(key2, 1)
if count := c.CountHash(key1); count != 1 {
t.Errorf("nope1, count is: %d", count)
}
if count := c.CountHash(key1); count != 1 {
t.Errorf("nope1, count is: %d", count)
}
}
func TestMultipleKeys(t *testing.T) {
c := getCQF()
keys := map[uint32]bool{
1: true,
1024: true,
16383: true,
16384: true,
}
var maxVal uint32
for k, _ := range keys {
c.InsertHash(k, 1)
if k > maxVal {
maxVal = k + 1
}
}
var lookupKey uint32
for lookupKey < maxVal {
if _, ok := keys[lookupKey]; !ok {
if count := c.CountHash(lookupKey); count != 0 {
t.Errorf("shouldn't have found something for key: %d", lookupKey)
}
}
lookupKey++
}
}
func TestAlottOfRandomHashes(t *testing.T) {
c := getCQF()
count := uint64(1) << 16
for count > 0 {
hash := uint32(rand.Int31())
c.InsertHash(hash, 1)
if c.CountHash(hash) == 0 {
t.Errorf("Didn't find %d", hash)
return
}
count--
}
}
func TestAlottOfTheSame(t *testing.T) {
c := getCQF()
hash := uint32(400000)
count := rand.Int31n(1345700) + 100000
amountWant := uint64(count)
for count > 0 {
c.InsertHash(hash, 1)
count--
}
if got := c.CountHash(hash); got != amountWant {
t.Errorf("got: %d, expected: %d", got, amountWant)
}
}
func TestMultiInsert(t *testing.T) {
c := getCQF()
hash := uint32(8)
lastAmount := uint64(0)
c.InsertHash(hash, 1)
count := 4
for count > 0 {
c.InsertHash(hash, 1)
if count := c.CountHash(hash); count == lastAmount {
t.Errorf("This should have changed")
return
} else {
lastAmount = count
}
count--
}
}
func TestString(t *testing.T) {
c := getCQF()
item := []byte("lol")
c.Insert(item, 1)
if count := c.Count(item); count != 1 {
t.Errorf("Expected something for item: %s", item)
}
}
func TestAlottMixed(t *testing.T) {
c := getCQF()
hash := uint32(rand.Int31())
count := rand.Int31n(10000) + 1000
totalAmount := uint64(0)
for count > 0 {
amount := uint64(1)
if count%2 == 1 {
amount = uint64(rand.Int63n(100))
}
totalAmount += amount
c.InsertHash(hash, amount)
count--
}
if got := c.CountHash(hash); got != totalAmount {
t.Errorf("TestAlottMixed - got: %d, expected: %d", got, totalAmount)
}
}
func TestMultipleAmounts(t *testing.T) {
c := getCQF()
hash := uint32(64)
amounts := []uint64{32, 2, 1, 1, 10, 20, 4, 4, 1, 1, 32, 1, 4}
total := uint64(0)
for _, amount := range amounts {
c.InsertHash(hash, amount)
total += amount
if got := c.CountHash(hash); got != total {
t.Errorf("got: %d", got)
}
}
}
func TestMultiSimple(t *testing.T) {
c := getCQF()
hash := uint32(4)
total := uint64(0)
count := 100
for count < 10 {
amount := uint64(1)
if count%2 == 1 {
amount = uint64(rand.Int63n(100))
}
c.InsertHash(hash, amount)
total += amount
if count := c.CountHash(hash); count != total {
t.Errorf("error, c: %d, expected: %d", count, total)
return
}
count++
}
}
func TestAlottOfTheSameMulti(t *testing.T) {
c := getCQF()
hash := uint32(4)
want := uint64(0)
count := 10 //rand.Int31n(1234) + 100
for count > 0 {
amount := uint64(rand.Int63n(1024))
c.InsertHash(hash, amount)
want += amount
count--
}
if got := c.CountHash(hash); got != want {
t.Errorf("got: %d, expected: %d", got, want)
}
}
func TestCountOkThenInsertAndCountStillOk(t *testing.T) {
c := getCQF()
c.InsertHash(uint32(14), 6)
if got := c.CountHash(uint32(14)); got != uint64(6) {
t.Errorf("got: %d, expected: %d", got, uint64(6))
}
fmt.Println("ok")
c.InsertHash(uint32(1), 5)
fmt.Println("ok")
if got := c.CountHash(uint32(14)); got != uint64(6) {
t.Errorf("got: %d, expected: %d", got, uint64(6))
}
c.InsertHash(uint32(15), 5)
fmt.Println("ok")
if got := c.CountHash(uint32(14)); got != uint64(6) {
t.Errorf("got: %d, expected: %d", got, uint64(6))
}
}
func TestFull(t *testing.T) {
c := getCQF()
checkVals := map[uint32]uint64{}
count := uint32(rand.Int31n(10000) + 10000)
for count > 0 {
hash := uint32(rand.Int63n(math.MaxUint32-2) + 1)
amount := uint64(rand.Int63n(1024*1024) + 1)
c.InsertHash(uint32(hash), amount)
val := checkVals[hash]
val += amount
checkVals[hash] = val
count--
}
off := 0
for hash, want := range checkVals {
if got := c.CountHash(hash); got != want && got == 0 {
off++
}
}
}
func BenchmarkFull(b *testing.B) {
c := getCQF()
for n := 0; n < b.N; n++ {
hash := uint32(rand.Int63n(math.MaxUint32-2) + 1)
amount := uint64(rand.Int63n(1024*1024) + 1)
c.InsertHash(uint32(hash), amount)
}
}
func init() {
rand.Seed(time.Now().Unix())
fmt.Println("")
}