ArrayListTests.cpp 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. #include "tests/ArrayListTests.h"
  2. #include "data/ArrayList.h"
  3. #include "test/Test.h"
  4. using IntList = Core::ArrayList<int, 20>;
  5. using String = Core::ArrayString<128>;
  6. template<typename T>
  7. static String build(Core::Test& test, const T& t) {
  8. String s;
  9. test.checkFalse(s.append(t), "append works");
  10. return s;
  11. }
  12. static void testAdd(Core::Test& test) {
  13. IntList list;
  14. test.checkFalse(list.add(5), "add works 1");
  15. test.checkEqual(5, list[0], "contains added value");
  16. test.checkEqual(1, list.getLength(), "sizes is increased by add");
  17. }
  18. static void testMultipleAdd(Core::Test& test) {
  19. IntList list;
  20. test.checkFalse(list.add(4), "add works 2");
  21. test.checkFalse(list.add(3), "add works 3");
  22. test.checkFalse(list.add(2), "add works 4");
  23. test.checkEqual(4, list[0], "contains added value 1");
  24. test.checkEqual(3, list[1], "contains added value 2");
  25. test.checkEqual(2, list[2], "contains added value 3");
  26. test.checkEqual(3, list.getLength(), "sizes is increased by add");
  27. }
  28. static void testAddReplace(Core::Test& test) {
  29. IntList list;
  30. test.checkFalse(list.add(5), "add works 5");
  31. list[0] = 3;
  32. test.checkEqual(3, list[0], "value is overwritten");
  33. }
  34. static void testClear(Core::Test& test) {
  35. IntList list;
  36. test.checkFalse(list.add(5), "add works 6");
  37. test.checkFalse(list.add(4), "add works 7");
  38. list.clear();
  39. test.checkEqual(0, list.getLength(), "length is 0 after clear");
  40. }
  41. static void testOverflow(Core::Test& test) {
  42. IntList list;
  43. for(int i = 0; i < 20; i++) {
  44. test.checkFalse(list.add(i), "add returns false without overflow");
  45. }
  46. for(int i = 0; i < 1000000; i++) {
  47. test.checkTrue(list.add(i), "add returns true with overflow");
  48. }
  49. for(int i = 0; i < list.getLength(); i++) {
  50. test.checkEqual(i, list[i], "still contains values after overflow");
  51. }
  52. }
  53. static void testCopy(Core::Test& test) {
  54. IntList list;
  55. test.checkFalse(list.add(1), "add works 8");
  56. test.checkFalse(list.add(2), "add works 9");
  57. test.checkFalse(list.add(3), "add works 10");
  58. IntList copy(list);
  59. test.checkEqual(list.getLength(), copy.getLength(), "copy has same length");
  60. for(int i = 0; i < copy.getLength() && i < list.getLength(); i++) {
  61. test.checkEqual(list[i], copy[i], "copy has same values");
  62. }
  63. }
  64. static void testCopyAssignment(Core::Test& test) {
  65. IntList list;
  66. test.checkFalse(list.add(1), "add works 11");
  67. test.checkFalse(list.add(2), "add works 12");
  68. test.checkFalse(list.add(3), "add works 13");
  69. IntList copy;
  70. copy = list;
  71. test.checkEqual(list.getLength(), copy.getLength(),
  72. "copy assignment has same length");
  73. for(int i = 0; i < copy.getLength() && i < list.getLength(); i++) {
  74. test.checkEqual(list[i], copy[i], "copy assignment has same values");
  75. }
  76. }
  77. static void testMove(Core::Test& test) {
  78. IntList list;
  79. test.checkFalse(list.add(1), "add works 14");
  80. test.checkFalse(list.add(2), "add works 15");
  81. test.checkFalse(list.add(3), "add works 16");
  82. IntList move(Core::move(list));
  83. test.checkEqual(0, list.getLength(), "moved has length 0");
  84. test.checkEqual(3, move.getLength(), "moved passes length");
  85. test.checkEqual(1, move[0], "moved passes values");
  86. test.checkEqual(2, move[1], "moved passes values");
  87. test.checkEqual(3, move[2], "moved passes values");
  88. }
  89. static void testMoveAssignment(Core::Test& test) {
  90. IntList list;
  91. test.checkFalse(list.add(1), "add works 17");
  92. test.checkFalse(list.add(2), "add works 18");
  93. test.checkFalse(list.add(3), "add works 19");
  94. IntList move;
  95. move = Core::move(list);
  96. test.checkEqual(0, list.getLength(), "assignment moved has length 0");
  97. test.checkEqual(3, move.getLength(), "assignment moved passes length");
  98. test.checkEqual(1, move[0], "assignment moved passes values");
  99. test.checkEqual(2, move[1], "assignment moved passes values");
  100. test.checkEqual(3, move[2], "assignment moved passes values");
  101. }
  102. static void testToString1(Core::Test& test) {
  103. IntList list;
  104. test.checkFalse(list.add(1), "add works 20");
  105. test.checkFalse(list.add(243), "add works 21");
  106. test.checkFalse(list.add(-423), "add works 22");
  107. test.checkEqual(build(test, "[1, 243, -423]"), build(test, list),
  108. "to string 1");
  109. }
  110. static void testToString2(Core::Test& test) {
  111. IntList list;
  112. test.checkFalse(list.add(1), "add works 23");
  113. test.checkEqual(build(test, "[1]"), build(test, list), "to string 2");
  114. }
  115. static void testToString3(Core::Test& test) {
  116. IntList list;
  117. test.checkEqual(build(test, "[]"), build(test, list), "to string 3");
  118. }
  119. static void testRemove(Core::Test& test) {
  120. IntList list;
  121. test.checkFalse(list.add(4), "add works 24");
  122. test.checkFalse(list.add(3), "add works 25");
  123. test.checkFalse(list.add(2), "add works 26");
  124. test.checkFalse(list.removeBySwap(0), "remove by swap works 1");
  125. test.checkEqual(2, list[0], "remove by swap 1");
  126. test.checkEqual(3, list[1], "remove by swap 2");
  127. test.checkEqual(2, list.getLength(), "remove by swap 3");
  128. test.checkFalse(list.removeBySwap(1), "remove by swap works 2");
  129. test.checkEqual(2, list[0], "remove by swap 4");
  130. test.checkEqual(1, list.getLength(), "remove by swap 5");
  131. test.checkFalse(list.removeBySwap(0), "remove by swap works 3");
  132. test.checkEqual(0, list.getLength(), "remove by swap 6");
  133. }
  134. void Core::ArrayListTests::test() {
  135. Core::Test test("ArrayList");
  136. testAdd(test);
  137. testMultipleAdd(test);
  138. testAddReplace(test);
  139. testClear(test);
  140. testOverflow(test);
  141. testCopy(test);
  142. testCopyAssignment(test);
  143. testMove(test);
  144. testMoveAssignment(test);
  145. testToString1(test);
  146. testToString2(test);
  147. testToString3(test);
  148. testRemove(test);
  149. test.finalize();
  150. }