This source file includes following definitions.
- set_random_timeout
- check_heap
- test_heap_randomized
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 #include <stdlib.h>
28 #include "event2/event_struct.h"
29
30 #include "tinytest.h"
31 #include "tinytest_macros.h"
32 #include "../minheap-internal.h"
33
34 static void
35 set_random_timeout(struct event *ev)
36 {
37 ev->ev_timeout.tv_sec = rand();
38 ev->ev_timeout.tv_usec = rand() & 0xfffff;
39 ev->ev_timeout_pos.min_heap_idx = -1;
40 }
41
42 static void
43 check_heap(struct min_heap *heap)
44 {
45 unsigned i;
46 for (i = 1; i < heap->n; ++i) {
47 unsigned parent_idx = (i-1)/2;
48 tt_want(evutil_timercmp(&heap->p[i]->ev_timeout,
49 &heap->p[parent_idx]->ev_timeout, >=));
50 }
51 }
52
53 static void
54 test_heap_randomized(void *ptr)
55 {
56 struct min_heap heap;
57 struct event *inserted[1024];
58 struct event *e, *last_e;
59 int i;
60
61 min_heap_ctor(&heap);
62
63 for (i = 0; i < 1024; ++i) {
64 inserted[i] = malloc(sizeof(struct event));
65 set_random_timeout(inserted[i]);
66 min_heap_push(&heap, inserted[i]);
67 }
68 check_heap(&heap);
69
70 tt_assert(min_heap_size(&heap) == 1024);
71
72 for (i = 0; i < 512; ++i) {
73 min_heap_erase(&heap, inserted[i]);
74 if (0 == (i % 32))
75 check_heap(&heap);
76 }
77 tt_assert(min_heap_size(&heap) == 512);
78
79 last_e = min_heap_pop(&heap);
80 while (1) {
81 e = min_heap_pop(&heap);
82 if (!e)
83 break;
84 tt_want(evutil_timercmp(&last_e->ev_timeout,
85 &e->ev_timeout, <=));
86 }
87 tt_assert(min_heap_size(&heap) == 0);
88 end:
89 for (i = 0; i < 1024; ++i)
90 free(inserted[i]);
91
92 min_heap_dtor(&heap);
93 }
94
95 struct testcase_t minheap_testcases[] = {
96 { "randomized", test_heap_randomized, 0, NULL, NULL },
97 END_OF_TESTCASES
98 };