#include "tests/ListTests.h" #include "data/List.h" #include "tests/Test.h" #include "utils/StringBuffer.h" #include "utils/Utility.h" typedef List IntList; typedef StringBuffer<50> String; static void testAdd(Test& test) { IntList list; list.add(5); test.checkEqual(5, list[0], "contains added value"); test.checkEqual(1, list.getLength(), "sizes is increased by add"); } static void testMultipleAdd(Test& test) { IntList list; list.add(4).add(3).add(2); test.checkEqual(4, list[0], "contains added value 1"); test.checkEqual(3, list[1], "contains added value 2"); test.checkEqual(2, list[2], "contains added value 3"); test.checkEqual(3, list.getLength(), "sizes is increased by add"); } static void testAddReplace(Test& test) { IntList list; list.add(5); list[0] = 3; test.checkEqual(3, list[0], "value is overwritten"); } static void testClear(Test& test) { IntList list; list.add(5).add(4); list.clear(); test.checkEqual(0, list.getLength(), "length is 0 after clear"); } static void testShrink(Test& test) { IntList list; list.add(5).add(4).add(3); test.checkTrue(list.getCapacity() >= 3, "capacity is >= 3 after adding"); list.shrink(); test.checkTrue(list.getLength() == 3, "length is 3 after shrink"); test.checkTrue(list.getCapacity() == 3, "capacity is 3 after shrink"); test.checkEqual(5, list[0], "data ok after shrink 1"); test.checkEqual(4, list[1], "data ok after shrink 2"); test.checkEqual(3, list[2], "data ok after shrink 3"); } static void testBigAdd(Test& test) { IntList list; for(int i = 0; i < 1000000; i++) { list.add(i); } for(int i = 0; i < list.getLength(); i++) { test.checkEqual(i, list[i], "big add"); } test.checkEqual(1000000, list.getLength(), "big add length"); } static void testCopy(Test& test) { IntList list; list.add(1).add(2).add(3); IntList copy(list); test.checkEqual(list.getLength(), copy.getLength(), "copy has same length"); for(int i = 0; i < copy.getLength() && i < list.getLength(); i++) { test.checkEqual(list[i], copy[i], "copy has same values"); } } static void testCopyAssignment(Test& test) { IntList list; list.add(1).add(2).add(3); IntList copy; copy = list; test.checkEqual(list.getLength(), copy.getLength(), "copy assignment has same length"); for(int i = 0; i < copy.getLength() && i < list.getLength(); i++) { test.checkEqual(list[i], copy[i], "copy assignment has same values"); } } static void testMove(Test& test) { IntList list; list.add(1).add(2).add(3); IntList move(Core::move(list)); test.checkEqual(0, list.getLength(), "moved has length 0"); test.checkEqual(3, move.getLength(), "moved passes length"); test.checkEqual(1, move[0], "moved passes values"); test.checkEqual(2, move[1], "moved passes values"); test.checkEqual(3, move[2], "moved passes values"); } static void testMoveAssignment(Test& test) { IntList list; list.add(1).add(2).add(3); IntList move; move = Core::move(list); test.checkEqual(0, list.getLength(), "assignment moved has length 0"); test.checkEqual(3, move.getLength(), "assignment moved passes length"); test.checkEqual(1, move[0], "assignment moved passes values"); test.checkEqual(2, move[1], "assignment moved passes values"); test.checkEqual(3, move[2], "assignment moved passes values"); } static void testToString1(Test& test) { IntList list; list.add(1).add(243).add(-423); test.checkEqual(String("[1, 243, -423]"), String(list), "to string 1"); } static void testToString2(Test& test) { IntList list; list.add(1); test.checkEqual(String("[1]"), String(list), "to string 2"); } static void testToString3(Test& test) { IntList list; test.checkEqual(String("[]"), String(list), "to string 3"); } static void testRemoveBySwap(Test& test) { IntList list; list.add(4).add(3).add(2); list.removeBySwap(0); test.checkEqual(2, list[0], "remove by swap 1"); test.checkEqual(3, list[1], "remove by swap 2"); test.checkEqual(2, list.getLength(), "remove by swap 3"); list.removeBySwap(1); test.checkEqual(2, list[0], "remove by swap 4"); test.checkEqual(1, list.getLength(), "remove by swap 5"); list.removeBySwap(0); test.checkEqual(0, list.getLength(), "remove by swap 6"); } static void testRemove(Test& test) { IntList list; list.add(4).add(3).add(2); list.remove(0); test.checkEqual(3, list[0], "remove 1"); test.checkEqual(2, list[1], "remove 2"); test.checkEqual(2, list.getLength(), "remove 3"); list.remove(1); test.checkEqual(3, list[0], "remove 4"); test.checkEqual(1, list.getLength(), "remove 5"); list.remove(0); test.checkEqual(0, list.getLength(), "remove 6"); } void ListTests::test() { Test test("List"); testAdd(test); testMultipleAdd(test); testAddReplace(test); testClear(test); testShrink(test); testBigAdd(test); testCopy(test); testCopyAssignment(test); testMove(test); testMoveAssignment(test); testToString1(test); testToString2(test); testToString3(test); testRemoveBySwap(test); testRemove(test); test.finalize(); }