-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcountarray_test.go
132 lines (100 loc) · 2.01 KB
/
countarray_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
package disttopk
import "testing"
import (
"bytes"
//"fmt"
"math/rand"
)
func TestCountArray(t *testing.T) {
n := 10000
a := NewCountArray(int(n))
set := make(map[int]uint)
for i := 0; i < n/10; i++ {
j := int(rand.Int() % n)
set[j] = 2
a.Set(j, 2)
}
for i := 0; i < n; i++ {
j := int(i)
expected, _ := set[j]
actual := a.Get(j)
if expected != actual {
t.Fail()
}
}
}
func TestCountArraySerialize(t *testing.T) {
n := 10000
a := NewCountArray(int(n))
for i := 0; i < n/10; i++ {
j := rand.Int() % n
v := rand.Int() % n
a.Set(int(j), uint(v))
}
b, err := SerializeObject(a)
compb := CompressBytes(b)
t.Log("Count array serialized plain: ", len(b), " Compressed ", len(compb))
if err != nil {
panic(err)
}
var obj CountArray
err = DeserializeObject(&obj, b)
if err != nil {
panic(err)
}
if !a.Equal(&obj) {
t.Fail()
}
}
func TestCountArraySerializeWithBag(t *testing.T) {
n := 10000
a := NewCountArray(int(n))
for i := 0; i < n/10; i++ {
j := rand.Int() % n
v := rand.Int() % n
a.Set(int(j), uint(v))
}
buf := new(bytes.Buffer)
if err := a.SerializeWithBag(buf); err != nil {
panic(err)
}
b := buf.Bytes()
compb := CompressBytes(b)
t.Log("Count array serialized Bag: ", len(b), " Compressed ", len(compb))
var obj CountArray
bufr := bytes.NewReader(b)
err := obj.DeserializeWithBag(bufr)
if err != nil {
panic(err)
}
// a.transformLog()
// a.untransformLog()
if !a.Equal(&obj) {
t.Fail()
}
}
func TestCountArraySerializeGcs(t *testing.T) {
n := 10000
a := NewCountArray(int(n))
for i := 0; i < n/10; i++ {
j := rand.Int() % n
v := rand.Int() % n
a.Set(int(j), uint(v))
}
buf := new(bytes.Buffer)
if err := a.SerializeGcs(buf); err != nil {
panic(err)
}
b := buf.Bytes()
compb := CompressBytes(b)
t.Log("Count array serialized GCS: ", len(b), " Compressed ", len(compb))
var obj CountArray
bufr := bytes.NewReader(b)
err := obj.DeserializeGcs(bufr)
if err != nil {
panic(err)
}
if !a.Equal(&obj) {
t.Fail()
}
}