mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
Add tests for VFS::Path::Normalized
This commit is contained in:
parent
8b47381162
commit
1689c59546
@ -97,6 +97,8 @@ file(GLOB UNITTEST_SRC_FILES
|
||||
esmterrain/testgridsampling.cpp
|
||||
|
||||
resource/testobjectcache.cpp
|
||||
|
||||
vfs/testpathutil.cpp
|
||||
)
|
||||
|
||||
source_group(apps\\openmw_test_suite FILES openmw_test_suite.cpp ${UNITTEST_SRC_FILES})
|
||||
|
99
apps/openmw_test_suite/vfs/testpathutil.cpp
Normal file
99
apps/openmw_test_suite/vfs/testpathutil.cpp
Normal file
@ -0,0 +1,99 @@
|
||||
#include <components/vfs/pathutil.hpp>
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
#include <sstream>
|
||||
|
||||
namespace VFS::Path
|
||||
{
|
||||
namespace
|
||||
{
|
||||
using namespace testing;
|
||||
|
||||
TEST(NormalizedTest, shouldSupportDefaultConstructor)
|
||||
{
|
||||
const Normalized value;
|
||||
EXPECT_EQ(value.value(), "");
|
||||
}
|
||||
|
||||
TEST(NormalizedTest, shouldSupportConstructorFromString)
|
||||
{
|
||||
const std::string string("Foo\\Bar/baz");
|
||||
const Normalized value(string);
|
||||
EXPECT_EQ(value.value(), "foo/bar/baz");
|
||||
}
|
||||
|
||||
TEST(NormalizedTest, shouldSupportConstructorFromConstCharPtr)
|
||||
{
|
||||
const char* const ptr = "Foo\\Bar/baz";
|
||||
const Normalized value(ptr);
|
||||
EXPECT_EQ(value.value(), "foo/bar/baz");
|
||||
}
|
||||
|
||||
TEST(NormalizedTest, shouldSupportConstructorFromStringView)
|
||||
{
|
||||
const std::string_view view = "Foo\\Bar/baz";
|
||||
const Normalized value(view);
|
||||
EXPECT_EQ(value.view(), "foo/bar/baz");
|
||||
}
|
||||
|
||||
TEST(NormalizedTest, supportMovingValueOut)
|
||||
{
|
||||
Normalized value("Foo\\Bar/baz");
|
||||
EXPECT_EQ(std::move(value).value(), "foo/bar/baz");
|
||||
EXPECT_EQ(value.value(), "");
|
||||
}
|
||||
|
||||
TEST(NormalizedTest, isNotEqualToNotNormalized)
|
||||
{
|
||||
const Normalized value("Foo\\Bar/baz");
|
||||
EXPECT_NE(value.value(), "Foo\\Bar/baz");
|
||||
}
|
||||
|
||||
TEST(NormalizedTest, shouldSupportOperatorLeftShiftToOStream)
|
||||
{
|
||||
const Normalized value("Foo\\Bar/baz");
|
||||
std::stringstream stream;
|
||||
stream << value;
|
||||
EXPECT_EQ(stream.str(), "foo/bar/baz");
|
||||
}
|
||||
|
||||
template <class T>
|
||||
struct NormalizedOperatorsTest : Test
|
||||
{
|
||||
};
|
||||
|
||||
TYPED_TEST_SUITE_P(NormalizedOperatorsTest);
|
||||
|
||||
TYPED_TEST_P(NormalizedOperatorsTest, supportsEqual)
|
||||
{
|
||||
const Normalized normalized("a/foo/bar/baz");
|
||||
const TypeParam otherEqual{ "a/foo/bar/baz" };
|
||||
const TypeParam otherNotEqual{ "b/foo/bar/baz" };
|
||||
EXPECT_EQ(normalized, otherEqual);
|
||||
EXPECT_EQ(otherEqual, normalized);
|
||||
EXPECT_NE(normalized, otherNotEqual);
|
||||
EXPECT_NE(otherNotEqual, normalized);
|
||||
}
|
||||
|
||||
TYPED_TEST_P(NormalizedOperatorsTest, supportsLess)
|
||||
{
|
||||
const Normalized normalized("b/foo/bar/baz");
|
||||
const TypeParam otherEqual{ "b/foo/bar/baz" };
|
||||
const TypeParam otherLess{ "a/foo/bar/baz" };
|
||||
const TypeParam otherGreater{ "c/foo/bar/baz" };
|
||||
EXPECT_FALSE(normalized < otherEqual);
|
||||
EXPECT_FALSE(otherEqual < normalized);
|
||||
EXPECT_LT(otherLess, normalized);
|
||||
EXPECT_FALSE(normalized < otherLess);
|
||||
EXPECT_LT(normalized, otherGreater);
|
||||
EXPECT_FALSE(otherGreater < normalized);
|
||||
}
|
||||
|
||||
REGISTER_TYPED_TEST_SUITE_P(NormalizedOperatorsTest, supportsEqual, supportsLess);
|
||||
|
||||
using StringTypes = Types<Normalized, const char*, std::string, std::string_view>;
|
||||
|
||||
INSTANTIATE_TYPED_TEST_SUITE_P(Typed, NormalizedOperatorsTest, StringTypes);
|
||||
}
|
||||
}
|
@ -96,22 +96,26 @@ namespace VFS::Path
|
||||
|
||||
friend bool operator==(const Normalized& lhs, const Normalized& rhs) = default;
|
||||
|
||||
template <class T>
|
||||
friend bool operator==(const Normalized& lhs, const T& rhs)
|
||||
friend bool operator==(const Normalized& lhs, const auto& rhs) { return lhs.mValue == rhs; }
|
||||
|
||||
#if defined(_MSC_VER) && _MSC_VER <= 1935
|
||||
friend bool operator==(const auto& lhs, const Normalized& rhs)
|
||||
{
|
||||
return lhs.mValue == rhs;
|
||||
return lhs == rhs.mValue;
|
||||
}
|
||||
#endif
|
||||
|
||||
friend bool operator<(const Normalized& lhs, const Normalized& rhs)
|
||||
{
|
||||
return lhs.mValue < rhs.mValue;
|
||||
}
|
||||
|
||||
friend bool operator<(const Normalized& lhs, const Normalized& rhs) { return lhs.mValue < rhs.mValue; }
|
||||
|
||||
template <class T>
|
||||
friend bool operator<(const Normalized& lhs, const T& rhs)
|
||||
friend bool operator<(const Normalized& lhs, const auto& rhs)
|
||||
{
|
||||
return lhs.mValue < rhs;
|
||||
}
|
||||
|
||||
template <class T>
|
||||
friend bool operator<(const T& lhs, const Normalized& rhs)
|
||||
friend bool operator<(const auto& lhs, const Normalized& rhs)
|
||||
{
|
||||
return lhs < rhs.mValue;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user