-
Notifications
You must be signed in to change notification settings - Fork 36
/
string_test.go
105 lines (81 loc) · 2.38 KB
/
string_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
package offheap_test
import (
"fmt"
"math/rand"
"strconv"
"testing"
"time"
"github.com/glycerine/offheap"
cv "github.com/glycerine/goconvey/convey"
)
type Num struct {
name string
num int
}
func TestRandomStringOps(t *testing.T) {
// make a reference array that maps i -> hex string version,
// for testing the string <-> int hashmap implementation
M := 36
nm := make([]Num, M)
for i := 0; i < M; i++ {
nm[i].name = strconv.FormatInt(int64(i), 36)
nm[i].num = i
}
h := offheap.NewStringHashTable(2)
m := make(map[string]int)
cv.Convey("given a sequence of random operations, the result should match what Go's builtin map does", t, func() {
cv.So(stringHashEqualsMap(h, m), cv.ShouldEqual, true)
// basic insert
m[nm[0].name] = nm[0].num
h.InsertStringKey(nm[0].name, nm[0].num)
cv.So(stringHashEqualsMap(h, m), cv.ShouldEqual, true)
m[nm[1].name] = nm[1].num
h.InsertStringKey(nm[1].name, nm[1].num)
cv.So(stringHashEqualsMap(h, m), cv.ShouldEqual, true)
// basic delete
delete(m, nm[0].name)
h.DeleteStringKey(nm[0].name)
cv.So(stringHashEqualsMap(h, m), cv.ShouldEqual, true)
delete(m, nm[1].name)
h.DeleteStringKey(nm[1].name)
cv.So(stringHashEqualsMap(h, m), cv.ShouldEqual, true)
// now do random operations
N := 1000
seed := time.Now().UnixNano()
fmt.Printf("\n TestRandomOperationsOrder() using seed = '%v'\n", seed)
gen := rand.New(rand.NewSource(seed))
for i := 0; i < N; i++ {
op := gen.Int() % 4
w := uint64(gen.Int() % M)
switch op {
case 0, 1, 2:
m[nm[w].name] = nm[w].num
h.InsertStringKey(nm[w].name, nm[w].num)
cv.So(stringHashEqualsMap(h, m), cv.ShouldEqual, true)
case 3:
delete(m, nm[w].name)
h.DeleteStringKey(nm[w].name)
cv.So(stringHashEqualsMap(h, m), cv.ShouldEqual, true)
}
}
//fmt.Printf("\n === h at the end of %d string ops, 75%% inserts:\n", N)
//h.DumpStringKey()
// distribution more emphasizing deletes
for i := 0; i < N; i++ {
op := gen.Int() % 2
w := uint64(gen.Int() % M)
switch op {
case 0:
m[nm[w].name] = nm[w].num
h.InsertStringKey(nm[w].name, nm[w].num)
cv.So(stringHashEqualsMap(h, m), cv.ShouldEqual, true)
case 1:
delete(m, nm[w].name)
h.DeleteStringKey(nm[w].name)
cv.So(stringHashEqualsMap(h, m), cv.ShouldEqual, true)
}
}
//fmt.Printf("\n === h at the end of %d string ops:\n", N)
//h.DumpStringKey()
})
}