-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtest.c
More file actions
280 lines (240 loc) · 7.1 KB
/
test.c
File metadata and controls
280 lines (240 loc) · 7.1 KB
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
/*
* critbit89 - A crit-bit tree implementation for strings in C89
* Written by Jonas Gehring <jonas@jgehring.net>
*/
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "critbit.h"
/*
* Sample dictionary: 100 random words from /usr/share/dict/words
* Generated using random.org:
* MAX=`wc -l < /usr/share/dict/words | tr -d " "`
* for i in `curl "http://www.random.org/integers/?num=100&min=1&max=$MAX&col=1&base=10&format=plain&rnd=new"`; do
* nl /usr/share/dict/words | grep -w $i | tr -d "0-9\t "
* done
*/
static const char *dict[] = {
"catagmatic", "prevaricator", "statoscope", "workhand", "benzamide",
"alluvia", "fanciful", "bladish", "Tarsius", "unfast", "appropriative",
"seraphically", "monkeypod", "deflectometer", "tanglesome", "zodiacal",
"physiologically", "economizer", "forcepslike", "betrumpet",
"Danization", "broadthroat", "randir", "usherette", "nephropyosis",
"hematocyanin", "chrysohermidin", "uncave", "mirksome", "podophyllum",
"siphonognathous", "indoor", "featheriness", "forwardation",
"archruler", "soricoid", "Dailamite", "carmoisin", "controllability",
"unpragmatical", "childless", "transumpt", "productive",
"thyreotoxicosis", "oversorrow", "disshadow", "osse", "roar",
"pantomnesia", "talcer", "hydrorrhoea", "Satyridae", "undetesting",
"smoothbored", "widower", "sivathere", "pendle", "saltation",
"autopelagic", "campfight", "unexplained", "Macrorhamphosus",
"absconsa", "counterflory", "interdependent", "triact", "reconcentration",
"oversharpness", "sarcoenchondroma", "superstimulate", "assessory",
"pseudepiscopacy", "telescopically", "ventriloque", "politicaster",
"Caesalpiniaceae", "inopportunity", "Helion", "uncompatible",
"cephaloclasia", "oversearch", "Mahayanistic", "quarterspace",
"bacillogenic", "hamartite", "polytheistical", "unescapableness",
"Pterophorus", "cradlemaking", "Hippoboscidae", "overindustrialize",
"perishless", "cupidity", "semilichen", "gadge", "detrimental",
"misencourage", "toparchia", "lurchingly", "apocatastasis"
};
static int tnum = 0;
/* Insertions */
static void test_insert(cb_tree_t *tree)
{
int dict_size = sizeof(dict) / sizeof(const char *);
int i;
for (i = 0; i < dict_size; i++) {
if (cb_tree_insert(tree, dict[i]) != 0) {
fprintf(stderr, "Insertion failed\n");
abort();
}
}
}
/* Insertion of duplicate element */
static void test_insert_dup(cb_tree_t *tree)
{
int dict_size = sizeof(dict) / sizeof(const char *);
int i;
for (i = 0; i < dict_size; i++) {
if (!cb_tree_contains(tree, dict[i])) {
continue;
}
if (cb_tree_insert(tree, dict[i]) != 1) {
fprintf(stderr, "Insertion of duplicate '%s' should fail\n", dict[i]);
abort();
}
}
}
/* Searching */
static void test_contains(cb_tree_t *tree)
{
char *in;
const char *notin = "not in tree";
in = malloc(strlen(dict[23])+1);
strcpy(in, dict[23]);
if (cb_tree_contains(tree, in) != 1) {
fprintf(stderr, "Tree should contain '%s'\n", in);
abort();
}
if (cb_tree_contains(tree, notin) != 0) {
fprintf(stderr, "Tree should not contain '%s'\n", notin);
abort();
}
if (cb_tree_contains(tree, "") != 0) {
fprintf(stderr, "Tree should not contain empty string\n");
abort();
}
in[strlen(in)/2] = '\0';
if (cb_tree_contains(tree, in) != 0) {
fprintf(stderr, "Tree should not contain prefix of '%s'\n", in);
abort();
}
free(in);
}
/* Count number of items */
static int count_cb(const char *s, void *n) { (*(int *)n)++; return 0; }
static void test_complete(cb_tree_t *tree, int n)
{
int i = 0;
if (cb_tree_walk_prefixed(tree, "", count_cb, &i) != 0) {
fprintf(stderr, "Walking with empty prefix failed\n");
abort();
}
if (i != n) {
fprintf(stderr, "%d items expected, but %d walked\n", n, i);
abort();
}
}
/* Deletion */
static void test_delete(cb_tree_t *tree)
{
if (cb_tree_delete(tree, dict[91]) != 0) {
fprintf(stderr, "Deletion failed\n");
abort();
}
if (cb_tree_delete(tree, "most likely not in tree") != 1) {
fprintf(stderr, "Deletion of item not in tree should fail\n");
abort();
}
}
/* Complete deletion */
static void test_delete_all(cb_tree_t *tree)
{
int dict_size = sizeof(dict) / sizeof(const char *);
int i;
for (i = 0; i < dict_size; i++) {
if (!cb_tree_contains(tree, dict[i])) {
continue;
}
if (cb_tree_delete(tree, dict[i]) != 0) {
fprintf(stderr, "Deletion of '%s' failed\n", dict[i]);
abort();
}
}
}
/* Fake allocator */
static void *fake_malloc(size_t s, void *b) { return NULL; }
static void test_allocator(cb_tree_t *unused)
{
cb_tree_t tree = cb_tree_make();
tree.malloc = fake_malloc;
if (cb_tree_insert(&tree, dict[0]) != ENOMEM) {
fprintf(stderr, "ENOMEM failure expected\n");
abort();
}
}
/* Empty tree */
static void test_empty(cb_tree_t *tree)
{
if (cb_tree_contains(tree, dict[1]) != 0) {
fprintf(stderr, "Empty tree expected\n");
abort();
}
if (cb_tree_delete(tree, dict[1]) == 0) {
fprintf(stderr, "Empty tree expected\n");
abort();
}
}
/* Prefix walking */
static void test_prefixes(cb_tree_t *tree)
{
int i = 0;
if ((cb_tree_insert(tree, "1str") != 0) ||
(cb_tree_insert(tree, "11str2") != 0) ||
(cb_tree_insert(tree, "12str") != 0) ||
(cb_tree_insert(tree, "11str") != 0)) {
fprintf(stderr, "Insertion failed\n");
abort();
}
if (cb_tree_walk_prefixed(tree, "11", count_cb, &i) != 0) {
fprintf(stderr, "Walking with prefix failed\n");
abort();
}
if (i != 2) {
fprintf(stderr, "2 items expected, but %d walked\n", i);
abort();
}
i = 0;
if (cb_tree_walk_prefixed(tree, "13", count_cb, &i) != 0) {
fprintf(stderr, "Walking with non-matching prefix failed\n");
abort();
}
if (i != 0) {
fprintf(stderr, "0 items expected, but %d walked\n", i);
abort();
}
i = 0;
if (cb_tree_walk_prefixed(tree, "12345678", count_cb, &i) != 0) {
fprintf(stderr, "Walking with long prefix failed\n");
abort();
}
if (i != 0) {
fprintf(stderr, "0 items expected, but %d walked\n", i);
abort();
}
i = 0;
if (cb_tree_walk_prefixed(tree, "11str", count_cb, &i) != 0) {
fprintf(stderr, "Walking with exactly matching prefix failed\n");
abort();
}
if (i != 2) {
fprintf(stderr, "2 items expected, but %d walked\n", i);
abort();
}
}
/* Program entry point */
int main(int argc, char **argv)
{
cb_tree_t tree = cb_tree_make();
printf("%d ", ++tnum); fflush(stdout);
test_insert(&tree);
printf("%d ", ++tnum); fflush(stdout);
test_complete(&tree, sizeof(dict) / sizeof(const char *));
printf("%d ", ++tnum); fflush(stdout);
test_insert_dup(&tree);
printf("%d ", ++tnum); fflush(stdout);
test_contains(&tree);
printf("%d ", ++tnum); fflush(stdout);
test_delete(&tree);
printf("%d ", ++tnum); fflush(stdout);
cb_tree_clear(&tree);
test_insert(&tree);
test_complete(&tree, sizeof(dict) / sizeof(const char *));
printf("%d ", ++tnum); fflush(stdout);
test_delete_all(&tree);
printf("%d ", ++tnum); fflush(stdout);
test_complete(&tree, 0);
printf("%d ", ++tnum); fflush(stdout);
test_allocator(&tree);
printf("%d ", ++tnum); fflush(stdout);
cb_tree_clear(&tree);
test_empty(&tree);
printf("%d ", ++tnum); fflush(stdout);
test_insert(&tree);
test_prefixes(&tree);
cb_tree_clear(&tree);
printf("ok\n");
return 0;
}