#include "../collections/Vector.hpp" #include <stdio.h> #include "gtest_helpers.hpp" #include <gtest/gtest.h> class VectorTest : public testing::Test { protected: virtual void SetUp() override { testVector.PushBack(1); testVector.PushBack(2); testVector.PushBack(3); testVector.PushBack(5); } sprawl::collections::Vector<int> testVector; }; TEST_F(VectorTest, BasicSetupWorks) { EXPECT_EQ(ssize_t(4), testVector.Size()); EXPECT_EQ(1, testVector[0]); EXPECT_EQ(2, testVector[1]); EXPECT_EQ(3, testVector[2]); EXPECT_EQ(5, testVector[3]); } TEST_F(VectorTest, FillConstructorsWork) { sprawl::collections::Vector<int> testVector2(sprawl::collections::Fill(5)); EXPECT_EQ(ssize_t(5), testVector2.Size()); for(auto& value : testVector2) { EXPECT_EQ(0, value); } sprawl::collections::Vector<int> testVector3(sprawl::collections::Fill(5), 3); EXPECT_EQ(ssize_t(5), testVector3.Size()); for(auto& value : testVector3) { EXPECT_EQ(3, value); } } TEST_F(VectorTest, CopyConstructorsWork) { sprawl::collections::Vector<int> testVector2(testVector); EXPECT_EQ(ssize_t(4), testVector2.Size()); EXPECT_EQ(1, testVector2[0]); EXPECT_EQ(2, testVector2[1]); EXPECT_EQ(3, testVector2[2]); EXPECT_EQ(5, testVector2[3]); } TEST_F(VectorTest, MoveConstructorsWork) { sprawl::collections::Vector<int> testVector2(std::move(testVector)); EXPECT_EQ(ssize_t(4), testVector2.Size()); EXPECT_EQ(1, testVector2[0]); EXPECT_EQ(2, testVector2[1]); EXPECT_EQ(3, testVector2[2]); EXPECT_EQ(5, testVector2[3]); EXPECT_EQ(ssize_t(0), testVector.Size()); testVector.PushBack(10); testVector.PushBack(20); testVector.PushBack(30); testVector.PushBack(50); //Make sure modifying one doesn't impact the other EXPECT_EQ(ssize_t(4), testVector2.Size()); EXPECT_EQ(1, testVector2[0]); EXPECT_EQ(2, testVector2[1]); EXPECT_EQ(3, testVector2[2]); EXPECT_EQ(5, testVector2[3]); testVector2.PushBack(40); testVector2.PushBack(90); testVector2.PushBack(20); testVector2.PushBack(220); EXPECT_EQ(ssize_t(4), testVector.Size()); EXPECT_EQ(10, testVector[0]); EXPECT_EQ(20, testVector[1]); EXPECT_EQ(30, testVector[2]); EXPECT_EQ(50, testVector[3]); } TEST_F(VectorTest, SwapWorks) { sprawl::collections::Vector<int> testVector2; testVector2.PushBack(40); testVector2.PushBack(90); testVector2.PushBack(20); testVector2.PushBack(220); testVector2.PushBack(400); testVector2.Swap(testVector); EXPECT_EQ(ssize_t(5), testVector.Size()); EXPECT_EQ(40, testVector[0]); EXPECT_EQ(90, testVector[1]); EXPECT_EQ(20, testVector[2]); EXPECT_EQ(220, testVector[3]); EXPECT_EQ(400, testVector[4]); EXPECT_EQ(ssize_t(4), testVector2.Size()); EXPECT_EQ(1, testVector2[0]); EXPECT_EQ(2, testVector2[1]); EXPECT_EQ(3, testVector2[2]); EXPECT_EQ(5, testVector2[3]); } TEST_F(VectorTest, FrontWorks) { ASSERT_EQ(1, testVector.Front()); } TEST_F(VectorTest, BackWorks) { ASSERT_EQ(5, testVector.Back()); } TEST_F(VectorTest, IterationAndInsertWorks) { for(auto it = testVector.begin(); it != testVector.end(); ++it) { if(it.Value() == 5) { testVector.Insert(it, 4); break; } } int value = 0; for(auto it = testVector.begin(); it != testVector.end(); ++it) { EXPECT_EQ(value + 1, it.Value()); value = it.Value(); } } TEST_F(VectorTest, PopBackWorks) { testVector.PopBack(); ASSERT_EQ(3, testVector.Back()); } TEST_F(VectorTest, EraseWorks) { for(auto it = testVector.begin(); it != testVector.end(); ++it) { if(it.Value() == 3) { testVector.Erase(it); break; } } for(auto it = testVector.begin(); it != testVector.end(); ++it) { ASSERT_NE(3, it.Value()); } } TEST_F(VectorTest, GrowWorks) { sprawl::collections::Vector<int> vector2(sprawl::collections::Capacity(5)); for(int i = 1; i <= 100; ++i) { vector2.PushBack(i); } EXPECT_EQ(1, vector2.Front()); int value = 0; for(auto& num : vector2) { EXPECT_EQ(value + 1, num); value = num; } ASSERT_EQ(100, vector2.Back()); } TEST_F(VectorTest, NegativeIndexingWorks) { ASSERT_EQ(testVector[-1], testVector.Back()); }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 23398 | ququlala | "Forking branch Mainline of shadauxcat-libsprawl to ququlala-libsprawl." | ||
//guest/ShadauxCat/Sprawl/Mainline/UnitTests/UnitTests_Vector.cpp | |||||
#6 | 16768 | ShadauxCat |
Improvements to error handling in builds with exceptions disabled: - In debug builds or with SPRAWL_ERRORSTATE_STRICT enabled, ErrorState will output a message to stderr and terminate if Get() is called when an error flag is set. (In release buils or with SPRAWL_ERRORSTATE_PERMISSIVE defined, Get() will return junk memory in this case.) - In debug builds or with SPRAWL_ERRORSTATE_STRICT enabled, ErrorState will output a message to stderr and terminate if its destructor is called without checking the errorstate if an error is present (equivalent to an exception terminating the application if no catch() block is present for it). - On linux builds and when running "Analyze" through visual studio, a warning will be issued if any function returning ErrorState has its return value ignored. (This only applies to builds with exceptions not enabled; when exceptions are enabled no warning is issued) - Many functions that could return ErrorState were having their return values silently ignored in internal sprawl code so the user would not find out about errors if exceptions are disabled; now anything in sprawl code that calls a function returning ErrorState will either handle the error, or (in most cases) surface it back up to the user. - As a positive side-effect of the warnings for ignoring ErrorState, several constructors that were capable of throwing exceptions are no longer capable of doing so. #review-16769 |
||
#5 | 14168 | ShadauxCat |
-Implemented Array -Fixed compile error when calling Vector::Swap() -Fixed missing constness on functions called from const functions in Deque -Added fill, copy, and move constructor unit tests for Vector and Deque, and Swap() unit test for Vector #review-14169 |
||
#4 | 14146 | ShadauxCat |
Moving a gtest-specific function out of String.hpp #review-14147 |
||
#3 | 14144 | ShadauxCat |
Switching unit tests to gtest. 100 is a decent number of tests to start with, but it needs to be more like 400 to test the current codebase. #review-14145 |
||
#2 | 14121 | ShadauxCat |
-Fixed msvc compile errors (msvc sucks at decltype, btw...) -Fixed BitVector and BitSet being broken on msvc due to 1L being 32-bit rather than 64-bit -Fixed Deque being broken on 32-bit systems due to an errant int64_t -Changed types of deque indexes from size_t to ssize_t; since they have to be signed for a moment to handle circling the buffer, the sign bit is lost for capacity anyway, and using signed indexes means... -Deque and Vector now support negative indexing a la python list #review-14122 |
||
#1 | 14091 | ShadauxCat |
-Created Vector class, iterator, and unit test -Made list iterator a bidirectional iterator when created from a doubly-linked list. (It still has operator-- when created from singly-linked list, but it won't compile if it's used.) -Changed front() and back() in list classes to Front() and Back() #review-14083 |