HashMapTests.cpp 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. #include "../Tests.hpp"
  2. #include "core/data/HashMap.hpp"
  3. #include "core/data/ProbingHashMap.hpp"
  4. template struct Core::ProbingHashMap<int, int>;
  5. using ProbingIntMap = Core::ProbingHashMap<int, int>;
  6. template struct Core::HashMap<int, int>;
  7. using IntMap = Core::HashMap<int, int>;
  8. constexpr int INVALID = Core::emptyValue<int>();
  9. template<typename T>
  10. static T getTestIntMap() {
  11. T map;
  12. map.add(1, 3).add(2, 4).add(3, 5).add(INVALID, 20);
  13. return map;
  14. }
  15. template<typename T>
  16. static void checkIntMap(T& map) {
  17. int* a = map.search(1);
  18. int* b = map.search(2);
  19. int* c = map.search(3);
  20. int* d = map.search(INVALID);
  21. if(CORE_TEST_NOT_NULL(a) && CORE_TEST_NOT_NULL(b) &&
  22. CORE_TEST_NOT_NULL(c) && CORE_TEST_NOT_NULL(d)) {
  23. CORE_TEST_EQUAL(3, *a);
  24. CORE_TEST_EQUAL(4, *b);
  25. CORE_TEST_EQUAL(5, *c);
  26. CORE_TEST_EQUAL(20, *d);
  27. }
  28. }
  29. template<typename T>
  30. static void testAdd() {
  31. T map;
  32. map.add(5, 4);
  33. int* value = map.search(5);
  34. CORE_TEST_NOT_NULL(value);
  35. if(value != nullptr) {
  36. CORE_TEST_EQUAL(4, *value);
  37. }
  38. }
  39. template<typename T>
  40. static void testMultipleAdd() {
  41. T map = getTestIntMap<T>();
  42. CORE_TEST_TRUE(map.contains(1));
  43. CORE_TEST_TRUE(map.contains(2));
  44. CORE_TEST_TRUE(map.contains(3));
  45. checkIntMap(map);
  46. }
  47. template<typename T>
  48. static void testSearch() {
  49. T map;
  50. CORE_TEST_NULL(map.search(6));
  51. map.add(5, 4).add(10, 3).add(15, 2);
  52. CORE_TEST_NULL(map.search(6));
  53. }
  54. template<typename T>
  55. static void testAddReplace() {
  56. T map;
  57. map.add(5, 4).add(5, 10);
  58. CORE_TEST_TRUE(map.contains(5));
  59. int* a = map.search(5);
  60. if(CORE_TEST_NOT_NULL(a)) {
  61. CORE_TEST_EQUAL(10, *a);
  62. }
  63. }
  64. template<typename T>
  65. static void testClear() {
  66. T map;
  67. map.add(5, 4).add(4, 10);
  68. map.clear();
  69. CORE_TEST_FALSE(map.contains(5));
  70. CORE_TEST_FALSE(map.contains(4));
  71. }
  72. template<typename T>
  73. static void testOverflow(bool light) {
  74. int limit = light ? 10000 : 100000;
  75. T map;
  76. map.add(INVALID, 42);
  77. for(int i = 0; i < limit; i++) {
  78. map.add(i, i);
  79. }
  80. for(int i = 0; i < limit; i++) {
  81. CORE_TEST_TRUE(map.contains(i));
  82. }
  83. CORE_TEST_TRUE(map.contains(INVALID));
  84. }
  85. static int aInstances = 0;
  86. struct HashMapTest {
  87. int a;
  88. int b;
  89. HashMapTest(int a_, int b_) : a(a_), b(b_) {
  90. }
  91. // none of these should be needed for the hashmap
  92. HashMapTest(const HashMapTest&) = delete;
  93. HashMapTest(HashMapTest&&) = delete;
  94. HashMapTest& operator=(const HashMapTest&) = delete;
  95. HashMapTest& operator=(HashMapTest&&) = delete;
  96. bool operator==(const HashMapTest& other) const {
  97. return a == other.a && b == other.b;
  98. }
  99. template<typename String>
  100. void toString(String& s) const {
  101. s.append("A(").append(a).append(", ").append(b).append(")");
  102. }
  103. };
  104. struct ProbingTest final : public HashMapTest {
  105. ProbingTest(int a_, int b_) : HashMapTest(a_, b_) {
  106. aInstances++;
  107. }
  108. ProbingTest(const ProbingTest& o) : HashMapTest(o.a, o.b) {
  109. aInstances++;
  110. }
  111. ProbingTest(ProbingTest&& o) : HashMapTest(o.a, o.b) {
  112. aInstances++;
  113. }
  114. ~ProbingTest() {
  115. aInstances--;
  116. }
  117. ProbingTest& operator=(ProbingTest o) {
  118. a = o.a;
  119. b = o.b;
  120. return *this;
  121. }
  122. };
  123. static void testEmplaceProbing() {
  124. {
  125. Core::ProbingHashMap<int, ProbingTest> map;
  126. ProbingTest* ar = nullptr;
  127. CORE_TEST_TRUE(map.tryEmplace(ar, 0, 3, 4));
  128. CORE_TEST_TRUE(map.tryEmplace(ar, 3, 4, 5));
  129. CORE_TEST_TRUE(map.tryEmplace(ar, 20, 5, 6));
  130. CORE_TEST_FALSE(map.tryEmplace(ar, 3, 6, 7));
  131. CORE_TEST_FALSE(map.tryEmplace(ar, 20, 7, 8));
  132. ProbingTest* a = map.search(0);
  133. ProbingTest* b = map.search(3);
  134. ProbingTest* c = map.search(20);
  135. if(CORE_TEST_NOT_NULL(a) && CORE_TEST_NOT_NULL(b) &&
  136. CORE_TEST_NOT_NULL(c)) {
  137. CORE_TEST_EQUAL(ProbingTest(3, 4), *a);
  138. CORE_TEST_EQUAL(ProbingTest(4, 5), *b);
  139. CORE_TEST_EQUAL(ProbingTest(5, 6), *c);
  140. }
  141. }
  142. CORE_TEST_EQUAL(0, aInstances);
  143. }
  144. template<typename T>
  145. static void testToString() {
  146. if constexpr(Core::IsSame<T, IntMap>) {
  147. CORE_TEST_STRING("[1 = 3, 2 = 4, 3 = 5, 2147483647 = 20]",
  148. getTestIntMap<T>());
  149. } else {
  150. CORE_TEST_STRING("[2 = 4, 1 = 3, 3 = 5, 2147483647 = 20]",
  151. getTestIntMap<T>());
  152. }
  153. CORE_TEST_STRING("[1 = 3]", T().add(1, 3));
  154. CORE_TEST_STRING("[]", T());
  155. }
  156. template<typename T>
  157. static void testCopy() {
  158. T map = getTestIntMap<T>();
  159. T copy = map;
  160. T copyA;
  161. copyA = map;
  162. checkIntMap(map);
  163. checkIntMap(copy);
  164. checkIntMap(copyA);
  165. map.add(1, 20).add(2, 30).add(3, 40);
  166. checkIntMap(copy);
  167. checkIntMap(copyA);
  168. }
  169. template<typename T>
  170. static void testMove() {
  171. T map = getTestIntMap<T>();
  172. T move(Core::move(map));
  173. checkIntMap(move);
  174. }
  175. template<typename T>
  176. static void testMoveAssignment() {
  177. T map = getTestIntMap<T>();
  178. T move;
  179. move = Core::move(map);
  180. checkIntMap(move);
  181. }
  182. template<typename T>
  183. static void testEntryForEach() {
  184. T map;
  185. map.add(5, 4).add(10, 3).add(15, 2);
  186. int counter = 0;
  187. for(auto entry : map) {
  188. counter += entry.getKey() + entry.value;
  189. }
  190. CORE_TEST_EQUAL(39, counter);
  191. const T& cmap = map;
  192. counter = 0;
  193. for(auto entry : cmap) {
  194. counter += entry.getKey() + entry.value;
  195. }
  196. CORE_TEST_EQUAL(39, counter);
  197. }
  198. template<typename T>
  199. static void testKeyForEach() {
  200. T map;
  201. map.add(5, 4).add(10, 3).add(15, 2);
  202. int counter = 0;
  203. for(const int& key : map.getKeys()) {
  204. counter += key;
  205. }
  206. CORE_TEST_EQUAL(30, counter);
  207. const T& cmap = map;
  208. counter = 0;
  209. for(const int& key : cmap.getKeys()) {
  210. counter += key;
  211. }
  212. CORE_TEST_EQUAL(30, counter);
  213. }
  214. template<typename T>
  215. static void testValueForEach() {
  216. T map;
  217. map.add(5, 4).add(10, 3).add(15, 2);
  218. int counter = 0;
  219. for(int& value : map.getValues()) {
  220. counter += value;
  221. }
  222. CORE_TEST_EQUAL(9, counter);
  223. const T& cmap = map;
  224. counter = 0;
  225. for(const int& value : cmap.getValues()) {
  226. counter += value;
  227. }
  228. CORE_TEST_EQUAL(9, counter);
  229. }
  230. template<typename T>
  231. static void testType() {
  232. Core::ProbingHashMap<T, int> m;
  233. m.add(T(), 3);
  234. }
  235. template<typename T>
  236. static void testTypes() {
  237. testType<char>();
  238. testType<signed char>();
  239. testType<signed short>();
  240. testType<signed int>();
  241. testType<signed long>();
  242. testType<signed long long>();
  243. testType<unsigned char>();
  244. testType<unsigned short>();
  245. testType<unsigned int>();
  246. testType<unsigned long>();
  247. testType<unsigned long long>();
  248. }
  249. template<typename T>
  250. static void testInvalid() {
  251. T map;
  252. int* v;
  253. CORE_TEST_TRUE(map.tryEmplace(v, INVALID, 2));
  254. if(CORE_TEST_NOT_NULL(v)) {
  255. CORE_TEST_EQUAL(2, *v);
  256. }
  257. CORE_TEST_FALSE(map.tryEmplace(v, INVALID, 6));
  258. if(CORE_TEST_NOT_NULL(v)) {
  259. CORE_TEST_EQUAL(2, *v);
  260. }
  261. CORE_TEST_EQUAL(3, map.put(INVALID, 3));
  262. v = map.search(INVALID);
  263. if(CORE_TEST_NOT_NULL(v)) {
  264. CORE_TEST_EQUAL(3, *v);
  265. }
  266. map.clear();
  267. CORE_TEST_NULL(map.search(INVALID));
  268. }
  269. template<typename T>
  270. static void testInvalidPut() {
  271. T map;
  272. CORE_TEST_EQUAL(3, map.put(INVALID, 3));
  273. int* v = map.search(INVALID);
  274. if(CORE_TEST_NOT_NULL(v)) {
  275. CORE_TEST_EQUAL(3, *v);
  276. }
  277. }
  278. template<typename T>
  279. static void testAddCollisions() {
  280. T map;
  281. for(int i = 0; i < 8; i++) {
  282. map.add(i * 16, i);
  283. }
  284. }
  285. template<typename T>
  286. static void testMap(bool light) {
  287. testAdd<T>();
  288. testMultipleAdd<T>();
  289. testSearch<T>();
  290. testAddReplace<T>();
  291. testClear<T>();
  292. testOverflow<T>(light);
  293. testToString<T>();
  294. testCopy<T>();
  295. testMove<T>();
  296. testMoveAssignment<T>();
  297. testEntryForEach<T>();
  298. testKeyForEach<T>();
  299. testValueForEach<T>();
  300. testTypes<T>();
  301. testInvalid<T>();
  302. testInvalidPut<T>();
  303. testAddCollisions<T>();
  304. }
  305. static void testEmplace() {
  306. Core::HashMap<int, HashMapTest> map;
  307. HashMapTest* ar = nullptr;
  308. CORE_TEST_TRUE(map.tryEmplace(ar, 0, 3, 4));
  309. CORE_TEST_TRUE(map.tryEmplace(ar, 3, 4, 5));
  310. CORE_TEST_TRUE(map.tryEmplace(ar, 20, 5, 6));
  311. CORE_TEST_FALSE(map.tryEmplace(ar, 3, 6, 7));
  312. CORE_TEST_FALSE(map.tryEmplace(ar, 20, 7, 8));
  313. HashMapTest* a = map.search(0);
  314. HashMapTest* b = map.search(3);
  315. HashMapTest* c = map.search(20);
  316. if(CORE_TEST_NOT_NULL(a) && CORE_TEST_NOT_NULL(b) &&
  317. CORE_TEST_NOT_NULL(c)) {
  318. CORE_TEST_EQUAL(HashMapTest(3, 4), *a);
  319. CORE_TEST_EQUAL(HashMapTest(4, 5), *b);
  320. CORE_TEST_EQUAL(HashMapTest(5, 6), *c);
  321. }
  322. }
  323. static void testRemove() {
  324. IntMap map;
  325. map.add(1, 3).add(2, 4).add(3, 5);
  326. CORE_TEST_TRUE(map.remove(2));
  327. CORE_TEST_FALSE(map.remove(7));
  328. int* a = map.search(1);
  329. int* b = map.search(2);
  330. int* c = map.search(3);
  331. CORE_TEST_NULL(b);
  332. if(CORE_TEST_NOT_NULL(a) && CORE_TEST_NOT_NULL(c)) {
  333. CORE_TEST_EQUAL(3, *a);
  334. CORE_TEST_EQUAL(5, *c);
  335. }
  336. }
  337. void Core::testHashMap(bool light) {
  338. testMap<ProbingIntMap>(light);
  339. testMap<IntMap>(light);
  340. testEmplace();
  341. testEmplaceProbing();
  342. testRemove();
  343. }