-
Notifications
You must be signed in to change notification settings - Fork 2
/
util_test.go
278 lines (230 loc) · 5.91 KB
/
util_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
package goroar
import "testing"
func TestBinarySearch(t *testing.T) {
a := []uint16{0, 1, 2, 3, 4}
pos := binarySearch(a, 5, 2)
if pos != 2 {
t.Errorf("Position: %d, want: 2", pos)
}
}
func TestLocalIntersect2by2(t *testing.T) {
set1 := []uint16{1, 2, 3, 4, 5}
set2 := []uint16{3, 4, 5, 6, 7}
length, newSet := localIntersect2by2(set1, 5, set2, 5)
if length != 3 {
t.Errorf("Length: %d, want: %d", length, 3)
}
if newSet[0] != 3 && newSet[1] != 4 && newSet[2] != 5 {
t.Errorf("Set content: %v, want: [3, 4, 5]", newSet)
}
}
func TestLocalIntersect2by2_2(t *testing.T) {
set1 := []uint16{1, 2, 3, 4, 5}
set2 := []uint16{5}
length, newSet := localIntersect2by2(set1, 5, set2, 1)
if length != 1 {
t.Errorf("Length: %d, want: %d", length, 1)
}
if newSet[0] != 5 {
t.Errorf("Set content: %v, want: [5]", newSet)
}
}
func TestIntersect2by2(t *testing.T) {
set1 := make([]uint16, 10)
set2 := make([]uint16, 1024)
for i := range set1 {
set1[i] = uint16(i * 100)
}
for i := range set2 {
set2[i] = uint16(i)
}
length, newSet := intersect2by2(set1, len(set1), set2, len(set2))
if length != 10 {
t.Errorf("Length: %d, want: %d", length, 10)
}
for i, v := range newSet {
if uint16(i*100) != v {
t.Errorf("Got: %d, want: %d", v, i)
}
}
}
func TestDifference(t *testing.T) {
set1 := []uint16{1, 2, 3, 4, 5}
set2 := []uint16{3, 4, 5, 6, 7}
length, newSet := difference(set1, 5, set2, 5)
if length != 2 {
t.Errorf("Length: %d, want: %d", length, 3)
}
if newSet[0] != 1 && newSet[1] != 2 {
t.Errorf("Set content: %v, want: [3, 4, 5]", newSet)
}
}
func TestCountBits(t *testing.T) {
x := uint64(0)
if bits := countBits(x); bits != 0 {
t.Errorf("Count bits: %d, want 0", bits)
}
x = uint64(1)
if bits := countBits(x); bits != 1 {
t.Errorf("Count bits: %d, want 1", bits)
}
x = ^uint64(0x5555555555555555)
if bits := countBits(x); bits != 32 {
t.Errorf("Count bits: %d, want 32", bits)
}
}
func TestFillArrayAND(t *testing.T) {
bitmap1 := []uint64{50}
bitmap2 := []uint64{50}
answer := fillArrayAND(bitmap1, bitmap2, 3)
if answer[0] != uint16(1) && answer[1] != uint16(4) &&
answer[2] != uint16(5) {
t.Errorf("fillArrayAND error")
}
}
func TestTrailingZeros(t *testing.T) {
for i := 0; i < 63; i++ {
v := trailingZeros(1 << uint(i))
if v != i {
t.Errorf("TrailingZeros: %d, want: %d", v, i)
}
}
}
func TestUnion2by2_1(t *testing.T) {
count := 100
set1 := make([]uint16, 0, count)
set2 := make([]uint16, 0, count)
for i := 0; i < count; i += 2 {
set1 = append(set1, uint16(i))
set2 = append(set2, uint16(i+1))
}
total, buffer := union2by2(set1, len(set1), set2, len(set2), len(set1)+len(set2))
if total != count {
t.Errorf("Union total: %d, want: %d", total, count)
}
for k, v := range buffer {
if uint16(k) != v {
t.Errorf("Union: %d, want: %d", v, k)
break
}
}
}
func TestUnion2by2_2(t *testing.T) {
count := 100
set1 := make([]uint16, 0, count)
set2 := make([]uint16, 0, count)
for i := 0; i < count; i++ {
set1 = append(set1, uint16(i))
}
total, buffer := union2by2(set1, len(set1), set2, len(set2), len(set1)+len(set2))
if total != count {
t.Errorf("Union total: %d, want: %d", total, count)
}
for k, v := range buffer {
if set1[k] != v {
t.Errorf("Union: %d, want: %d", v, k)
break
}
}
}
func TestUnion2by2_3(t *testing.T) {
count := 100
set1 := make([]uint16, 0, count)
set2 := make([]uint16, 0, count)
for i := 0; i < count; i++ {
set2 = append(set2, uint16(i))
}
total, buffer := union2by2(set1, len(set1), set2, len(set2), len(set1)+len(set2))
if total != count {
t.Errorf("Union total: %d, want: %d", total, count)
}
for k, v := range buffer {
if set2[k] != v {
t.Errorf("Union: %d, want: %d", v, k)
break
}
}
}
func TestUnion2by2_4(t *testing.T) {
count := 10
set1 := make([]uint16, 0, count)
set2 := make([]uint16, 0, count)
for i := 0; i < count; i++ {
set1 = append(set1, uint16(i))
set2 = append(set2, uint16(i))
}
total, buffer := union2by2(set1, len(set1), set2, len(set2), len(set1)+len(set2))
if total != count {
t.Errorf("Union total: %d, want: %d", total, count)
}
for k, v := range buffer {
if set2[k] != v {
t.Errorf("Union: %d, want: %d", v, k)
break
}
}
}
func TestUnion2by2_5(t *testing.T) {
set1 := make([]uint16, 0)
set2 := make([]uint16, 0)
total, buffer := union2by2(set1, len(set1), set2, len(set2), len(set1)+len(set2))
if total != 0 {
t.Errorf("Union total: %d, want: %d", total, 0)
}
for k, v := range buffer {
if set2[k] != v {
t.Errorf("Union: %d, want: %d", v, k)
break
}
}
}
func TestExclusiveUnion2by2_1(t *testing.T) {
count := 100
set1 := make([]uint16, 0, count)
set2 := make([]uint16, 0, count)
for i := 0; i < count; i += 2 {
set1 = append(set1, uint16(i))
set2 = append(set2, uint16(i+1))
}
total, buffer := exclusiveUnion2by2(set1, len(set1), set2, len(set2), len(set1)+len(set2))
if total != count {
t.Errorf("Union total: %d, want: %d", total, count)
}
for k, v := range buffer {
if uint16(k) != v {
t.Errorf("Union: %d, want: %d", v, k)
break
}
}
}
func TestExclusiveUnion2by2_2(t *testing.T) {
count := 100
set1 := make([]uint16, 0, count)
set2 := make([]uint16, 0, count)
for i := 0; i < count; i += 2 {
set1 = append(set1, uint16(i))
set2 = append(set2, uint16(i))
}
total, buffer := exclusiveUnion2by2(set1, len(set1), set2, len(set2), len(set1)+len(set2))
if total != 0 || len(buffer) > 0 {
t.Errorf("Union total: %d, want: %d", total, count)
}
}
func TestExclusiveUnion2by2_3(t *testing.T) {
count := 100
set1 := make([]uint16, 0, count)
set2 := make([]uint16, 0)
for i := 0; i < count; i++ {
set1 = append(set1, uint16(i))
}
total, buffer := exclusiveUnion2by2(set1, len(set1), set2, len(set2), len(set1)+len(set2))
if total != count {
t.Errorf("Union total: %d, want: %d", total, count)
}
for k, v := range buffer {
if uint16(k) != v {
t.Errorf("Union: %d, want: %d", v, k)
break
}
}
}