-
Notifications
You must be signed in to change notification settings - Fork 162
/
rax-test.c
1065 lines (948 loc) · 35.5 KB
/
rax-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
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* 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 <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <assert.h>
#include <errno.h>
#include "rax.h"
#include "rc4rand.h"
uint16_t crc16(const char *buf, int len); /* From crc16.c */
/* ---------------------------------------------------------------------------
* Simple hash table implementation, no rehashing, just chaining. This is
* used in order to test the radix tree implementation against something that
* will always "tell the truth" :-) */
#define HT_TABLE_SIZE 100000 /* This is huge but we want it fast enough without
* reahshing needed. */
typedef struct htNode {
uint64_t keylen;
unsigned char *key;
void *data;
struct htNode *next;
} htNode;
typedef struct ht {
uint64_t numele;
htNode *table[HT_TABLE_SIZE];
} hashtable;
/* Create a new hash table. */
hashtable *htNew(void) {
hashtable *ht = calloc(1,sizeof(*ht));
ht->numele = 0;
return ht;
}
/* djb2 hash function. */
uint32_t htHash(unsigned char *s, size_t len) {
uint32_t hash = 5381;
for (size_t i = 0; i < len; i++)
hash = hash * 33 + s[i];
return hash % HT_TABLE_SIZE;
}
/* Low level hash table lookup function. */
htNode *htRawLookup(hashtable *t, unsigned char *s, size_t len, uint32_t *hash, htNode ***parentlink) {
uint32_t h = htHash(s,len);
if (hash) *hash = h;
htNode *n = t->table[h];
if (parentlink) *parentlink = &t->table[h];
while(n) {
if (n->keylen == len && memcmp(n->key,s,len) == 0) return n;
if (parentlink) *parentlink = &n->next;
n = n->next;
}
return NULL;
}
/* Add an elmenet to the hash table, return 1 if the element is new,
* 0 if it existed and the value was updated to the new one. */
int htAdd(hashtable *t, unsigned char *s, size_t len, void *data) {
uint32_t hash;
htNode *n = htRawLookup(t,s,len,&hash,NULL);
if (!n) {
n = malloc(sizeof(*n));
n->key = malloc(len);
memcpy(n->key,s,len);
n->keylen = len;
n->data = data;
n->next = t->table[hash];
t->table[hash] = n;
t->numele++;
return 1;
} else {
n->data = data;
return 0;
}
}
/* Remove the specified element, returns 1 on success, 0 if the element
* was not there already. */
int htRem(hashtable *t, unsigned char *s, size_t len) {
htNode **parentlink;
htNode *n = htRawLookup(t,s,len,NULL,&parentlink);
if (!n) return 0;
*parentlink = n->next;
free(n->key);
free(n);
t->numele--;
return 1;
}
void *htNotFound = (void*)"ht-not-found";
/* Find an element inside the hash table. Returns htNotFound if the
* element is not there, otherwise returns the associated value. */
void *htFind(hashtable *t, unsigned char *s, size_t len) {
htNode *n = htRawLookup(t,s,len,NULL,NULL);
if (!n) return htNotFound;
return n->data;
}
/* Free the whole hash table including all the linked nodes. */
void htFree(hashtable *ht) {
for (int j = 0; j < HT_TABLE_SIZE; j++) {
htNode *next = ht->table[j];
while(next) {
htNode *this = next;
next = this->next;
free(this->key);
free(this);
}
}
free(ht);
}
/* --------------------------------------------------------------------------
* Utility functions to generate keys, check time usage and so forth.
* -------------------------------------------------------------------------*/
/* This is a simple Feistel network in order to turn every possible
* uint32_t input into another "randomly" looking uint32_t. It is a
* one to one map so there are no repetitions. */
static uint32_t int2int(uint32_t input) {
uint16_t l = input & 0xffff;
uint16_t r = input >> 16;
for (int i = 0; i < 8; i++) {
uint16_t nl = r;
uint16_t F = (((r * 31) + (r >> 5) + 7 * 371) ^ r) & 0xffff;
r = l ^ F;
l = nl;
}
return (r<<16)|l;
}
/* Turn an uint32_t integer into an alphanumerical key and return its
* length. This function is used in order to generate keys that have
* a large charset, so that the radix tree can be testsed with many
* children per node. */
static size_t int2alphakey(char *s, size_t maxlen, uint32_t i) {
const char *set = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
"abcdefghijklmnopqrstuvwxyz"
"0123456789";
const size_t setlen = 62;
if (maxlen == 0) return 0;
maxlen--; /* Space for null term char. */
size_t len = 0;
while(len < maxlen) {
s[len++] = set[i%setlen];
i /= setlen;
if (i == 0) break;
}
s[len] = '\0';
return len;
}
/* Return the UNIX time in microseconds */
long long ustime(void) {
struct timeval tv;
long long ust;
gettimeofday(&tv, NULL);
ust = ((long long)tv.tv_sec)*1000000;
ust += tv.tv_usec;
return ust;
}
/* Turn the integer 'i' into a key according to 'mode'.
* KEY_INT: Just represents the integer as a string.
* KEY_UNIQUE_ALPHA: Turn it into a random-looking alphanumerical string
* according to the int2alphakey() function, so that
* at every integer is mapped a different string.
* KEY_RANDOM: Totally random string up to maxlen bytes.
* KEY_RANDOM_ALPHA: Alphanumerical random string up to maxlen bytes.
* KEY_RANDOM_SMALL_CSET: Small charset random strings.
* KEY_CHAIN: 'i' times the character "A". */
#define KEY_INT 0
#define KEY_UNIQUE_ALPHA 1
#define KEY_RANDOM 2
#define KEY_RANDOM_ALPHA 3
#define KEY_RANDOM_SMALL_CSET 4
#define KEY_CHAIN 5
static size_t int2key(char *s, size_t maxlen, uint32_t i, int mode) {
if (mode == KEY_INT) {
return snprintf(s,maxlen,"%lu",(unsigned long)i);
} else if (mode == KEY_UNIQUE_ALPHA) {
if (maxlen > 16) maxlen = 16;
i = int2int(i);
return int2alphakey(s,maxlen,i);
} else if (mode == KEY_RANDOM) {
if (maxlen > 16) maxlen = 16;
int r = rc4rand() % maxlen;
for (int i = 0; i < r; i++) s[i] = rc4rand()&0xff;
return r;
} else if (mode == KEY_RANDOM_ALPHA) {
if (maxlen > 16) maxlen = 16;
int r = rc4rand() % maxlen;
for (int i = 0; i < r; i++) s[i] = 'A'+rc4rand()%('z'-'A'+1);
return r;
} else if (mode == KEY_RANDOM_SMALL_CSET) {
if (maxlen > 16) maxlen = 16;
int r = rc4rand() % maxlen;
for (int i = 0; i < r; i++) s[i] = 'A'+rc4rand()%4;
return r;
} else if (mode == KEY_CHAIN) {
if (i > maxlen) i = maxlen;
memset(s,'A',i);
return i;
} else {
return 0;
}
}
/* -------------------------------------------------------------------------- */
/* Perform a fuzz test, returns 0 on success, 1 on error. */
int fuzzTest(int keymode, size_t count, double addprob, double remprob) {
hashtable *ht = htNew();
rax *rax = raxNew();
printf("Fuzz test in mode %d [%zu]: ", keymode, count);
fflush(stdout);
/* Perform random operations on both the dictionaries. */
for (size_t i = 0; i < count; i++) {
unsigned char key[1024];
uint32_t keylen;
/* Insert element. */
if ((double)rc4rand()/RAND_MAX < addprob) {
keylen = int2key((char*)key,sizeof(key),i,keymode);
void *val = (void*)(unsigned long)rc4rand();
/* Stress NULL values more often, they use a special encoding. */
if (!(rc4rand() % 100)) val = NULL;
int retval1 = htAdd(ht,key,keylen,val);
int retval2 = raxInsert(rax,key,keylen,val,NULL);
if (retval1 != retval2) {
printf("Fuzz: key insertion reported mismatching value in HT/RAX\n");
return 1;
}
}
/* Remove element. */
if ((double)rc4rand()/RAND_MAX < remprob) {
keylen = int2key((char*)key,sizeof(key),i,keymode);
int retval1 = htRem(ht,key,keylen);
int retval2 = raxRemove(rax,key,keylen,NULL);
if (retval1 != retval2) {
printf("Fuzz: key deletion of '%.*s' reported mismatching "
"value in HT=%d RAX=%d\n",
(int)keylen,(char*)key,retval1, retval2);
printf("%p\n", raxFind(rax,key,keylen));
printf("%p\n", raxNotFound);
return 1;
}
}
}
/* Check that count matches. */
if (ht->numele != raxSize(rax)) {
printf("Fuzz: HT / RAX keys count mismatch: %lu vs %lu\n",
(unsigned long) ht->numele,
(unsigned long) raxSize(rax));
return 1;
}
printf("%lu elements inserted\n", (unsigned long)ht->numele);
/* Check that elements match. */
raxIterator iter;
raxStart(&iter,rax);
raxSeek(&iter,"^",NULL,0);
size_t numkeys = 0;
while(raxNext(&iter)) {
void *val1 = htFind(ht,iter.key,iter.key_len);
void *val2 = raxFind(rax,iter.key,iter.key_len);
if (val1 != val2) {
printf("Fuzz: HT=%p, RAX=%p value do not match "
"for key %.*s\n",
val1, val2, (int)iter.key_len,(char*)iter.key);
return 1;
}
numkeys++;
}
/* Check that the iterator reported all the elements. */
if (ht->numele != numkeys) {
printf("Fuzz: the iterator reported %lu keys instead of %lu\n",
(unsigned long) numkeys,
(unsigned long) ht->numele);
return 1;
}
raxStop(&iter);
raxFree(rax);
htFree(ht);
return 0;
}
/* Redis Cluster alike fuzz testing.
*
* This test simulates the radix tree usage made by Redis Cluster in order
* to maintain the hash slot -> keys mappig. The keys are alphanumerical
* but the first two bytes that are binary (and are the key hashed).
*
* In this test there is no comparison with the hash table, the only goal
* is to crash the radix tree implementation, or to trigger Valgrind
* warnings. */
int fuzzTestCluster(size_t count, double addprob, double remprob) {
unsigned char key[128];
int keylen = 0;
printf("Cluster Fuzz test [keys:%zu keylen:%d]: ", count, keylen);
fflush(stdout);
rax *rax = raxNew();
/* This is our template to generate keys. The first two bytes will
* be replaced with the binary redis cluster hash slot. */
keylen = snprintf((char*)key,sizeof(key),"__geocode:2e68e5df3624");
char *cset = "0123456789abcdef";
for (unsigned long j = 0; j < count; j++) {
/* Generate a random key by altering our template key. */
/* With a given probability, let's use a common prefix so that there
* is a subset of keys that have an higher percentage of probability
* of being hit again and again. */
size_t commonprefix = rc4rand() & 0xf;
if (commonprefix == 0) memcpy(key+10,"2e68e5",6);
/* Alter a random char in the key. */
int pos = 10+rc4rand()%12;
key[pos] = cset[rc4rand()%16];
/* Compute the Redis Cluster hash slot to set the first two
* binary bytes of the key. */
int hashslot = crc16((char*)key,keylen) & 0x3FFF;
key[0] = (hashslot >> 8) & 0xff;
key[1] = hashslot & 0xff;
/* Insert element. */
if ((double)rc4rand()/RAND_MAX < addprob) {
raxInsert(rax,key,keylen,NULL,NULL);
}
/* Remove element. */
if ((double)rc4rand()/RAND_MAX < remprob) {
raxRemove(rax,key,keylen,NULL);
}
}
size_t finalkeys = raxSize(rax);
raxFree(rax);
printf("ok with %zu final keys\n",finalkeys);
return 0;
}
/* Iterator fuzz testing. Compared the items returned by the Rax iterator with
* a C implementation obtained by sorting the inserted strings in a linear
* array. */
typedef struct arrayItem {
unsigned char *key;
size_t key_len;
} arrayItem;
/* Utility functions used with qsort() in order to sort the array of strings
* in the same way Rax sorts keys (which is, lexicographically considering
* every byte an unsigned integer. */
int compareAB(const unsigned char *keya, size_t lena, const unsigned char *keyb, size_t lenb) {
size_t minlen = (lena <= lenb) ? lena : lenb;
int retval = memcmp(keya,keyb,minlen);
if (lena == lenb || retval != 0) return retval;
return (lena > lenb) ? 1 : -1;
}
int compareArrayItems(const void *aptr, const void *bptr) {
const arrayItem *a = aptr;
const arrayItem *b = bptr;
return compareAB(a->key,a->key_len,b->key,b->key_len);
}
/* Seek an element in the array, returning the seek index (the index inside the
* array). If the seek is not possible (== operator and key not found or empty
* array) -1 is returned. */
int arraySeek(arrayItem *array, int count, unsigned char *key, size_t len, char *op) {
if (count == 0) return -1;
if (op[0] == '^') return 0;
if (op[0] == '$') return count-1;
int eq = 0, lt = 0, gt = 0;
if (op[1] == '=') eq = 1;
if (op[0] == '<') lt = 1;
if (op[0] == '>') gt = 1;
int i;
for (i = 0; i < count; i++) {
int cmp = compareAB(array[i].key,array[i].key_len,key,len);
if (eq && !cmp) return i;
if (cmp > 0 && gt) return i;
if (cmp >= 0 && lt) {
i--;
break;
}
}
if (lt && i == count) return count-1;
if (i < 0 || i >= count) return -1;
return i;
}
int iteratorFuzzTest(int keymode, size_t count) {
count = rc4rand()%count;
rax *rax = raxNew();
arrayItem *array = malloc(sizeof(arrayItem)*count);
/* Fill a radix tree and a linear array with some data. */
unsigned char key[1024];
size_t j = 0;
for (size_t i = 0; i < count; i++) {
uint32_t keylen = int2key((char*)key,sizeof(key),i,keymode);
void *val = (void*)(unsigned long)htHash(key,keylen);
if (raxInsert(rax,key,keylen,val,NULL)) {
array[j].key = malloc(keylen);
array[j].key_len = keylen;
memcpy(array[j].key,key,keylen);
j++;
}
}
count = raxSize(rax);
/* Sort the array. */
qsort(array,count,sizeof(arrayItem),compareArrayItems);
/* Perform a random seek operation. */
uint32_t keylen = int2key((char*)key,sizeof(key),
rc4rand()%(count ? count : 1),keymode);
raxIterator iter;
raxStart(&iter,rax);
char *seekops[] = {"==",">=","<=",">","<","^","$"};
char *seekop = seekops[rc4rand() % 7];
raxSeek(&iter,seekop,key,keylen);
int seekidx = arraySeek(array,count,key,keylen,seekop);
int next = rc4rand() % 2;
int iteration = 0;
while(1) {
int rax_res;
int array_res;
unsigned char *array_key = NULL;
size_t array_key_len = 0;
array_res = (seekidx == -1) ? 0 : 1;
if (array_res) {
if (next && seekidx == (signed)count) array_res = 0;
if (!next && seekidx == -1) array_res = 0;
if (array_res != 0) {
array_key = array[seekidx].key;
array_key_len = array[seekidx].key_len;
}
}
if (next) {
rax_res = raxNext(&iter);
if (array_res) seekidx++;
} else {
rax_res = raxPrev(&iter);
if (array_res) seekidx--;
}
/* Both the iteratos should agree about EOF. */
if (array_res != rax_res) {
printf("Iter fuzz: iterators do not agree about EOF "
"at iteration %d: "
"array_more=%d rax_more=%d next=%d\n",
iteration, array_res, rax_res, next);
return 1;
}
if (array_res == 0) break; /* End of iteration reached. */
/* Check that the returned keys are the same. */
if (iter.key_len != array_key_len ||
memcmp(iter.key,array_key,iter.key_len))
{
printf("Iter fuzz: returned element %d mismatch\n", iteration);
printf("SEEKOP was %s\n",seekop);
if (keymode != KEY_RANDOM) {
printf("\n");
printf("BUG SEEKING: %s %.*s\n",seekop,keylen,key);
printf("%.*s (iter) VS %.*s (array) next=%d idx=%d "
"count=%lu keymode=%d\n",
(int)iter.key_len, (char*)iter.key,
(int)array_key_len, (char*)array_key,
next, seekidx, (unsigned long)count, keymode);
if (count < 500) {
printf("\n");
for (unsigned int j = 0; j < count; j++) {
printf("%d) '%.*s'\n",j,
(int)array[j].key_len,
array[j].key);
}
}
exit(1);
}
return 1;
}
iteration++;
}
for (unsigned int i = 0; i < count; i++) free(array[i].key);
free(array);
raxStop(&iter);
raxFree(rax);
return 0;
}
/* Test the random walk function. */
int randomWalkTest(void) {
rax *t = raxNew();
char *toadd[] = {"alligator","alien","baloon","chromodynamic","romane","romanus","romulus","rubens","ruber","rubicon","rubicundus","all","rub","ba",NULL};
long numele;
for (numele = 0; toadd[numele] != NULL; numele++) {
raxInsert(t,(unsigned char*)toadd[numele],
strlen(toadd[numele]),(void*)numele,NULL);
}
raxIterator iter;
raxStart(&iter,t);
raxSeek(&iter,"^",NULL,0);
int maxloops = 100000;
while(raxRandomWalk(&iter,0) && maxloops--) {
int nulls = 0;
for (long i = 0; i < numele; i++) {
if (toadd[i] == NULL) {
nulls++;
continue;
}
if (strlen(toadd[i]) == iter.key_len &&
memcmp(toadd[i],iter.key,iter.key_len) == 0)
{
toadd[i] = NULL;
nulls++;
}
}
if (nulls == numele) break;
}
if (maxloops == 0) {
printf("randomWalkTest() is unable to report all the elements "
"after 100k iterations!\n");
return 1;
}
raxStop(&iter);
raxFree(t);
return 0;
}
int iteratorUnitTests(void) {
rax *t = raxNew();
char *toadd[] = {"alligator","alien","baloon","chromodynamic","romane","romanus","romulus","rubens","ruber","rubicon","rubicundus","all","rub","ba",NULL};
for (int x = 0; x < 10000; x++) rc4rand();
long items = 0;
while(toadd[items] != NULL) items++;
for (long i = 0; i < items; i++)
raxInsert(t,(unsigned char*)toadd[i],strlen(toadd[i]),(void*)i,NULL);
raxIterator iter;
raxStart(&iter,t);
struct {
char *seek;
size_t seeklen;
char *seekop;
char *expected;
} tests[] = {
/* Seek value. */ /* Expected result. */
{"rpxxx",5,"<=", "romulus"},
{"rom",3,">=", "romane"},
{"rub",3,">=", "rub"},
{"rub",3,">", "rubens"},
{"rub",3,"<", "romulus"},
{"rom",3,">", "romane"},
{"chro",4,">", "chromodynamic"},
{"chro",4,"<", "baloon"},
{"chromz",6,"<", "chromodynamic"},
{"",0,"^", "alien"},
{"zorro",5,"<=", "rubicundus"},
{"zorro",5,"<", "rubicundus"},
{"zorro",5,"<", "rubicundus"},
{"",0,"$", "rubicundus"},
{"ro",2,">=", "romane"},
{"zo",2,">", NULL},
{"zo",2,"==", NULL},
{"romane",6,"==", "romane"}
};
for (int i = 0; tests[i].expected != NULL; i++) {
raxSeek(&iter,tests[i].seekop,(unsigned char*)tests[i].seek,
tests[i].seeklen);
int retval = raxNext(&iter);
if (tests[i].expected != NULL) {
if (strlen(tests[i].expected) != iter.key_len ||
memcmp(tests[i].expected,iter.key,iter.key_len) != 0)
{
printf("Iterator unit test error: "
"test %d, %s expected, %.*s reported\n",
i, tests[i].expected, (int)iter.key_len,
(char*)iter.key);
return 1;
}
} else {
if (retval != 0) {
printf("Iterator unit test error: "
"EOF expected in test %d\n", i);
return 1;
}
}
}
raxStop(&iter);
raxFree(t);
return 0;
}
/* Test that raxInsert() / raxTryInsert() overwrite semantic
* works as expected. */
int tryInsertUnitTests(void) {
rax *t = raxNew();
raxInsert(t,(unsigned char*)"FOO",3,(void*)(long)1,NULL);
void *old, *val;
raxTryInsert(t,(unsigned char*)"FOO",3,(void*)(long)2,&old);
if (old != (void*)(long)1) {
printf("Old value not returned correctly by raxTryInsert(): %p",
old);
return 1;
}
val = raxFind(t,(unsigned char*)"FOO",3);
if (val != (void*)(long)1) {
printf("FOO value mismatch: is %p intead of 1", val);
return 1;
}
raxInsert(t,(unsigned char*)"FOO",3,(void*)(long)2,NULL);
val = raxFind(t,(unsigned char*)"FOO",3);
if (val != (void*)(long)2) {
printf("FOO value mismatch: is %p intead of 2", val);
return 1;
}
raxFree(t);
return 0;
}
/* Regression test #1: Iterator wrong element returned after seek. */
int regtest1(void) {
rax *rax = raxNew();
raxInsert(rax,(unsigned char*)"LKE",3,(void*)(long)1,NULL);
raxInsert(rax,(unsigned char*)"TQ",2,(void*)(long)2,NULL);
raxInsert(rax,(unsigned char*)"B",1,(void*)(long)3,NULL);
raxInsert(rax,(unsigned char*)"FY",2,(void*)(long)4,NULL);
raxInsert(rax,(unsigned char*)"WI",2,(void*)(long)5,NULL);
raxIterator iter;
raxStart(&iter,rax);
raxSeek(&iter,">",(unsigned char*)"FMP",3);
if (raxNext(&iter)) {
if (iter.key_len != 2 ||
memcmp(iter.key,"FY",2))
{
printf("Regression test 1 failed: 'FY' expected, got: '%.*s'\n",
(int)iter.key_len, (char*)iter.key);
return 1;
}
}
raxStop(&iter);
raxFree(rax);
return 0;
}
/* Regression test #2: Crash when mixing NULL and not NULL values. */
int regtest2(void) {
rax *rt = raxNew();
raxInsert(rt,(unsigned char *)"a",1,(void *)100,NULL);
raxInsert(rt,(unsigned char *)"ab",2,(void *)101,NULL);
raxInsert(rt,(unsigned char *)"abc",3,(void *)NULL,NULL);
raxInsert(rt,(unsigned char *)"abcd",4,(void *)NULL,NULL);
raxInsert(rt,(unsigned char *)"abc",3,(void *)102,NULL);
raxFree(rt);
return 0;
}
/* Regression test #3: Wrong access at node value in raxRemoveChild()
* when iskey == 1 and isnull == 1: the memmove() was performed including
* the value length regardless of the fact there was no actual value.
*
* Note that this test always returns success but will trigger a
* Valgrind error. */
int regtest3(void) {
rax *rt = raxNew();
raxInsert(rt, (unsigned char *)"D",1,(void*)1,NULL);
raxInsert(rt, (unsigned char *)"",0,NULL,NULL);
raxRemove(rt, (unsigned char *)"D",1,NULL);
raxFree(rt);
return 0;
}
/* Regression test #4: Github issue #8, iterator does not populate the
* data field after seek in case of exact match. The test case is looks odd
* because it is quite indirect: Seeking "^" will result into seeking
* the element >= "", and since we just added "" an exact match happens,
* however we are using the original one from the bug report, since this
* is quite odd and may later protect against different bugs related to
* storing and fetching the empty string key. */
int regtest4(void) {
rax *rt = raxNew();
raxIterator iter;
raxInsert(rt, (unsigned char*)"", 0, (void *)-1, NULL);
if (raxFind(rt, (unsigned char*)"", 0) != (void *)-1) {
printf("Regression test 4 failed. Key value mismatch in raxFind()\n");
return 1;
}
raxStart(&iter,rt);
raxSeek(&iter, "^", NULL, 0);
raxNext(&iter);
if (iter.data != (void *)-1) {
printf("Regression test 4 failed. Key value mismatch in raxNext()\n");
return 1;
}
raxStop(&iter);
raxFree(rt);
return 0;
}
/* Less than seek bug when stopping in the middle of a compressed node. */
int regtest5(void) {
rax *rax = raxNew();
raxInsert(rax,(unsigned char*)"b",1,(void*)(long)1,NULL);
raxInsert(rax,(unsigned char*)"ba",2,(void*)(long)2,NULL);
raxInsert(rax,(unsigned char*)"banana",6,(void*)(long)3,NULL);
raxInsert(rax,(unsigned char*)"f",1,(void*)(long)4,NULL);
raxInsert(rax,(unsigned char*)"foobar",6,(void*)(long)5,NULL);
raxInsert(rax,(unsigned char*)"foobar123",9,(void*)(long)6,NULL);
raxIterator ri;
raxStart(&ri,rax);
raxSeek(&ri,"<",(unsigned char*)"foo",3);
raxNext(&ri);
if (ri.key_len != 1 || ri.key[0] != 'f') {
printf("Regression test 4 failed. Key value mismatch in raxNext()\n");
return 1;
}
raxStop(&ri);
raxFree(rax);
return 0;
}
/* Seek may not populate iterator data. See issue #25. */
int regtest6(void) {
rax *rax = raxNew();
char *key1 = "172.17.141.2/adminguide/v5.0/";
char *key2 = "172.17.141.2/adminguide/v5.0/entitlements-configure.html";
char *seekpoint = "172.17.141.2/adminguide/v5.0/entitlements";
raxInsert(rax, (unsigned char*)key1,strlen(key1),(void*)(long)1234, NULL);
raxInsert(rax, (unsigned char*)key2,strlen(key2),(void*)(long)5678, NULL);
raxIterator ri;
raxStart(&ri,rax);
raxSeek(&ri,"<=", (unsigned char*)seekpoint, strlen(seekpoint));
raxPrev(&ri);
if ((long)ri.data != 1234) {
printf("Regression test 6 failed. Key data not populated.\n");
return 1;
}
raxStop(&ri);
raxFree(rax);
return 0;
}
void benchmark(void) {
for (int mode = 0; mode < 2; mode++) {
printf("Benchmark with %s keys:\n",
(mode == 0) ? "integer" : "alphanumerical");
rax *t = raxNew();
long long start = ustime();
for (int i = 0; i < 5000000; i++) {
char buf[64];
int len = int2key(buf,sizeof(buf),i,mode);
raxInsert(t,(unsigned char*)buf,len,(void*)(long)i,NULL);
}
printf("Insert: %f\n", (double)(ustime()-start)/1000000);
printf("%llu total nodes\n", (unsigned long long)t->numnodes);
printf("%llu total elements\n", (unsigned long long)t->numele);
start = ustime();
for (int i = 0; i < 5000000; i++) {
char buf[64];
int len = int2key(buf,sizeof(buf),i,mode);
void *data = raxFind(t,(unsigned char*)buf,len);
if (data != (void*)(long)i) {
printf("Issue with %s: %p instead of %p\n", buf,
data, (void*)(long)i);
}
}
printf("Linear lookup: %f\n", (double)(ustime()-start)/1000000);
start = ustime();
for (int i = 0; i < 5000000; i++) {
char buf[64];
int r = rc4rand() % 5000000;
int len = int2key(buf,sizeof(buf),r,mode);
void *data = raxFind(t,(unsigned char*)buf,len);
if (data != (void*)(long)r) {
printf("Issue with %s: %p instead of %p\n", buf,
data, (void*)(long)r);
}
}
printf("Random lookup: %f\n", (double)(ustime()-start)/1000000);
start = ustime();
for (int i = 0; i < 5000000; i++) {
char buf[64];
int len = int2key(buf,sizeof(buf),i,mode);
buf[i%len] = '!'; /* "!" is never set into keys. */
void *data = raxFind(t,(unsigned char*) buf,len);
if (data != raxNotFound) {
printf("** Failed lookup did not reported NOT FOUND!\n");
}
}
printf("Failed lookup: %f\n", (double)(ustime()-start)/1000000);
start = ustime();
raxIterator ri;
raxStart(&ri,t);
raxSeek(&ri,"^",NULL,0);
int iter = 0;
while (raxNext(&ri)) iter++;
if (iter != 5000000) printf("** Warning iteration is incomplete\n");
raxStop(&ri);
printf("Full iteration: %f\n", (double)(ustime()-start)/1000000);
start = ustime();
for (int i = 0; i < 5000000; i++) {
char buf[64];
int len = int2key(buf,sizeof(buf),i,mode);
int retval = raxRemove(t,(unsigned char*)buf,len,NULL);
assert(retval == 1);
}
printf("Deletion: %f\n", (double)(ustime()-start)/1000000);
printf("%llu total nodes\n", (unsigned long long)t->numnodes);
printf("%llu total elements\n", (unsigned long long)t->numele);
raxFree(t);
}
}
/* Compressed nodes can only hold (2^29)-1 characters, so it is important
* to test for keys bigger than this amount, in order to make sure that
* the code to handle this edge case works as expected.
*
* This test is disabled by default because it uses a lot of memory. */
int testHugeKey(void) {
size_t max_keylen = ((1<<29)-1) + 100;
unsigned char *key = malloc(max_keylen);
if (key == NULL) goto oom;
memset(key,'a',max_keylen);
key[10] = 'X';
key[max_keylen-1] = 'Y';
rax *rax = raxNew();
int retval = raxInsert(rax,(unsigned char*)"aaabbb",6,(void*)5678L,NULL);
if (retval == 0 && errno == ENOMEM) goto oom;
retval = raxInsert(rax,key,max_keylen,(void*)1234L,NULL);
if (retval == 0 && errno == ENOMEM) goto oom;
void *value1 = raxFind(rax,(unsigned char*)"aaabbb",6);
void *value2 = raxFind(rax,key,max_keylen);
if (value1 != (void*)5678L || value2 != (void*)1234L) {
printf("Huge key test failed\n");
return 1;
}
raxFree(rax);
return 0;
oom:
fprintf(stderr,"Sorry, not enough memory to execute --hugekey test.");
exit(1);
}
int main(int argc, char **argv) {
rc4srand(1234);
/* Tests to run by default are set here. */
int do_benchmark = 0;
int do_units = 1;
int do_fuzz_cluster = 0;
int do_fuzz = 1;
int do_regression = 1;
int do_hugekey = 0;
/* If the user passed arguments, override the tests to run. */
if (argc > 1) {
do_benchmark = 0;
do_units = 0;
do_fuzz = 0;
do_regression = 0;
for (int i = 1; i < argc; i++) {
if (!strcmp(argv[i],"--bench")) {
do_benchmark = 1;
} else if (!strcmp(argv[i],"--fuzz-cluster")) {
do_fuzz_cluster = 1;
} else if (!strcmp(argv[i],"--fuzz")) {
do_fuzz = 1;
} else if (!strcmp(argv[i],"--units")) {
do_units = 1;
} else if (!strcmp(argv[i],"--regression")) {
do_regression = 1;
} else if (!strcmp(argv[i],"--hugekey")) {
do_hugekey = 1;
} else {
fprintf(stderr, "Usage: %s <options>:\n"
" [--bench (default off)]\n"
" [--fuzz-cluster] (default off)\n"
" [--fuzz] (default on)\n"
" [--units] (default on)\n"
" [--regression] (default on)\n"
" [--hugekey (default off)]\n"
"Without options all the default tests will\n"
"be executed.\n",
argv[0]);
exit(1);
}
}
}
int errors = 0;
if (do_units) {
printf("Unit tests: "); fflush(stdout);
if (randomWalkTest()) errors++;
if (iteratorUnitTests()) errors++;
if (tryInsertUnitTests()) errors++;
if (errors == 0) printf("OK\n");
}
if (do_regression) {
printf("Performing regression tests: "); fflush(stdout);
if (regtest1()) errors++;
if (regtest2()) errors++;
if (regtest3()) errors++;
if (regtest4()) errors++;
if (regtest5()) errors++;
if (regtest6()) errors++;
if (errors == 0) printf("OK\n");