123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317 |
- #include "tests/HashMapTests.h"
- #include "tests/Test.h"
- #include "utils/HashMap.h"
- #include "utils/StringBuffer.h"
- typedef HashMap<int, int> IntMap;
- typedef StringBuffer<50> String;
- static void testAdd(Test& test) {
- (void)test;
- IntMap map;
- map.add(5, 4);
- int* value = map.search(5);
- test.checkEqual(true, value != nullptr, "contains added value");
- if(value != nullptr) {
- test.checkEqual(4, *value, "search finds added value");
- }
- }
- static void testMultipleAdd(Test& test) {
- IntMap map;
- map.add(5, 4).add(10, 3).add(15, 2);
- test.checkEqual(true, map.contains(5), "contains added value 1");
- test.checkEqual(true, map.contains(10), "contains added value 2");
- test.checkEqual(true, map.contains(15), "contains added value 3");
- int* a = map.search(5);
- int* b = map.search(10);
- int* c = map.search(15);
- test.checkEqual(true, a != nullptr, "contains added value 1");
- test.checkEqual(true, b != nullptr, "contains added value 2");
- test.checkEqual(true, c != nullptr, "contains added value 3");
- if(a != nullptr && b != nullptr && c != nullptr) {
- test.checkEqual(4, *a, "search finds added value 1");
- test.checkEqual(3, *b, "search finds added value 2");
- test.checkEqual(2, *c, "search finds added value 3");
- }
- }
- static void testSearch(Test& test) {
- IntMap map;
- test.checkEqual(true, nullptr == map.search(6),
- "search does not find missing key");
- }
- static void testAddReplace(Test& test) {
- IntMap map;
- map.add(5, 4).add(5, 10);
- test.checkEqual(true, map.contains(5), "contains replaced value");
- int* a = map.search(5);
- test.checkEqual(true, a != nullptr, "contains replaced value");
- if(a != nullptr) {
- test.checkEqual(10, *a, "search finds replaced value");
- }
- }
- static void testClear(Test& test) {
- IntMap map;
- map.add(5, 4).add(4, 10).clear();
- test.checkEqual(false, map.contains(5),
- "does not contain cleared values 1");
- test.checkEqual(false, map.contains(4),
- "does not contain cleared values 2");
- }
- static void testOverflow(Test& test) {
- IntMap map;
- for(int i = 0; i < 1000000; i++) {
- map.add(i, i);
- }
- for(int i = 0; i < 1000000; i++) {
- test.checkEqual(true, map.contains(i),
- "still contains values after overflow");
- }
- test.checkEqual(true, true, "survives overflow");
- }
- struct A {
- int a;
- int b;
- A(int a, int b) : a(a), b(b) {
- }
- bool operator==(const A& other) const {
- return a == other.a && b == other.b;
- }
- template<int L>
- void toString(StringBuffer<L>& s) const {
- s.append("A(").append(a).append(", ").append(b).append(")");
- }
- };
- static void testEmplace(Test& test) {
- HashMap<int, A> map;
- bool r1 = map.tryEmplace(0, 3, 4);
- bool r2 = map.tryEmplace(3, 4, 5);
- bool r3 = map.tryEmplace(20, 5, 6);
- bool r4 = map.tryEmplace(3, 6, 7);
- bool r5 = map.tryEmplace(20, 7, 8);
- A* a = map.search(0);
- A* b = map.search(3);
- A* c = map.search(20);
- test.checkEqual(true, a != nullptr, "contains emplaced value 1");
- test.checkEqual(true, b != nullptr, "contains emplaced value 2");
- test.checkEqual(true, c != nullptr, "contains emplaced value 3");
- if(a != nullptr && b != nullptr && c != nullptr) {
- test.checkEqual(A(3, 4), *a, "contains emplaced value 1");
- test.checkEqual(A(4, 5), *b, "contains emplaced value 2");
- test.checkEqual(A(5, 6), *c, "contains emplaced value 3");
- }
- test.checkEqual(false, r1, "emplacing returns correct value 1");
- test.checkEqual(false, r2, "emplacing returns correct value 2");
- test.checkEqual(false, r3, "emplacing returns correct value 3");
- test.checkEqual(true, r4, "emplacing returns correct value 4");
- test.checkEqual(true, r5, "emplacing returns correct value 5");
- }
- static void testToString1(Test& test) {
- IntMap map;
- map.add(1, 3).add(2, 4).add(3, 5);
- test.checkEqual(String("[1 = 3, 2 = 4, 3 = 5]"), String(map),
- "to string 1");
- }
- static void testToString2(Test& test) {
- IntMap map;
- map.add(1, 3);
- test.checkEqual(String("[1 = 3]"), String(map), "to string 2");
- }
- static void testToString3(Test& test) {
- IntMap map;
- test.checkEqual(String("[]"), String(map), "to string 3");
- }
- static void testCopy(Test& test) {
- IntMap map;
- map.add(1, 3).add(2, 4).add(3, 5);
- IntMap copy(map);
- int* a[6] = {map.search(1), map.search(2), map.search(3),
- copy.search(1), copy.search(2), copy.search(3)};
- for(int i = 0; i < 3; i++) {
- test.checkEqual(true, a[i] != nullptr && a[i + 3] != nullptr,
- "copy has same values");
- if(a[i] != nullptr && a[i + 3] != nullptr) {
- test.checkEqual(*(a[i]), *(a[i + 3]), "copy has same values");
- }
- }
- }
- static void testCopyAssignment(Test& test) {
- IntMap map;
- map.add(1, 3).add(2, 4).add(3, 5);
- IntMap copy;
- copy = map;
- int* a[6] = {map.search(1), map.search(2), map.search(3),
- copy.search(1), copy.search(2), copy.search(3)};
- for(int i = 0; i < 3; i++) {
- test.checkEqual(true, a[i] != nullptr && a[i + 3] != nullptr,
- "copy assignment has same values");
- if(a[i] != nullptr && a[i + 3] != nullptr) {
- test.checkEqual(*(a[i]), *(a[i + 3]),
- "copy assignment has same values");
- }
- }
- }
- static void testMove(Test& test) {
- IntMap map;
- map.add(1, 3).add(2, 4).add(3, 5);
- IntMap move(std::move(map));
- int* a = move.search(1);
- int* b = move.search(2);
- int* c = move.search(3);
- test.checkEqual(true, a != nullptr, "move moves values 1");
- test.checkEqual(true, b != nullptr, "move moves values 2");
- test.checkEqual(true, c != nullptr, "move moves values 3");
- if(a != nullptr && b != nullptr && c != nullptr) {
- test.checkEqual(3, *a, "move moves values 1");
- test.checkEqual(4, *b, "move moves values 2");
- test.checkEqual(5, *c, "move moves values 3");
- }
- }
- static void testMoveAssignment(Test& test) {
- IntMap map;
- map.add(1, 3).add(2, 4).add(3, 5);
- IntMap move;
- move = std::move(map);
- int* a = move.search(1);
- int* b = move.search(2);
- int* c = move.search(3);
- test.checkEqual(true, a != nullptr, "move moves values 1");
- test.checkEqual(true, b != nullptr, "move moves values 2");
- test.checkEqual(true, c != nullptr, "move moves values 3");
- if(a != nullptr && b != nullptr && c != nullptr) {
- test.checkEqual(3, *a, "move moves values 1");
- test.checkEqual(4, *b, "move moves values 2");
- test.checkEqual(5, *c, "move moves values 3");
- }
- }
- static void testRemove(Test& test) {
- IntMap map;
- map.add(1, 3).add(2, 4).add(3, 5);
- bool remove1 = map.remove(2);
- bool remove2 = map.remove(7);
- int* a = map.search(1);
- int* b = map.search(2);
- int* c = map.search(3);
- test.checkEqual(true, a != nullptr, "move moves values 1");
- test.checkEqual(true, b == nullptr, "move moves values 2");
- test.checkEqual(true, c != nullptr, "move moves values 3");
- test.checkEqual(true, remove1, "remove returns true");
- test.checkEqual(false, remove2, "remove returns false");
- if(a != nullptr && c != nullptr) {
- test.checkEqual(3, *a, "move moves values 1");
- test.checkEqual(5, *c, "move moves values 3");
- }
- }
- static void testEntryForEach(Test& test) {
- IntMap map;
- map.add(5, 4).add(10, 3).add(15, 2);
- int counter = 0;
- for(auto& entry : map.entries()) {
- counter += entry.getKey() + entry.value;
- }
- test.checkEqual(39, counter, "entry iterator");
- const IntMap& cmap = map;
- counter = 0;
- for(const auto& entry : cmap.entries()) {
- counter += entry.getKey() + entry.value;
- }
- test.checkEqual(39, counter, "const entry iterator");
- }
- static void testKeyForEach(Test& test) {
- IntMap map;
- map.add(5, 4).add(10, 3).add(15, 2);
- int counter = 0;
- for(const int& key : map.keys()) {
- counter += key;
- }
- test.checkEqual(30, counter, "key iterator");
- const IntMap& cmap = map;
- counter = 0;
- for(const int& key : cmap.keys()) {
- counter += key;
- }
- test.checkEqual(30, counter, "const key iterator");
- }
- static void testValueForEach(Test& test) {
- IntMap map;
- map.add(5, 4).add(10, 3).add(15, 2);
- int counter = 0;
- for(int& value : map.values()) {
- counter += value;
- }
- test.checkEqual(9, counter, "value iterator");
- const IntMap& cmap = map;
- counter = 0;
- for(const int& value : cmap.values()) {
- counter += value;
- }
- test.checkEqual(9, counter, "const value iterator");
- }
- void HashMapTests::test() {
- Test test("HashMap");
- testAdd(test);
- testMultipleAdd(test);
- testSearch(test);
- testAddReplace(test);
- testClear(test);
- testOverflow(test);
- testEmplace(test);
- testToString1(test);
- testToString2(test);
- testToString3(test);
- testCopy(test);
- testCopyAssignment(test);
- testMove(test);
- testMoveAssignment(test);
- testRemove(test);
- testEntryForEach(test);
- testKeyForEach(test);
- testValueForEach(test);
- test.finalize();
- }
|