-
Notifications
You must be signed in to change notification settings - Fork 738
/
Copy pathtest-trie.c
371 lines (271 loc) · 8.13 KB
/
test-trie.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
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
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
/*
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 <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "alloc-testing.h"
#include "framework.h"
#include "trie.h"
#define NUM_TEST_VALUES 10000
int test_array[NUM_TEST_VALUES];
char test_strings[NUM_TEST_VALUES][10];
unsigned char bin_key[] = {'a', 'b', 'c', 0, 1, 2, 0xff};
unsigned char bin_key2[] = {'a', 'b', 'c', 0, 1, 2, 0xff, 0};
unsigned char bin_key3[] = {'a', 'b', 'c'};
unsigned char bin_key4[] = {'z', 0, 'z', 'z'};
Trie *generate_trie(void)
{
Trie *trie;
int i;
unsigned int entries;
/* Create a trie and fill it with a large number of values */
trie = trie_new();
entries = 0;
for (i = 0; i < NUM_TEST_VALUES; ++i) {
/* Create a string containing a text version of i, and use
* it as a key for the value */
test_array[i] = i;
sprintf(test_strings[i], "%i", i);
assert(trie_insert(trie, test_strings[i], &test_array[i]) != 0);
++entries;
assert(trie_num_entries(trie) == entries);
}
return trie;
}
void test_trie_new_free(void)
{
Trie *trie;
/* Allocate and free an empty trie */
trie = trie_new();
assert(trie != NULL);
trie_free(trie);
/* Add some values before freeing */
trie = trie_new();
assert(trie_insert(trie, "hello", "there") != 0);
assert(trie_insert(trie, "hell", "testing") != 0);
assert(trie_insert(trie, "testing", "testing") != 0);
assert(trie_insert(trie, "", "asfasf") != 0);
trie_free(trie);
/* Add a value, remove it and then free */
trie = trie_new();
assert(trie_insert(trie, "hello", "there") != 0);
assert(trie_remove(trie, "hello") != 0);
trie_free(trie);
/* Test out of memory scenario */
alloc_test_set_limit(0);
trie = trie_new();
assert(trie == NULL);
}
void test_trie_insert(void)
{
Trie *trie;
unsigned int entries;
size_t allocated;
trie = generate_trie();
/* Test insert of NULL value has no effect */
entries = trie_num_entries(trie);
assert(trie_insert(trie, "hello world", NULL) == 0);
assert(trie_num_entries(trie) == entries);
/* Test out of memory scenario */
allocated = alloc_test_get_allocated();
alloc_test_set_limit(0);
assert(trie_insert(trie, "a", "test value") == 0);
assert(trie_num_entries(trie) == entries);
/* Test rollback */
alloc_test_set_limit(5);
assert(trie_insert(trie, "hello world", "test value") == 0);
assert(alloc_test_get_allocated() == allocated);
assert(trie_num_entries(trie) == entries);
trie_free(trie);
}
void test_trie_lookup(void)
{
Trie *trie;
char buf[10];
int *val;
int i;
trie = generate_trie();
/* Test lookup for non-existent values */
assert(trie_lookup(trie, "000000000000000") == TRIE_NULL);
assert(trie_lookup(trie, "") == TRIE_NULL);
/* Look up all values */
for (i = 0; i < NUM_TEST_VALUES; ++i) {
sprintf(buf, "%i", i);
val = (int *) trie_lookup(trie, buf);
assert(*val == i);
}
trie_free(trie);
}
void test_trie_remove(void)
{
Trie *trie;
char buf[10];
int i;
unsigned int entries;
trie = generate_trie();
/* Test remove on non-existent values. */
assert(trie_remove(trie, "000000000000000") == 0);
assert(trie_remove(trie, "") == 0);
entries = trie_num_entries(trie);
assert(entries == NUM_TEST_VALUES);
/* Remove all values */
for (i = 0; i < NUM_TEST_VALUES; ++i) {
sprintf(buf, "%i", i);
/* Remove value and check counter */
assert(trie_remove(trie, buf) != 0);
--entries;
assert(trie_num_entries(trie) == entries);
}
trie_free(trie);
}
void test_trie_replace(void)
{
Trie *trie;
int *val;
trie = generate_trie();
/* Test replacing values */
val = malloc(sizeof(int));
*val = 999;
assert(trie_insert(trie, "999", val) != 0);
assert(trie_num_entries(trie) == NUM_TEST_VALUES);
assert(trie_lookup(trie, "999") == val);
free(val);
trie_free(trie);
}
void test_trie_insert_empty(void)
{
Trie *trie;
char buf[10];
trie = trie_new();
/* Test insert on empty string */
assert(trie_insert(trie, "", buf) != 0);
assert(trie_num_entries(trie) != 0);
assert(trie_lookup(trie, "") == buf);
assert(trie_remove(trie, "") != 0);
assert(trie_num_entries(trie) == 0);
trie_free(trie);
}
#define LONG_STRING_LEN 4096
static void test_trie_free_long(void)
{
char *long_string;
Trie *trie;
/* Generate a long string */
long_string = malloc(LONG_STRING_LEN);
memset(long_string, 'A', LONG_STRING_LEN);
long_string[LONG_STRING_LEN - 1] = '\0';
/* Create a trie and add the string */
trie = trie_new();
trie_insert(trie, long_string, long_string);
trie_free(trie);
free(long_string);
}
/* Test the use of the trie when characters in the keys used are negative
* (top bit set in the character; alternative, c >= 128). */
static void test_trie_negative_keys(void)
{
char my_key[] = {'a', 'b', 'c', -50, -20, '\0'};
Trie *trie;
void *value;
trie = trie_new();
assert(trie_insert(trie, my_key, "hello world") != 0);
value = trie_lookup(trie, my_key);
assert(!strcmp(value, "hello world"));
assert(trie_remove(trie, my_key) != 0);
assert(trie_remove(trie, my_key) == 0);
assert(trie_lookup(trie, my_key) == NULL);
trie_free(trie);
}
Trie *generate_binary_trie(void)
{
Trie *trie;
trie = trie_new();
/* Insert some values */
assert(trie_insert_binary(trie, bin_key2, sizeof(bin_key2),
"goodbye world") != 0);
assert(trie_insert_binary(trie, bin_key, sizeof(bin_key),
"hello world") != 0);
return trie;
}
void test_trie_insert_binary(void)
{
Trie *trie;
char *value;
trie = generate_binary_trie();
/* Overwrite a value */
assert(trie_insert_binary(trie, bin_key, sizeof(bin_key), "hi world") !=
0);
/* Insert NULL value doesn't work */
assert(trie_insert_binary(trie, bin_key3, sizeof(bin_key3), NULL) == 0);
/* Read them back */
value = trie_lookup_binary(trie, bin_key, sizeof(bin_key));
assert(!strcmp(value, "hi world"));
value = trie_lookup_binary(trie, bin_key2, sizeof(bin_key2));
assert(!strcmp(value, "goodbye world"));
trie_free(trie);
}
void test_trie_insert_out_of_memory(void)
{
Trie *trie;
trie = generate_binary_trie();
alloc_test_set_limit(3);
assert(trie_insert_binary(trie, bin_key4, sizeof(bin_key4),
"test value") == 0);
assert(trie_lookup_binary(trie, bin_key4, sizeof(bin_key4)) == NULL);
assert(trie_num_entries(trie) == 2);
trie_free(trie);
}
void test_trie_remove_binary(void)
{
Trie *trie;
void *value;
trie = generate_binary_trie();
/* Test look up and remove of invalid values */
value = trie_lookup_binary(trie, bin_key3, sizeof(bin_key3));
assert(value == NULL);
assert(trie_remove_binary(trie, bin_key3, sizeof(bin_key3)) == 0);
assert(trie_lookup_binary(trie, bin_key4, sizeof(bin_key4)) == 0);
assert(trie_remove_binary(trie, bin_key4, sizeof(bin_key4)) == 0);
/* Remove the two values */
assert(trie_remove_binary(trie, bin_key2, sizeof(bin_key2)) != 0);
assert(trie_lookup_binary(trie, bin_key2, sizeof(bin_key2)) == NULL);
assert(trie_lookup_binary(trie, bin_key, sizeof(bin_key)) != NULL);
assert(trie_remove_binary(trie, bin_key, sizeof(bin_key)) != 0);
assert(trie_lookup_binary(trie, bin_key, sizeof(bin_key)) == NULL);
trie_free(trie);
}
/* clang-format off */
static UnitTestFunction tests[] = {
test_trie_new_free,
test_trie_insert,
test_trie_lookup,
test_trie_remove,
test_trie_replace,
test_trie_insert_empty,
test_trie_free_long,
test_trie_negative_keys,
test_trie_insert_binary,
test_trie_insert_out_of_memory,
test_trie_remove_binary,
NULL
};
/* clang-format on */
int main(int argc, char *argv[])
{
run_tests(tests);
return 0;
}