summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bx/tests/string_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bx/tests/string_test.cpp')
-rw-r--r--3rdparty/bx/tests/string_test.cpp300
1 files changed, 239 insertions, 61 deletions
diff --git a/3rdparty/bx/tests/string_test.cpp b/3rdparty/bx/tests/string_test.cpp
index 35e1dac4445..d848f3de142 100644
--- a/3rdparty/bx/tests/string_test.cpp
+++ b/3rdparty/bx/tests/string_test.cpp
@@ -4,9 +4,10 @@
*/
#include "test.h"
+#include <bx/filepath.h>
#include <bx/string.h>
-#include <bx/crtimpl.h>
#include <bx/handlealloc.h>
+#include <bx/sort.h>
bx::AllocatorI* g_allocator;
@@ -23,110 +24,185 @@ TEST_CASE("chars", "")
}
}
-TEST_CASE("strnlen", "")
+TEST_CASE("strLen", "")
{
const char* test = "test";
- REQUIRE(0 == bx::strnlen(test, 0) );
- REQUIRE(2 == bx::strnlen(test, 2) );
- REQUIRE(4 == bx::strnlen(test, INT32_MAX) );
+ REQUIRE(0 == bx::strLen(test, 0) );
+ REQUIRE(2 == bx::strLen(test, 2) );
+ REQUIRE(4 == bx::strLen(test, INT32_MAX) );
}
-TEST_CASE("strlncpy", "")
+TEST_CASE("strCopy", "")
{
char dst[128];
size_t num;
- num = bx::strlncpy(dst, 1, "blah");
+ num = bx::strCopy(dst, 1, "blah");
REQUIRE(num == 0);
- num = bx::strlncpy(dst, 3, "blah", 3);
- REQUIRE(0 == bx::strncmp(dst, "bl") );
+ num = bx::strCopy(dst, 3, "blah", 3);
+ REQUIRE(0 == bx::strCmp(dst, "bl") );
REQUIRE(num == 2);
- num = bx::strlncpy(dst, sizeof(dst), "blah", 3);
- REQUIRE(0 == bx::strncmp(dst, "bla") );
+ num = bx::strCopy(dst, sizeof(dst), "blah", 3);
+ REQUIRE(0 == bx::strCmp(dst, "bla") );
REQUIRE(num == 3);
- num = bx::strlncpy(dst, sizeof(dst), "blah");
- REQUIRE(0 == bx::strncmp(dst, "blah") );
+ num = bx::strCopy(dst, sizeof(dst), "blah");
+ REQUIRE(0 == bx::strCmp(dst, "bl", 2) );
+ REQUIRE(0 == bx::strCmp(dst, "blah") );
REQUIRE(num == 4);
}
-TEST_CASE("strlncat", "")
+TEST_CASE("strCat", "")
{
char dst[128] = { '\0' };
- REQUIRE(0 == bx::strlncat(dst, 1, "cat") );
+ REQUIRE(0 == bx::strCat(dst, 1, "cat") );
- REQUIRE(4 == bx::strlncpy(dst, 5, "copy") );
- REQUIRE(3 == bx::strlncat(dst, 8, "cat") );
- REQUIRE(0 == bx::strncmp(dst, "copycat") );
+ REQUIRE(4 == bx::strCopy(dst, 5, "copy") );
+ REQUIRE(3 == bx::strCat(dst, 8, "cat") );
+ REQUIRE(0 == bx::strCmp(dst, "copycat") );
+ REQUIRE(0 == bx::strCmp(dst, "copy", 4) );
- REQUIRE(1 == bx::strlncat(dst, BX_COUNTOF(dst), "------", 1) );
- REQUIRE(3 == bx::strlncat(dst, BX_COUNTOF(dst), "cat") );
- REQUIRE(0 == bx::strncmp(dst, "copycat-cat") );
+ REQUIRE(1 == bx::strCat(dst, BX_COUNTOF(dst), "------", 1) );
+ REQUIRE(3 == bx::strCat(dst, BX_COUNTOF(dst), "cat") );
+ REQUIRE(0 == bx::strCmp(dst, "copycat-cat") );
}
-TEST_CASE("strincmp", "")
+TEST_CASE("strCmp", "")
{
- REQUIRE(0 == bx::strincmp("test", "test") );
- REQUIRE(0 == bx::strincmp("test", "testestes", 4) );
- REQUIRE(0 == bx::strincmp("testestes", "test", 4) );
- REQUIRE(0 != bx::strincmp("preprocess", "platform") );
+ REQUIRE(0 != bx::strCmp("meh", "meh/") );
+}
+
+TEST_CASE("strCmpI", "")
+{
+ REQUIRE(0 == bx::strCmpI("test", "test") );
+ REQUIRE(0 == bx::strCmpI("test", "testestes", 4) );
+ REQUIRE(0 == bx::strCmpI("testestes", "test", 4) );
+ REQUIRE(0 != bx::strCmpI("preprocess", "platform") );
const char* abvgd = "abvgd";
const char* abvgx = "abvgx";
const char* empty = "";
- REQUIRE(0 == bx::strincmp(abvgd, abvgd) );
- REQUIRE(0 == bx::strincmp(abvgd, abvgx, 4) );
+ REQUIRE(0 == bx::strCmpI(abvgd, abvgd) );
+ REQUIRE(0 == bx::strCmpI(abvgd, abvgx, 4) );
+ REQUIRE(0 == bx::strCmpI(empty, empty) );
- REQUIRE(0 > bx::strincmp(abvgd, abvgx) );
- REQUIRE(0 > bx::strincmp(empty, abvgd) );
+ REQUIRE(0 > bx::strCmpI(abvgd, abvgx) );
+ REQUIRE(0 > bx::strCmpI(empty, abvgd) );
- REQUIRE(0 < bx::strincmp(abvgx, abvgd) );
- REQUIRE(0 < bx::strincmp(abvgd, empty) );
+ REQUIRE(0 < bx::strCmpI(abvgx, abvgd) );
+ REQUIRE(0 < bx::strCmpI(abvgd, empty) );
}
-TEST_CASE("strnchr", "")
+TEST_CASE("strCmpV", "")
{
- const char* test = "test";
- REQUIRE(NULL == bx::strnchr(test, 's', 0) );
- REQUIRE(NULL == bx::strnchr(test, 's', 2) );
- REQUIRE(&test[2] == bx::strnchr(test, 's') );
+ REQUIRE(0 == bx::strCmpV("test", "test") );
+ REQUIRE(0 == bx::strCmpV("test", "testestes", 4) );
+ REQUIRE(0 == bx::strCmpV("testestes", "test", 4) );
+ REQUIRE(0 != bx::strCmpV("preprocess", "platform") );
+
+ const char* abvgd = "abvgd";
+ const char* abvgx = "abvgx";
+ const char* empty = "";
+ REQUIRE(0 == bx::strCmpV(abvgd, abvgd) );
+ REQUIRE(0 == bx::strCmpV(abvgd, abvgx, 4) );
+ REQUIRE(0 == bx::strCmpV(empty, empty) );
+
+ REQUIRE(0 > bx::strCmpV(abvgd, abvgx) );
+ REQUIRE(0 > bx::strCmpV(empty, abvgd) );
+
+ REQUIRE(0 < bx::strCmpV(abvgx, abvgd) );
+ REQUIRE(0 < bx::strCmpV(abvgd, empty) );
+}
+
+static int32_t strCmpV(const void* _lhs, const void* _rhs)
+{
+ const char* lhs = *(const char**)_lhs;
+ const char* rhs = *(const char**)_rhs;
+ int32_t result = bx::strCmpV(lhs, rhs);
+ return result;
+}
+
+TEST_CASE("strCmpV sort", "")
+{
+ const char* test[] =
+ {
+ "test_1.txt",
+ "test_10.txt",
+ "test_100.txt",
+ "test_15.txt",
+ "test_11.txt",
+ "test_23.txt",
+ "test_3.txt",
+ };
+
+ const char* expected[] =
+ {
+ "test_1.txt",
+ "test_3.txt",
+ "test_10.txt",
+ "test_11.txt",
+ "test_15.txt",
+ "test_23.txt",
+ "test_100.txt",
+ };
+
+ BX_STATIC_ASSERT(BX_COUNTOF(test) == BX_COUNTOF(expected) );
+
+ bx::quickSort(test, BX_COUNTOF(test), sizeof(const char*), strCmpV);
+
+ for (uint32_t ii = 0; ii < BX_COUNTOF(test); ++ii)
+ {
+ REQUIRE(0 == bx::strCmp(test[ii], expected[ii]) );
+ }
}
-TEST_CASE("strnrchr", "")
+TEST_CASE("strRFind", "")
{
const char* test = "test";
- REQUIRE(NULL == bx::strnrchr(test, 's', 0) );
- REQUIRE(NULL == bx::strnrchr(test, 's', 1) );
- REQUIRE(&test[2] == bx::strnrchr(test, 's') );
+ REQUIRE(NULL == bx::strRFind(bx::StringView(test, 0), 's') );
+ REQUIRE(NULL == bx::strRFind(bx::StringView(test, 1), 's') );
+ REQUIRE(&test[2] == bx::strRFind(test, 's') );
}
-TEST_CASE("stristr", "")
+TEST_CASE("strFindI", "")
{
const char* test = "The Quick Brown Fox Jumps Over The Lazy Dog.";
- REQUIRE(NULL == bx::stristr(test, "quick", 8) );
- REQUIRE(NULL == bx::stristr(test, "quick1") );
- REQUIRE(&test[4] == bx::stristr(test, "quick", 9) );
- REQUIRE(&test[4] == bx::stristr(test, "quick") );
+ REQUIRE(NULL == bx::strFindI(bx::StringView(test, 8), "quick") );
+ REQUIRE(NULL == bx::strFindI(test, "quick1") );
+ REQUIRE(&test[4] == bx::strFindI(bx::StringView(test, 9), "quick") );
+ REQUIRE(&test[4] == bx::strFindI(test, "quick") );
}
-TEST_CASE("strnstr", "")
+TEST_CASE("strFind", "")
{
- const char* test = "The Quick Brown Fox Jumps Over The Lazy Dog.";
+ {
+ const char* test = "test";
- REQUIRE(NULL == bx::strnstr(test, "quick", 8) );
- REQUIRE(NULL == bx::strnstr(test, "quick1") );
- REQUIRE(NULL == bx::strnstr(test, "quick", 9) );
- REQUIRE(NULL == bx::strnstr(test, "quick") );
+ REQUIRE(NULL == bx::strFind(bx::StringView(test, 0), 's') );
+ REQUIRE(NULL == bx::strFind(bx::StringView(test, 2), 's') );
+ REQUIRE(&test[2] == bx::strFind(test, 's') );
+ }
- REQUIRE(NULL == bx::strnstr(test, "Quick", 8) );
- REQUIRE(NULL == bx::strnstr(test, "Quick1") );
- REQUIRE(&test[4] == bx::strnstr(test, "Quick", 9) );
- REQUIRE(&test[4] == bx::strnstr(test, "Quick") );
+ {
+ const char* test = "The Quick Brown Fox Jumps Over The Lazy Dog.";
+
+ REQUIRE(NULL == bx::strFind(bx::StringView(test, 8), "quick") );
+ REQUIRE(NULL == bx::strFind(test, "quick1") );
+ REQUIRE(NULL == bx::strFind(bx::StringView(test, 9), "quick") );
+ REQUIRE(NULL == bx::strFind(test, "quick") );
+
+ REQUIRE(NULL == bx::strFind(bx::StringView(test, 8), "Quick") );
+ REQUIRE(NULL == bx::strFind(test, "Quick1") );
+ REQUIRE(&test[4] == bx::strFind(bx::StringView(test, 9), "Quick") );
+ REQUIRE(&test[4] == bx::strFind(test, "Quick") );
+
+ REQUIRE(NULL == bx::strFind("vgd", 'a') );
+ }
}
template<typename Ty>
@@ -134,8 +210,8 @@ static bool testToString(Ty _value, const char* _expected)
{
char tmp[1024];
int32_t num = bx::toString(tmp, BX_COUNTOF(tmp), _value);
- int32_t len = (int32_t)bx::strnlen(_expected);
- if (0 == bx::strncmp(tmp, _expected)
+ int32_t len = (int32_t)bx::strLen(_expected);
+ if (0 == bx::strCmp(tmp, _expected)
&& num == len)
{
return true;
@@ -178,6 +254,86 @@ TEST_CASE("toString double", "")
REQUIRE(testToString(1231231.23, "1231231.23") );
REQUIRE(testToString(0.000000000123123, "1.23123e-10") );
REQUIRE(testToString(0.0000000001, "1e-10") );
+ REQUIRE(testToString(-270.000000, "-270.0") );
+}
+
+static bool testFromString(double _value, const char* _input)
+{
+ char tmp[1024];
+ bx::toString(tmp, BX_COUNTOF(tmp), _value);
+
+ double lhs;
+ bx::fromString(&lhs, tmp);
+
+ double rhs;
+ bx::fromString(&rhs, _input);
+
+ if (lhs == rhs)
+ {
+ return true;
+ }
+
+ printf("result '%f', input '%s'\n", _value, _input);
+ return false;
+}
+
+TEST_CASE("fromString double", "")
+{
+ REQUIRE(testFromString(0.0, "0.0") );
+ REQUIRE(testFromString(-0.0, "-0.0") );
+ REQUIRE(testFromString(1.0, "1.0") );
+ REQUIRE(testFromString(-1.0, "-1.0") );
+ REQUIRE(testFromString(1.2345, "1.2345") );
+ REQUIRE(testFromString(1.2345678, "1.2345678") );
+ REQUIRE(testFromString(0.123456789012, "0.123456789012") );
+ REQUIRE(testFromString(1234567.8, "1234567.8") );
+ REQUIRE(testFromString(-79.39773355813419, "-79.39773355813419") );
+ REQUIRE(testFromString(0.000001, "0.000001") );
+ REQUIRE(testFromString(0.0000001, "1e-7") );
+ REQUIRE(testFromString(1e30, "1e30") );
+ REQUIRE(testFromString(1.234567890123456e30, "1.234567890123456e30") );
+ REQUIRE(testFromString(-5e-324, "-5e-324") );
+ REQUIRE(testFromString(2.225073858507201e-308, "2.225073858507201e-308") );
+ REQUIRE(testFromString(2.2250738585072014e-308, "2.2250738585072014e-308") );
+ REQUIRE(testFromString(1.7976931348623157e308, "1.7976931348623157e308") );
+ REQUIRE(testFromString(0.00000123123123, "0.00000123123123") );
+ REQUIRE(testFromString(0.000000123123123, "1.23123123e-7") );
+ REQUIRE(testFromString(123123.123, "123123.123") );
+ REQUIRE(testFromString(1231231.23, "1231231.23") );
+ REQUIRE(testFromString(0.000000000123123, "1.23123e-10") );
+ REQUIRE(testFromString(0.0000000001, "1e-10") );
+ REQUIRE(testFromString(-270.000000, "-270.0") );
+}
+
+static bool testFromString(int32_t _value, const char* _input)
+{
+ char tmp[1024];
+ bx::toString(tmp, BX_COUNTOF(tmp), _value);
+
+ double lhs;
+ bx::fromString(&lhs, tmp);
+
+ double rhs;
+ bx::fromString(&rhs, _input);
+
+ if (lhs == rhs)
+ {
+ return true;
+ }
+
+ printf("result '%d', input '%s'\n", _value, _input);
+ return false;
+}
+
+TEST_CASE("fromString int32_t", "")
+{
+ REQUIRE(testFromString(1389, "1389") );
+ REQUIRE(testFromString(1389, " 1389") );
+ REQUIRE(testFromString(1389, "+1389") );
+ REQUIRE(testFromString(-1389, "-1389") );
+ REQUIRE(testFromString(-1389, " -1389") );
+ REQUIRE(testFromString(555333, "555333") );
+ REQUIRE(testFromString(-21, "-021") );
}
TEST_CASE("StringView", "")
@@ -185,7 +341,7 @@ TEST_CASE("StringView", "")
bx::StringView sv("test");
REQUIRE(4 == sv.getLength() );
- bx::CrtAllocator crt;
+ bx::DefaultAllocator crt;
g_allocator = &crt;
typedef bx::StringT<&g_allocator> String;
@@ -196,10 +352,10 @@ TEST_CASE("StringView", "")
st.append("test");
REQUIRE(8 == st.getLength() );
- st.append("test", 2);
+ st.append(bx::StringView("test", 2) );
REQUIRE(10 == st.getLength() );
- REQUIRE(0 == bx::strncmp(st.getPtr(), "testtestte") );
+ REQUIRE(0 == bx::strCmp(st.getPtr(), "testtestte") );
st.clear();
REQUIRE(0 == st.getLength() );
@@ -211,3 +367,25 @@ TEST_CASE("StringView", "")
sv.clear();
REQUIRE(0 == sv.getLength() );
}
+
+TEST_CASE("Trim", "")
+{
+ REQUIRE(0 == bx::strCmp(bx::strLTrim("abvgd", "ab"), "vgd") );
+ REQUIRE(0 == bx::strCmp(bx::strLTrim("abvgd", "vagbd"), "") );
+ REQUIRE(0 == bx::strCmp(bx::strLTrim("abvgd", "vgd"), "abvgd") );
+ REQUIRE(0 == bx::strCmp(bx::strLTrim("/555333/podmac/", "/"), "555333/podmac/") );
+
+ REQUIRE(0 == bx::strCmp(bx::strRTrim("abvgd", "vagbd"), "") );
+ REQUIRE(0 == bx::strCmp(bx::strRTrim("abvgd", "abv"), "abvgd") );
+ REQUIRE(0 == bx::strCmp(bx::strRTrim("/555333/podmac/", "/"), "/555333/podmac") );
+
+ REQUIRE(0 == bx::strCmp(bx::strTrim("abvgd", "da"), "bvg") );
+ REQUIRE(0 == bx::strCmp(bx::strTrim("<1389>", "<>"), "1389") );
+ REQUIRE(0 == bx::strCmp(bx::strTrim("/555333/podmac/", "/"), "555333/podmac") );
+
+ REQUIRE(0 == bx::strCmp(bx::strTrim("abvgd", ""), "abvgd") );
+ REQUIRE(0 == bx::strCmp(bx::strTrim(" \t a b\tv g d \t ", " \t"), "a b\tv g d") );
+
+ bx::FilePath uri("/555333/podmac/");
+ REQUIRE(0 == bx::strCmp(bx::strTrim(uri.getPath(), "/"), "555333/podmac") );
+}