1 // SPDX-License-Identifier: GPL-2.0-only
2 #define pr_fmt(fmt) "min_heap_test: " fmt
5 * Test cases for the min max heap.
8 #include <linux/log2.h>
9 #include <linux/min_heap.h>
10 #include <linux/module.h>
11 #include <linux/printk.h>
12 #include <linux/random.h>
14 static __init bool less_than(const void *lhs, const void *rhs)
16 return *(int *)lhs < *(int *)rhs;
19 static __init bool greater_than(const void *lhs, const void *rhs)
21 return *(int *)lhs > *(int *)rhs;
24 static __init void swap_ints(void *lhs, void *rhs)
26 int temp = *(int *)lhs;
28 *(int *)lhs = *(int *)rhs;
32 static __init int pop_verify_heap(bool min_heap,
33 struct min_heap *heap,
34 const struct min_heap_callbacks *funcs)
36 int *values = heap->data;
41 min_heap_pop(heap, funcs);
42 while (heap->nr > 0) {
44 if (last > values[0]) {
45 pr_err("error: expected %d <= %d\n", last,
50 if (last < values[0]) {
51 pr_err("error: expected %d >= %d\n", last,
57 min_heap_pop(heap, funcs);
62 static __init int test_heapify_all(bool min_heap)
64 int values[] = { 3, 1, 2, 4, 0x8000000, 0x7FFFFFF, 0,
65 -3, -1, -2, -4, 0x8000000, 0x7FFFFFF };
66 struct min_heap heap = {
68 .nr = ARRAY_SIZE(values),
69 .size = ARRAY_SIZE(values),
71 struct min_heap_callbacks funcs = {
72 .elem_size = sizeof(int),
73 .less = min_heap ? less_than : greater_than,
78 /* Test with known set of values. */
79 min_heapify_all(&heap, &funcs);
80 err = pop_verify_heap(min_heap, &heap, &funcs);
83 /* Test with randomly generated values. */
84 heap.nr = ARRAY_SIZE(values);
85 for (i = 0; i < heap.nr; i++)
86 values[i] = get_random_int();
88 min_heapify_all(&heap, &funcs);
89 err += pop_verify_heap(min_heap, &heap, &funcs);
94 static __init int test_heap_push(bool min_heap)
96 const int data[] = { 3, 1, 2, 4, 0x80000000, 0x7FFFFFFF, 0,
97 -3, -1, -2, -4, 0x80000000, 0x7FFFFFFF };
98 int values[ARRAY_SIZE(data)];
99 struct min_heap heap = {
102 .size = ARRAY_SIZE(values),
104 struct min_heap_callbacks funcs = {
105 .elem_size = sizeof(int),
106 .less = min_heap ? less_than : greater_than,
111 /* Test with known set of values copied from data. */
112 for (i = 0; i < ARRAY_SIZE(data); i++)
113 min_heap_push(&heap, &data[i], &funcs);
115 err = pop_verify_heap(min_heap, &heap, &funcs);
117 /* Test with randomly generated values. */
118 while (heap.nr < heap.size) {
119 temp = get_random_int();
120 min_heap_push(&heap, &temp, &funcs);
122 err += pop_verify_heap(min_heap, &heap, &funcs);
127 static __init int test_heap_pop_push(bool min_heap)
129 const int data[] = { 3, 1, 2, 4, 0x80000000, 0x7FFFFFFF, 0,
130 -3, -1, -2, -4, 0x80000000, 0x7FFFFFFF };
131 int values[ARRAY_SIZE(data)];
132 struct min_heap heap = {
135 .size = ARRAY_SIZE(values),
137 struct min_heap_callbacks funcs = {
138 .elem_size = sizeof(int),
139 .less = min_heap ? less_than : greater_than,
144 /* Fill values with data to pop and replace. */
145 temp = min_heap ? 0x80000000 : 0x7FFFFFFF;
146 for (i = 0; i < ARRAY_SIZE(data); i++)
147 min_heap_push(&heap, &temp, &funcs);
149 /* Test with known set of values copied from data. */
150 for (i = 0; i < ARRAY_SIZE(data); i++)
151 min_heap_pop_push(&heap, &data[i], &funcs);
153 err = pop_verify_heap(min_heap, &heap, &funcs);
156 for (i = 0; i < ARRAY_SIZE(data); i++)
157 min_heap_push(&heap, &temp, &funcs);
159 /* Test with randomly generated values. */
160 for (i = 0; i < ARRAY_SIZE(data); i++) {
161 temp = get_random_int();
162 min_heap_pop_push(&heap, &temp, &funcs);
164 err += pop_verify_heap(min_heap, &heap, &funcs);
169 static int __init test_min_heap_init(void)
173 err += test_heapify_all(true);
174 err += test_heapify_all(false);
175 err += test_heap_push(true);
176 err += test_heap_push(false);
177 err += test_heap_pop_push(true);
178 err += test_heap_pop_push(false);
180 pr_err("test failed with %d errors\n", err);
183 pr_info("test passed\n");
186 module_init(test_min_heap_init);
188 static void __exit test_min_heap_exit(void)
192 module_exit(test_min_heap_exit);
194 MODULE_LICENSE("GPL");