-
Notifications
You must be signed in to change notification settings - Fork 0
/
hash_test.c
252 lines (190 loc) · 4.96 KB
/
hash_test.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
241
242
243
244
245
246
247
248
249
250
251
252
#include "hash.h"
#include "minunit.h"
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define array_size(a) (sizeof (a) / sizeof (*a))
int tests_run = 0;
char *
test_insert()
{
Hash *h = hash_new();
if (!h) { puts("Fatal error: out of memory"); abort(); }
hash_set(&h, "foo", 123);
int value;
mu_assert("FAIL test_insert: key not found",
hash_get(h, "foo", &value)
|| (hash_delete(h), false) /* cleanup */);
mu_assert("FAIL test_insert: incorrect value returned",
value == 123
|| (hash_delete(h), false) /* cleanup */);
hash_delete(h);
return NULL;
}
char *
test_retrieve()
{
Hash *h = hash_new();
if (!h) { puts("Fatal error: out of memory"); abort(); }
hash_set(&h, "foo", 123);
mu_assert("FAIL test_retrieve: NULL not handled correctly",
hash_get(h, "foo", NULL)
|| (hash_delete(h), false) /* cleanup */);
mu_assert("FAIL test_retrieve: nonexistent key found",
!hash_get(h,"bar", NULL)
|| (hash_delete(h), false) /* cleanup */);
hash_delete(h);
return NULL;
}
char *
test_update()
{
Hash *h = hash_new();
if (!h) { puts("Fatal error: out of memory"); abort(); }
hash_set(&h, "foo", 123);
hash_set(&h, "foo", 456);
int value;
mu_assert("FAIL test_update: key not found",
hash_get(h, "foo", &value)
|| (hash_delete(h), false) /* cleanup */);
mu_assert("FAIL test_update: incorrect value returned",
value == 456
|| (hash_delete(h), false) /* cleanup */);
hash_delete(h);
return NULL;
}
char *
test_remove()
{
Hash *h = hash_new();
if (!h) { puts("Fatal error: out of memory"); abort(); }
hash_set(&h, "foo", 123);
hash_remove(&h, "foo");
mu_assert("FAIL test_remove: removed key found",
hash_get(h, "foo", NULL) == 0
|| (hash_delete(h), false) /* cleanup */);
hash_delete(h);
return NULL;
}
void
write_pair(const char *k, int v, void *ctx)
{
char **bufpp = (char **) ctx;
int n = sprintf(*bufpp, "%s=%d\n", k, v);
*bufpp += n;
}
char *
test_foreach()
{
Hash *h = hash_new();
if (!h) { puts("Fatal error: out of memory"); abort(); }
char possible_result[] = "foo=1\nbar=2\nbaz=3\n";
char output_buf[array_size(possible_result)];
char *bufp = output_buf;
hash_set(&h, "foo", 1);
hash_set(&h, "bar", 2);
hash_set(&h, "baz", 3);
hash_foreach(h, write_pair, &bufp);
output_buf[array_size(output_buf)] = '\0';
mu_assert("FAIL test_foreach: unexpected result",
(strstr(output_buf, "foo=1") &&
strstr(output_buf, "bar=2") &&
strstr(output_buf, "baz=3"))
|| (hash_delete(h), false) /* cleanup */);
hash_delete(h);
return NULL;
}
char *
test_grow()
{
Hash *h = hash_new();
if (!h) { puts("Fatal error: out of memory"); abort(); }
char buf[3];
/* 100 inserts is enough to trigger a rehash */
for (int i = 0; i < 100; i++) {
/* Defensive coding */
if (snprintf(buf, array_size(buf), "%d", i) >= array_size(buf)) {
buf[array_size(buf) - 1] = '\0';
}
hash_set(&h, buf, i);
}
int value;
/* Check to make sure everything's still there */
for (int i = 0; i < 100; i++) {
/* Defensive coding */
if (snprintf(buf, array_size(buf), "%d", i) >= array_size(buf)) {
buf[array_size(buf) - 1] = '\0';
}
mu_assert("FAIL test_grow: key not found",
hash_get(h, buf, &value)
|| (hash_delete(h), false) /* cleanup */);
mu_assert("FAIL test_grow: incorrect value returned",
value == i
|| (hash_delete(h), false) /* cleanup */);
}
hash_delete(h);
return NULL;
}
char *
test_shrink()
{
Hash *h = hash_new();
if (!h) { puts("Fatal error: out of memory"); abort(); }
char buf[3];
/* 100 inserts is enough to trigger a rehash */
for (int i = 0; i < 100; i++) {
/* Defensive coding */
if (snprintf(buf, array_size(buf), "%d", i) >= array_size(buf)) {
buf[array_size(buf) - 1] = '\0';
}
hash_set(&h, buf, i);
}
/* Remove 90% of entries to trigger another rehash */
for (int i = 0; i < 100; i++) {
if (i % 10 == 5) continue; /* Keep these ones */
/* Defensive coding */
if (snprintf(buf, array_size(buf), "%d", i) >= array_size(buf)) {
buf[array_size(buf) - 1] = '\0';
}
hash_remove(&h, buf);
}
int value;
/* Check to make sure the ones we kept are still there */
for (int i = 0; i < 100; i++) {
if (i % 10 != 5) continue;
/* Defensive coding */
if (snprintf(buf, array_size(buf), "%d", i) >= array_size(buf)) {
buf[array_size(buf) - 1] = '\0';
}
mu_assert("FAIL test_shrink: key not found",
hash_get(h, buf, &value)
|| (hash_delete(h), false) /* cleanup */);
mu_assert("FAIL test_shrink: incorrect value returned",
value == i
|| (hash_delete(h), false) /* cleanup */);
}
hash_delete(h);
return NULL;
}
char *
all_tests()
{
mu_run_test(test_insert);
mu_run_test(test_retrieve);
mu_run_test(test_update);
mu_run_test(test_remove);
mu_run_test(test_foreach);
mu_run_test(test_grow);
mu_run_test(test_shrink);
return NULL;
}
int
main (int argc, char **argv)
{
char *result = all_tests();
if (result) puts(result);
else puts("All tests passed.");
printf("Tests run: %d\n", tests_run);
return result != NULL;
}