|
@@ -3,15 +3,18 @@
|
|
|
#include "utils/HashMap.h"
|
|
|
#include "utils/StringBuffer.h"
|
|
|
|
|
|
-constexpr int MAP_MIN_CAPACITY = 5;
|
|
|
-typedef HashMap<int, int, MAP_MIN_CAPACITY> IntMap;
|
|
|
+typedef HashMap<int, int> IntMap;
|
|
|
typedef StringBuffer<50> String;
|
|
|
|
|
|
static void testAdd(Test& test) {
|
|
|
+ (void)test;
|
|
|
IntMap map;
|
|
|
map.add(5, 4);
|
|
|
- test.checkEqual(true, map.contains(5), "contains added value");
|
|
|
- test.checkEqual(4, map.search(5, -1), "search finds added value");
|
|
|
+ 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) {
|
|
@@ -20,28 +23,43 @@ static void testMultipleAdd(Test& test) {
|
|
|
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");
|
|
|
- test.checkEqual(4, map.search(5, -1), "search finds added value 1");
|
|
|
- test.checkEqual(3, map.search(10, -1), "search finds added value 2");
|
|
|
- test.checkEqual(2, map.search(15, -1), "search finds 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(-1, map.search(6, -1), "search does not find missing key");
|
|
|
+ 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");
|
|
|
- test.checkEqual(10, map.search(5, -1), "search finds 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");
|
|
|
+ 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) {
|
|
@@ -49,8 +67,9 @@ static void testOverflow(Test& test) {
|
|
|
for(int i = 0; i < 1000000; i++) {
|
|
|
map.add(i, i);
|
|
|
}
|
|
|
- for(int i = 0; i < MAP_MIN_CAPACITY; i++) {
|
|
|
- test.checkEqual(true, map.contains(i), "still contains values after overflow");
|
|
|
+ for(int i = 0; i < 1000000; i++) {
|
|
|
+ test.checkEqual(true, map.contains(i),
|
|
|
+ "still contains values after overflow");
|
|
|
}
|
|
|
test.checkEqual(true, true, "survives overflow");
|
|
|
}
|
|
@@ -72,7 +91,7 @@ std::ostream& operator<<(std::ostream& os, const A& a) {
|
|
|
}
|
|
|
|
|
|
static void testEmplace(Test& test) {
|
|
|
- HashMap<int, A, 5> map;
|
|
|
+ HashMap<int, A> map;
|
|
|
|
|
|
bool r1 = map.tryEmplace(0, 3, 4);
|
|
|
bool r2 = map.tryEmplace(3, 4, 5);
|
|
@@ -80,9 +99,19 @@ static void testEmplace(Test& test) {
|
|
|
bool r4 = map.tryEmplace(3, 6, 7);
|
|
|
bool r5 = map.tryEmplace(20, 7, 8);
|
|
|
|
|
|
- test.checkEqual(A(3, 4), map.search(0, A(0, 0)), "contains emplaced value 1");
|
|
|
- test.checkEqual(A(4, 5), map.search(3, A(0, 0)), "contains emplaced value 2");
|
|
|
- test.checkEqual(A(5, 6), map.search(20, A(0, 0)), "contains emplaced value 3");
|
|
|
+ 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");
|
|
@@ -94,7 +123,8 @@ static void testEmplace(Test& test) {
|
|
|
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");
|
|
|
+ test.checkEqual(String("[1 = 3, 2 = 4, 3 = 5]"), String(map),
|
|
|
+ "to string 1");
|
|
|
}
|
|
|
|
|
|
static void testToString2(Test& test) {
|
|
@@ -112,9 +142,16 @@ static void testCopy(Test& test) {
|
|
|
IntMap map;
|
|
|
map.add(1, 3).add(2, 4).add(3, 5);
|
|
|
IntMap copy(map);
|
|
|
- test.checkEqual(map.search(1, 0), copy.search(1, -1), "copy has same values 1");
|
|
|
- test.checkEqual(map.search(2, 0), copy.search(2, -1), "copy has same values 2");
|
|
|
- test.checkEqual(map.search(3, 0), copy.search(3, -1), "copy has same values 3");
|
|
|
+
|
|
|
+ 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) {
|
|
@@ -122,34 +159,59 @@ static void testCopyAssignment(Test& test) {
|
|
|
map.add(1, 3).add(2, 4).add(3, 5);
|
|
|
IntMap copy;
|
|
|
copy = map;
|
|
|
- test.checkEqual(map.search(1, 0), copy.search(1, -1), "copy assignment has same values 1");
|
|
|
- test.checkEqual(map.search(2, 0), copy.search(2, -1), "copy assignment has same values 2");
|
|
|
- test.checkEqual(map.search(3, 0), copy.search(3, -1), "copy assignment has same values 3");
|
|
|
+
|
|
|
+ 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));
|
|
|
- test.checkEqual(3, move.search(1, -1), "move moves values 1");
|
|
|
- test.checkEqual(4, move.search(2, -1), "move moves values 2");
|
|
|
- test.checkEqual(5, move.search(3, -1), "move moves values 3");
|
|
|
- test.checkEqual(-1, map.search(1, -1), "move removes values 1");
|
|
|
- test.checkEqual(-1, map.search(2, -1), "move removes values 2");
|
|
|
- test.checkEqual(-1, map.search(3, -1), "move removes values 3");
|
|
|
+
|
|
|
+ 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);
|
|
|
- test.checkEqual(3, move.search(1, -1), "move assignment moves values 1");
|
|
|
- test.checkEqual(4, move.search(2, -1), "move assignment moves values 2");
|
|
|
- test.checkEqual(5, move.search(3, -1), "move assignment moves values 3");
|
|
|
- test.checkEqual(-1, map.search(1, -1), "move assignment removes values 1");
|
|
|
- test.checkEqual(-1, map.search(2, -1), "move assignment removes values 2");
|
|
|
- test.checkEqual(-1, map.search(3, -1), "move assignment removes values 3");
|
|
|
+
|
|
|
+ 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");
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
void HashMapTests::test() {
|