-
Notifications
You must be signed in to change notification settings - Fork 733
/
Copy pathtest-binomial-heap.c
240 lines (186 loc) · 5.28 KB
/
test-binomial-heap.c
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
/*
Copyright (c) 2005-2008, Simon Howard
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR
CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <assert.h>
#include <stdlib.h>
#include "alloc-testing.h"
#include "framework.h"
#include "binomial-heap.h"
#include "compare-int.h"
#define NUM_TEST_VALUES 10000
int test_array[NUM_TEST_VALUES];
void test_binomial_heap_new_free(void)
{
BinomialHeap *heap;
int i;
for (i = 0; i < NUM_TEST_VALUES; ++i) {
heap = binomial_heap_new(BINOMIAL_HEAP_TYPE_MIN, int_compare);
binomial_heap_free(heap);
}
/* Test for out of memory */
alloc_test_set_limit(0);
assert(binomial_heap_new(BINOMIAL_HEAP_TYPE_MIN, int_compare) == NULL);
}
void test_binomial_heap_insert(void)
{
BinomialHeap *heap;
int i;
heap = binomial_heap_new(BINOMIAL_HEAP_TYPE_MIN, int_compare);
for (i = 0; i < NUM_TEST_VALUES; ++i) {
test_array[i] = i;
assert(binomial_heap_insert(heap, &test_array[i]) != 0);
}
assert(binomial_heap_num_entries(heap) == NUM_TEST_VALUES);
/* Test for out of memory */
alloc_test_set_limit(0);
assert(binomial_heap_insert(heap, &i) == 0);
binomial_heap_free(heap);
}
void test_min_heap(void)
{
BinomialHeap *heap;
int *val;
int i;
heap = binomial_heap_new(BINOMIAL_HEAP_TYPE_MIN, int_compare);
/* Push a load of values onto the heap */
for (i = 0; i < NUM_TEST_VALUES; ++i) {
test_array[i] = i;
assert(binomial_heap_insert(heap, &test_array[i]) != 0);
}
/* Pop values off the heap and check they are in order */
i = -1;
while (binomial_heap_num_entries(heap) > 0) {
val = (int *) binomial_heap_pop(heap);
assert(*val == i + 1);
i = *val;
}
/* Test pop on an empty heap */
val = (int *) binomial_heap_pop(heap);
assert(val == NULL);
binomial_heap_free(heap);
}
void test_max_heap(void)
{
BinomialHeap *heap;
int *val;
int i;
heap = binomial_heap_new(BINOMIAL_HEAP_TYPE_MAX, int_compare);
/* Push a load of values onto the heap */
for (i = 0; i < NUM_TEST_VALUES; ++i) {
test_array[i] = i;
assert(binomial_heap_insert(heap, &test_array[i]) != 0);
}
/* Pop values off the heap and check they are in order */
i = NUM_TEST_VALUES;
while (binomial_heap_num_entries(heap) > 0) {
val = (int *) binomial_heap_pop(heap);
assert(*val == i - 1);
i = *val;
}
/* Test pop on an empty heap */
val = (int *) binomial_heap_pop(heap);
assert(val == NULL);
binomial_heap_free(heap);
}
#define TEST_VALUE (NUM_TEST_VALUES / 2)
static BinomialHeap *generate_heap(void)
{
BinomialHeap *heap;
int i;
heap = binomial_heap_new(BINOMIAL_HEAP_TYPE_MIN, int_compare);
/* Push a load of values onto the heap */
for (i = 0; i < NUM_TEST_VALUES; ++i) {
test_array[i] = i;
if (i != TEST_VALUE) {
assert(binomial_heap_insert(heap, &test_array[i]) != 0);
}
}
return heap;
}
/* Verify that the values read out of the specified heap are the
* same as those inserted in generate_heap. */
static void verify_heap(BinomialHeap *heap)
{
unsigned int num_vals;
int *val;
int i;
num_vals = binomial_heap_num_entries(heap);
assert(num_vals == NUM_TEST_VALUES - 1);
for (i = 0; i < NUM_TEST_VALUES; ++i) {
if (i == TEST_VALUE) {
continue;
}
/* Pop off the next value and check it */
val = binomial_heap_pop(heap);
assert(*val == i);
/* Decrement num values counter */
--num_vals;
assert(binomial_heap_num_entries(heap) == num_vals);
}
}
/* Test out of memory when doing an insert */
static void test_insert_out_of_memory(void)
{
BinomialHeap *heap;
int i;
/* There are various memory allocations performed during the insert;
* probe at different limit levels to catch them all. */
for (i = 0; i < 6; ++i) {
heap = generate_heap();
/* Insert should fail */
alloc_test_set_limit(i);
test_array[TEST_VALUE] = TEST_VALUE;
assert(binomial_heap_insert(heap, &test_array[TEST_VALUE]) ==
0);
alloc_test_set_limit(-1);
/* Check that the heap is unharmed */
verify_heap(heap);
binomial_heap_free(heap);
}
}
/* Test out of memory when doing a pop */
void test_pop_out_of_memory(void)
{
BinomialHeap *heap;
int i;
/* There are various memory allocations performed as part of the merge
* done during the pop. Probe at different limit levels to catch them
* all. */
for (i = 0; i < 6; ++i) {
heap = generate_heap();
/* Pop should fail */
alloc_test_set_limit(i);
assert(binomial_heap_pop(heap) == NULL);
alloc_test_set_limit(-1);
/* Check the heap is unharmed */
binomial_heap_free(heap);
}
}
/* clang-format off */
static UnitTestFunction tests[] = {
test_binomial_heap_new_free,
test_binomial_heap_insert,
test_min_heap,
test_max_heap,
test_insert_out_of_memory,
test_pop_out_of_memory,
NULL
};
/* clang-format on */
int main(int argc, char *argv[])
{
run_tests(tests);
return 0;
}