-
Notifications
You must be signed in to change notification settings - Fork 0
/
pqueue_test.go
249 lines (199 loc) · 5.5 KB
/
pqueue_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
package laney
import (
"reflect"
"strconv"
"sync"
"testing"
)
func TestMaxPQueue_init(t *testing.T) {
pqueue := NewPQueue[string](MAXPQ)
assert(
t,
len(pqueue.items) == 1,
"len(pqueue.items) == %d; want %d", len(pqueue.items), 1,
)
assert(
t,
pqueue.Size() == 0,
"pqueue.Size() = %d; want %d", pqueue.Size(), 0,
)
assert(
t,
pqueue.items[0] == nil,
"pqueue.items[0] = %v; want %v", pqueue.items[0], nil,
)
assert(
t,
reflect.ValueOf(pqueue.comparator).Pointer() == reflect.ValueOf(max).Pointer(),
"pqueue.comparator != max",
)
}
func TestMinPQueue_init(t *testing.T) {
pqueue := NewPQueue[string](MINPQ)
assert(
t,
len(pqueue.items) == 1,
"len(pqueue.items) = %d; want %d", len(pqueue.items), 1,
)
assert(
t,
pqueue.Size() == 0,
"pqueue.Size() = %d; want %d", pqueue.Size(), 0,
)
assert(
t,
pqueue.items[0] == nil,
"pqueue.items[0] = %v; want %v", pqueue.items[0], nil,
)
assert(
t,
reflect.ValueOf(pqueue.comparator).Pointer() == reflect.ValueOf(min).Pointer(),
"pqueue.comparator != min",
)
}
func TestMaxPQueuePushAndPop_protects_max_order(t *testing.T) {
pqueue := NewPQueue[string](MAXPQ)
pqueueSize := 100
// Populate the test priority queue with dummy elements
// in asc ordered.
for i := 0; i < pqueueSize; i++ {
var value string = strconv.Itoa(i)
var priority int = i
pqueue.Push(value, priority)
}
containerIndex := 1 // binary heap are 1 indexed
for i := 99; i >= 0; i-- {
var expectedValue string = strconv.Itoa(i)
var expectedPriority int = i
// Avoiding testing arithmetics headaches by using the pop function directly
value, priority := pqueue.Pop()
assert(
t,
value == expectedValue,
"value = %v; want %v", containerIndex, value, expectedValue,
)
assert(
t,
priority == expectedPriority,
"priority = %v; want %v", containerIndex, priority, expectedValue,
)
containerIndex++
}
}
func TestMaxPQueuePushAndPop_concurrently_protects_max_order(t *testing.T) {
var wg sync.WaitGroup
pqueue := NewPQueue[string](MAXPQ)
pqueueSize := 100
// Populate the test priority queue with dummy elements
// in asc ordered.
for i := 0; i < pqueueSize; i++ {
wg.Add(1)
go func(i int) {
defer wg.Done()
var value string = strconv.Itoa(i)
var priority int = i
pqueue.Push(value, priority)
}(i)
}
wg.Wait()
containerIndex := 1 // binary heap are 1 indexed
for i := 99; i >= 0; i-- {
var expectedValue string = strconv.Itoa(i)
var expectedPriority int = i
// Avoiding testing arithmetics headaches by using the pop function directly
value, priority := pqueue.Pop()
assert(
t,
value == expectedValue,
"value = %v; want %v", containerIndex, value, expectedValue,
)
assert(
t,
priority == expectedPriority,
"priority = %v; want %v", containerIndex, priority, expectedValue,
)
containerIndex++
}
}
func TestMinPQueuePushAndPop_protects_min_order(t *testing.T) {
pqueue := NewPQueue[string](MINPQ)
pqueueSize := 100
// Populate the test priority queue with dummy elements
// in asc ordered.
for i := 0; i < pqueueSize; i++ {
var value string = strconv.Itoa(i)
var priority int = i
pqueue.Push(value, priority)
}
for i := 0; i < pqueueSize; i++ {
var expectedValue string = strconv.Itoa(i)
var expectedPriority int = i
// Avoiding testing arithmetics headaches by using the pop function directly
value, priority := pqueue.Pop()
assert(
t,
value == expectedValue,
"value = %v; want %v", value, expectedValue,
)
assert(
t,
priority == expectedPriority,
"priority = %v; want %v", priority, expectedValue,
)
}
}
func TestMinPQueuePushAndPop_concurrently_protects_min_order(t *testing.T) {
pqueue := NewPQueue[string](MINPQ)
pqueueSize := 100
var wg sync.WaitGroup
// Populate the test priority queue with dummy elements
// in asc ordered.
for i := 0; i < pqueueSize; i++ {
wg.Add(1)
go func(i int) {
defer wg.Done()
var value string = strconv.Itoa(i)
var priority int = i
pqueue.Push(value, priority)
}(i)
}
wg.Wait()
for i := 0; i < pqueueSize; i++ {
var expectedValue string = strconv.Itoa(i)
var expectedPriority int = i
// Avoiding testing arithmetics headaches by using the pop function directly
value, priority := pqueue.Pop()
assert(
t,
value == expectedValue,
"value = %v; want %v", value, expectedValue,
)
assert(
t,
priority == expectedPriority,
"priority = %v; want %v", priority, expectedValue,
)
}
}
func TestMaxPQueueHead_returns_max_element(t *testing.T) {
pqueue := NewPQueue[string](MAXPQ)
pqueue.Push("1", 1)
pqueue.Push("2", 2)
value, priority := pqueue.Head()
// First element of the binary heap is always left empty, so container
// size is the number of elements actually stored + 1
assert(t, len(pqueue.items) == 3, "len(pqueue.items) = %d; want %d", len(pqueue.items), 3)
assert(t, value == "2", "pqueue.Head().value = %v; want %v", value, "2")
assert(t, priority == 2, "pqueue.Head().priority = %d; want %d", priority, 2)
}
func TestMinPQueueHead_returns_min_element(t *testing.T) {
pqueue := NewPQueue[string](MINPQ)
pqueue.Push("1", 1)
pqueue.Push("2", 2)
value, priority := pqueue.Head()
// First element of the binary heap is always left empty, so container
// size is the number of elements actually stored + 1
assert(t, len(pqueue.items) == 3, "len(pqueue.items) = %d; want %d", len(pqueue.items), 3)
assert(t, value == "1", "pqueue.Head().value = %v; want %v", value, "1")
assert(t, priority == 1, "pqueue.Head().priority = %d; want %d", priority, 1)
}