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
|
/*
* Embedded Linux library
* Copyright (C) 2011-2014 Intel Corporation
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <assert.h>
#include <ell/ell.h>
static void test_ptr(const void *test_data)
{
struct l_hashmap *hashmap;
unsigned int n, i;
hashmap = l_hashmap_new();
assert(hashmap);
for (n = 0; n < 1024; n++) {
for (i = 1; i < n + 2; i++) {
if (!l_hashmap_insert(hashmap, L_UINT_TO_PTR(i),
L_UINT_TO_PTR(i)))
printf("[%u] insert error: %u\n", n, i);
}
if (l_hashmap_size(hashmap) != n + 1) {
printf("[%u] size mismatch: %u\n", n,
l_hashmap_size(hashmap));
}
for (i = 1; i < n + 2; i++) {
void *ptr = l_hashmap_lookup(hashmap, L_UINT_TO_PTR(i));
if (!ptr) {
printf("[%u] lookup empty: %u\n", n, i);
continue;
}
if (i != L_PTR_TO_UINT(ptr)) {
printf("[%u] lookup misatch: %u != %u\n",
n, i, L_PTR_TO_UINT(ptr));
}
}
for (i = 1; i < n + 2; i++) {
void *ptr = l_hashmap_remove(hashmap, L_UINT_TO_PTR(i));
if (!ptr) {
printf("[%u] remove empty: %u\n", n, i);
continue;
}
if (i != L_PTR_TO_UINT(ptr)) {
printf("[%u] remove misatch: %u != %u\n",
n, i, L_PTR_TO_UINT(ptr));
}
}
if (!l_hashmap_isempty(hashmap)) {
printf("[%u] not empty: %u\n", n,
l_hashmap_size(hashmap));
}
}
l_hashmap_destroy(hashmap, NULL);
}
static void test_str(const void *test_data)
{
struct l_hashmap *hashmap;
const void *ptr;
const char **itr, *strings[] = {
"hello",
"world",
"a",
"a long key here, bla bla bla bla bla hey! enough?",
NULL
};
hashmap = l_hashmap_string_new();
assert(hashmap);
/* basics */
for (itr = strings; *itr != NULL; itr++) {
assert(l_hashmap_insert(hashmap, *itr, itr));
ptr = l_hashmap_lookup(hashmap, *itr);
assert(ptr == itr);
}
assert(l_hashmap_lookup(hashmap, "not in hash") == NULL);
/* remove and look post */
for (itr = strings; *itr != NULL; itr++) {
const char **subitr;
assert(l_hashmap_remove(hashmap, *itr));
ptr = l_hashmap_lookup(hashmap, *itr);
assert(ptr == NULL);
for (subitr = itr + 1; *subitr != NULL; subitr++) {
ptr = l_hashmap_lookup(hashmap, *subitr);
assert(ptr == subitr);
}
}
assert(l_hashmap_size(hashmap) == 0);
/* add again, to remove backwards */
for (itr = strings; *itr != NULL; itr++) {
assert(l_hashmap_insert(hashmap, *itr, itr));
ptr = l_hashmap_lookup(hashmap, *itr);
assert(ptr == itr);
}
/* remove and look previous */
for (itr--; itr >= strings; itr--) {
const char **subitr;
assert(l_hashmap_remove(hashmap, *itr));
ptr = l_hashmap_lookup(hashmap, *itr);
assert(ptr == NULL);
for (subitr = strings; subitr < itr; subitr++) {
ptr = l_hashmap_lookup(hashmap, *subitr);
assert(ptr == subitr);
}
}
assert(l_hashmap_size(hashmap) == 0);
/* force different insert and lookup pointers */
for (itr = strings; *itr != NULL; itr++) {
char *str = l_strdup(*itr);
assert(l_hashmap_insert(hashmap, *itr, itr));
ptr = l_hashmap_lookup(hashmap, str);
l_free(str);
assert(ptr == itr);
}
assert(l_hashmap_lookup(hashmap, "not in hash") == NULL);
l_hashmap_destroy(hashmap, NULL);
}
static void test_duplicate(const void *test_data)
{
struct l_hashmap *hashmap;
int one = 1;
int two = 2;
int three = 3;
hashmap = l_hashmap_string_new();
assert(hashmap);
assert(l_hashmap_insert(hashmap, "one", &one));
assert(l_hashmap_insert(hashmap, "two", &two));
assert(l_hashmap_insert(hashmap, "one", &three));
assert(l_hashmap_lookup(hashmap, "two") == &two);
assert(l_hashmap_lookup(hashmap, "one") == &one);
assert(l_hashmap_remove(hashmap, "one") == &one);
assert(l_hashmap_lookup(hashmap, "one") == &three);
l_hashmap_destroy(hashmap, NULL);
};
static void test_replace(const void *test_data)
{
struct l_hashmap *hashmap;
int one = 1;
int two = 2;
int three = 3;
void *old_value;
hashmap = l_hashmap_string_new();
assert(hashmap);
assert(l_hashmap_replace(hashmap, "one", &one, &old_value));
assert(old_value == NULL);
assert(l_hashmap_replace(hashmap, "two", &two, &old_value));
assert(old_value == NULL);
assert(l_hashmap_size(hashmap) == 2);
assert(l_hashmap_replace(hashmap, "one", &three, &old_value));
assert(l_hashmap_size(hashmap) == 2);
assert(old_value == &one);
assert(l_hashmap_lookup(hashmap, "two") == &two);
assert(l_hashmap_lookup(hashmap, "one") == &three);
l_hashmap_destroy(hashmap, NULL);
};
static unsigned int always_0(const void *p)
{
return 0;
}
static bool remove_with_key(const void *key, void *value, void *user_data)
{
if (!strcmp(key, user_data))
return true;
return false;
}
static bool remove_always(const void *key, void *value, void *user_data)
{
return true;
}
static void test_foreach_remove(const void *test_data)
{
struct l_hashmap *hashmap;
int one = 1;
int two = 2;
int three = 3;
unsigned int n;
hashmap = l_hashmap_string_new();
assert(hashmap);
l_hashmap_set_hash_function(hashmap, always_0);
assert(l_hashmap_insert(hashmap, "one", &one));
assert(l_hashmap_insert(hashmap, "two", &two));
assert(l_hashmap_insert(hashmap, "three", &three));
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "three");
assert(n == 1);
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "two");
assert(n == 1);
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "one");
assert(n == 1);
assert(l_hashmap_insert(hashmap, "one", &one));
assert(l_hashmap_insert(hashmap, "two", &two));
assert(l_hashmap_insert(hashmap, "three", &three));
assert(l_hashmap_insert(hashmap, "three", &three));
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "three");
assert(n == 2);
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "two");
assert(n == 1);
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "one");
assert(n == 1);
assert(l_hashmap_insert(hashmap, "one", &one));
assert(l_hashmap_insert(hashmap, "one", &one));
assert(l_hashmap_insert(hashmap, "two", &two));
assert(l_hashmap_insert(hashmap, "three", &three));
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "one");
assert(n == 2);
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "two");
assert(n == 1);
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "three");
assert(n == 1);
assert(l_hashmap_insert(hashmap, "one", &one));
assert(l_hashmap_insert(hashmap, "two", &two));
assert(l_hashmap_insert(hashmap, "two", &two));
assert(l_hashmap_insert(hashmap, "three", &three));
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "two");
assert(n == 2);
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "one");
assert(n == 1);
n = l_hashmap_foreach_remove(hashmap, remove_with_key, "three");
assert(n == 1);
assert(l_hashmap_insert(hashmap, "one", &one));
assert(l_hashmap_insert(hashmap, "two", &two));
assert(l_hashmap_insert(hashmap, "three", &three));
n = l_hashmap_foreach_remove(hashmap, remove_always, NULL);
assert(n == 3);
n = l_hashmap_size(hashmap);
assert(n == 0);
l_hashmap_destroy(hashmap, NULL);
};
int main(int argc, char *argv[])
{
l_test_init(&argc, &argv);
l_test_add("Pointer Test", test_ptr, NULL);
l_test_add("String Test", test_str, NULL);
l_test_add("Duplicate Test", test_duplicate, NULL);
l_test_add("Replace Test", test_replace, NULL);
l_test_add("Foreach Remove Test", test_foreach_remove, NULL);
return l_test_run();
}
|