-
Notifications
You must be signed in to change notification settings - Fork 737
/
Copy pathtest-binary-heap.c
182 lines (139 loc) · 4 KB
/
test-binary-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
/*
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 "binary-heap.h"
#include "compare-int.h"
#define NUM_TEST_VALUES 10000
int test_array[NUM_TEST_VALUES];
void test_binary_heap_new_free(void)
{
BinaryHeap *heap;
int i;
for (i = 0; i < NUM_TEST_VALUES; ++i) {
heap = binary_heap_new(BINARY_HEAP_TYPE_MIN, int_compare);
binary_heap_free(heap);
}
/* Test low memory scenario */
alloc_test_set_limit(0);
heap = binary_heap_new(BINARY_HEAP_TYPE_MIN, int_compare);
assert(heap == NULL);
alloc_test_set_limit(1);
heap = binary_heap_new(BINARY_HEAP_TYPE_MIN, int_compare);
assert(heap == NULL);
}
void test_binary_heap_insert(void)
{
BinaryHeap *heap;
int i;
heap = binary_heap_new(BINARY_HEAP_TYPE_MIN, int_compare);
for (i = 0; i < NUM_TEST_VALUES; ++i) {
test_array[i] = i;
assert(binary_heap_insert(heap, &test_array[i]) != 0);
}
assert(binary_heap_num_entries(heap) == NUM_TEST_VALUES);
binary_heap_free(heap);
}
void test_min_heap(void)
{
BinaryHeap *heap;
int *val;
int i;
heap = binary_heap_new(BINARY_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(binary_heap_insert(heap, &test_array[i]) != 0);
}
/* Pop values off the heap and check they are in order */
i = -1;
while (binary_heap_num_entries(heap) > 0) {
val = (int *) binary_heap_pop(heap);
assert(*val == i + 1);
i = *val;
}
/* Test popping from an empty heap */
assert(binary_heap_num_entries(heap) == 0);
assert(binary_heap_pop(heap) == BINARY_HEAP_NULL);
binary_heap_free(heap);
}
void test_max_heap(void)
{
BinaryHeap *heap;
int *val;
int i;
heap = binary_heap_new(BINARY_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(binary_heap_insert(heap, &test_array[i]) != 0);
}
/* Pop values off the heap and check they are in order */
i = NUM_TEST_VALUES;
while (binary_heap_num_entries(heap) > 0) {
val = (int *) binary_heap_pop(heap);
assert(*val == i - 1);
i = *val;
}
binary_heap_free(heap);
}
/* Test out of memory scenario when adding items */
void test_out_of_memory(void)
{
BinaryHeap *heap;
int *value;
int values[] = {
15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0,
};
int i;
/* Allocate a heap and fill to the default limit */
heap = binary_heap_new(BINARY_HEAP_TYPE_MIN, int_compare);
alloc_test_set_limit(0);
for (i = 0; i < 16; ++i) {
assert(binary_heap_insert(heap, &values[i]) != 0);
}
assert(binary_heap_num_entries(heap) == 16);
/* Check that we cannot add new values */
for (i = 0; i < 16; ++i) {
assert(binary_heap_insert(heap, &values[i]) == 0);
assert(binary_heap_num_entries(heap) == 16);
}
/* Check that we can read the values back out again and they
* are in the right order. */
for (i = 0; i < 16; ++i) {
value = binary_heap_pop(heap);
assert(*value == i);
}
assert(binary_heap_num_entries(heap) == 0);
binary_heap_free(heap);
}
/* clang-format off */
static UnitTestFunction tests[] = {
test_binary_heap_new_free,
test_binary_heap_insert,
test_min_heap,
test_max_heap,
test_out_of_memory,
NULL
};
/* clang-format on */
int main(int argc, char *argv[])
{
run_tests(tests);
return 0;
}