-
Notifications
You must be signed in to change notification settings - Fork 163
/
rax-oom-test.c
175 lines (154 loc) · 5.49 KB
/
rax-oom-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
/* Rax -- A radix tree implementation.
*
* Copyright (c) 2017-2018, Salvatore Sanfilippo <antirez at gmail dot com>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of Redis nor the names of its contributors may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <errno.h>
#include "rax.h"
int oomtest(int cycle) {
printf("\n=========================\n");
printf("Cycle %d\n", cycle);
printf("=========================\n");
char *toadd[] = {"alligator","alien","baloon","chromodynamic","romane","romanus","romulus","rubens","ruber","rubicon","rubicundus","all","rub","ba",NULL};
rax *t = raxNew();
if (t == NULL) return 0; /* Ok... */
unsigned long items = 0;
while(toadd[items] != NULL) items++;
printf("%lu total items\n", items);
unsigned long failed_insertions = 0;
for (unsigned long i = 0; i < items; i++) {
int retval = raxInsert(t,(unsigned char*)toadd[i],strlen(toadd[i]),(void*)i,NULL);
if (retval == 0) {
if (errno != ENOMEM) {
printf("Insertion failed but errno != ENOMEM!\n");
return 1;
} else {
printf("Failed to insert %s for OOM\n", toadd[i]);
failed_insertions++;
}
} else {
printf("Added %s = %p\n", toadd[i], (void*)(long)i);
}
if (cycle == 307) raxShow(t);
if (t->numele != (i+1)-failed_insertions) {
printf("After insert: %d elements expected, got %d\n",
(int)((i+1)-failed_insertions), (int)t->numele);
printf("Offending layout:\n");
printf("---\n");
raxShow(t);
printf("---\n");
return 1;
}
}
/* Test that the number of items is ok. */
if (t->numele != items-failed_insertions) {
}
raxShow(t);
raxIterator iter;
raxStart(&iter,t);
struct {
char *str;
size_t len;
char *op;
} seek_places[] = {
{"rpxxx",5,"<="},
{"rom",3,">="},
{"rub",3,">="},
{"rub",3,">"},
{"rub",3,"<"},
{"rom",3,">"},
{"chro",4,">"},
{"chro",4,"<"},
{"chromz",6,"<"},
{NULL,0,"^"},
{"zorro",5,"<="},
{"zorro",5,"<"},
{NULL,0,"$"},
{"ro",2,">="}
};
int r = rand() % (sizeof(seek_places) / sizeof(seek_places[0]));
printf("Seeking %s %s\n", seek_places[r].op, seek_places[r].str);
if (raxSeek(&iter,seek_places[r].op,(unsigned char*)seek_places[r].str,
seek_places[r].len) == 0)
{
goto cleanup;
}
int check_iterator_count = 1;
unsigned long steps = 0;
while(raxNext(&iter)) {
printf("NEXT: %.*s, val %p\n", (int)iter.key_len,
(char*)iter.key,
iter.data);
steps++;
}
if (errno == ENOMEM) {
printf("raxNext() aborted on OOM\n");
check_iterator_count = 0;
}
printf("Seeking %s %s\n", seek_places[r].op, seek_places[r].str);
if (raxSeek(&iter,seek_places[r].op,(unsigned char*)seek_places[r].str,
seek_places[r].len) == 0)
{
goto cleanup;
}
while(raxPrev(&iter)) {
printf("PREV: %.*s, val %p\n", (int)iter.key_len,
(char*)iter.key,
iter.data);
steps++;
}
if (errno == ENOMEM) {
printf("raxNext() aborted on OOM\n");
check_iterator_count = 0;
}
/* Check that we walked all the expected elements. */
if (check_iterator_count) {
if (steps != t->numele +1) {
printf("Expected %d total iteration steps, did %d instead\n",
(int)t->numele + 1, (int)steps);
return 1;
}
}
cleanup:
raxStop(&iter);
raxFree(t);
return 0;
}
int main(void) {
srand(1234); /* Make the test reproducible. */
for (int i = 0; i < 100000; i++) {
if (oomtest(i)) {
printf("Test failed\n");
exit(1);
}
}
printf("Test OK!\n");
return 0;
}