test/test_map.cpp

Fri, 27 May 2022 14:14:55 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 27 May 2022 14:14:55 +0200
changeset 561
bb17790af41e
parent 556
3d19cae7e924
child 562
fd3368c20413
permissions
-rw-r--r--

#199 test removing via iterator

     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2021 Mike Becker, Olaf Wintermann All rights reserved.
     5  *
     6  * Redistribution and use in source and binary forms, with or without
     7  * modification, are permitted provided that the following conditions are met:
     8  *
     9  *   1. Redistributions of source code must retain the above copyright
    10  *      notice, this list of conditions and the following disclaimer.
    11  *
    12  *   2. Redistributions in binary form must reproduce the above copyright
    13  *      notice, this list of conditions and the following disclaimer in the
    14  *      documentation and/or other materials provided with the distribution.
    15  *
    16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    26  * POSSIBILITY OF SUCH DAMAGE.
    27  */
    29 #include "cx/hash_map.h"
    30 #include "cx/utils.h"
    31 #include "util_allocator.h"
    33 #include <gtest/gtest.h>
    34 #include <unordered_map>
    35 #include <unordered_set>
    37 struct map_operation {
    38     enum {
    39         put, rm
    40     } op;
    41     char const *key;
    42     char const *value;
    43 };
    45 auto generate_map_operations() -> std::vector<map_operation> {
    46     return {
    47             {map_operation::put, "key 1",          "test"},
    48             {map_operation::put, "key 2",          "blub"},
    49             {map_operation::put, "key 3",          "hallo"},
    50             {map_operation::put, "key 2",          "foobar"},
    51             {map_operation::put, "key 4",          "value 4"},
    52             {map_operation::put, "key 5",          "value 5"},
    53             {map_operation::put, "key 6",          "value 6"},
    54             {map_operation::rm,  "key 4",          nullptr},
    55             {map_operation::put, "key 7",          "value 7"},
    56             {map_operation::put, "key 8",          "value 8"},
    57             {map_operation::rm,  "does not exist", nullptr},
    58             {map_operation::put, "key 9",          "value 9"},
    59             {map_operation::put, "key 6",          "other value"},
    60             {map_operation::put, "key 7",          "something else"},
    61             {map_operation::rm,  "key 8",          nullptr},
    62             {map_operation::rm,  "key 2",          nullptr},
    63             {map_operation::put, "key 8",          "new value"},
    64     };
    65 }
    67 static void verify_map_contents(
    68         CxMap *map,
    69         std::unordered_map<std::string, std::string> const &refmap
    70 ) {
    71     // verify key iterator
    72     {
    73         auto keyiter = cxMapIteratorKeys(map);
    74         std::unordered_set<std::string> keys;
    75         cx_foreach(CxDataPtr*, elem, keyiter) {
    76             // we use that our test keys contain NULL-terminated strings
    77             keys.insert(std::string(reinterpret_cast<const char *>(elem->data)));
    78         }
    79         EXPECT_EQ(keyiter.index, map->size);
    80         ASSERT_EQ(keys.size(), map->size);
    81         for (auto &&k: keys) {
    82             EXPECT_NE(refmap.find(k), refmap.end());
    83         }
    84     }
    86     // verify value iterator
    87     {
    88         auto valiter = cxMapIteratorValues(map);
    89         std::unordered_set<std::string> values; // we use that the values in our test data are unique strings
    90         cx_foreach(char const*, elem, valiter) {
    91             values.insert(std::string(elem));
    92         }
    93         EXPECT_EQ(valiter.index, map->size);
    94         ASSERT_EQ(values.size(), map->size);
    95         for (auto &&v: values) {
    96             EXPECT_NE(std::find_if(refmap.begin(), refmap.end(),
    97                                    [v](auto const &e) { return e.second == v; }), refmap.end());
    98         }
    99     }
   101     // verify pair iterator
   102     {
   103         auto pairiter = cxMapIterator(map);
   104         std::unordered_map<std::string, std::string> pairs;
   105         cx_foreach(CxMapEntry*, entry, pairiter) {
   106             pairs[std::string((char const *) entry->key->data)] = std::string((char *) entry->value);
   107         }
   108         EXPECT_EQ(pairiter.index, map->size);
   109         ASSERT_EQ(pairs.size(), refmap.size());
   110         for (auto &&p: pairs) {
   111             ASSERT_EQ(p.second, refmap.at(p.first));
   112         }
   113     }
   114 }
   116 TEST(CxHashMap, Create) {
   117     CxTestingAllocator allocator;
   118     auto map = cxHashMapCreate(&allocator, 0);
   119     auto hmap = reinterpret_cast<struct cx_hash_map_s *>(map);
   120     EXPECT_GT(hmap->bucket_count, 0);
   121     cx_for_n(i, hmap->bucket_count) {
   122         EXPECT_EQ(hmap->buckets[i], nullptr);
   123     }
   124     EXPECT_EQ(map->size, 0);
   125     EXPECT_EQ(map->allocator, &allocator);
   127     cxMapDestroy(map);
   128     EXPECT_TRUE(allocator.verify());
   129 }
   131 TEST(CxHashMap, BasicOperations) {
   132     // create the map
   133     CxTestingAllocator allocator;
   134     auto map = cxHashMapCreate(&allocator, 8);
   136     // create a reference map
   137     std::unordered_map<std::string, std::string> refmap;
   139     // generate operations
   140     auto ops = generate_map_operations();
   142     // verify iterators for empty map
   143     verify_map_contents(map, refmap);
   145     // execute operations and verify results
   146     for (auto &&op: ops) {
   147         CxDataPtr key = cxMapKeyStr(op.key);
   148         if (op.op == map_operation::put) {
   149             // execute a put operation and verify that the exact value can be read back
   150             refmap[std::string(op.key)] = std::string(op.value);
   151             int result = cxMapPut(map, key, (void *) op.value);
   152             EXPECT_EQ(result, 0);
   153             auto added = cxMapGet(map, key);
   154             EXPECT_EQ(memcmp(op.value, added, strlen(op.value)), 0);
   155         } else {
   156             // execute a remove and verify that the removed element was returned (or nullptr)
   157             auto found = refmap.find(op.key);
   158             auto removed = cxMapRemove(map, key);
   159             if (found == refmap.end()) {
   160                 EXPECT_EQ(removed, nullptr);
   161             } else {
   162                 EXPECT_EQ(std::string((char *) removed), found->second);
   163                 refmap.erase(found);
   164             }
   165         }
   166         // compare the current map state with the reference map
   167         verify_map_contents(map, refmap);
   168     }
   170     // destroy the map and verify the memory (de)allocations
   171     cxMapDestroy(map);
   172     EXPECT_TRUE(allocator.verify());
   173 }
   175 TEST(CxHashMap, RemoveViaIterator) {
   176     CxTestingAllocator allocator;
   177     auto map = cxHashMapCreate(&allocator, 4);
   179     cxMapPut(map, cxMapKeyStr("key 1"), (void *) "val 1");
   180     cxMapPut(map, cxMapKeyStr("key 2"), (void *) "val 2");
   181     cxMapPut(map, cxMapKeyStr("key 3"), (void *) "val 3");
   182     cxMapPut(map, cxMapKeyStr("key 4"), (void *) "val 4");
   183     cxMapPut(map, cxMapKeyStr("key 5"), (void *) "val 5");
   184     cxMapPut(map, cxMapKeyStr("key 6"), (void *) "val 6");
   186     auto iter = cxMapIterator(map);
   187     cx_foreach(CxMapEntry*, entry, iter) {
   188         if (entry->key->data[4] % 2 == 1) iter.remove = true;
   189     }
   190     EXPECT_EQ(map->size, 3);
   191     EXPECT_EQ(iter.index, map->size);
   193     EXPECT_EQ(cxMapGet(map, cxMapKeyStr("key 1")), nullptr);
   194     EXPECT_NE(cxMapGet(map, cxMapKeyStr("key 2")), nullptr);
   195     EXPECT_EQ(cxMapGet(map, cxMapKeyStr("key 3")), nullptr);
   196     EXPECT_NE(cxMapGet(map, cxMapKeyStr("key 4")), nullptr);
   197     EXPECT_EQ(cxMapGet(map, cxMapKeyStr("key 5")), nullptr);
   198     EXPECT_NE(cxMapGet(map, cxMapKeyStr("key 6")), nullptr);
   200     cxMapDestroy(map);
   201     EXPECT_TRUE(allocator.verify());
   202 }

mercurial