diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1ee04a68377e..64559f5f9252 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,7 +29,9 @@ jobs: arch: 'x64' - name: Build shell: pwsh - run: .\tools\cmdline\build.ps1 -p win32 -a x64 + run: | + .\tools\cmdline\build.ps1 -p win32 -a x64 + .\tools\cmdline\build.ps1 -p win32 -a x64 -xb '--target,unit-tests' win32-dll: runs-on: windows-latest steps: @@ -67,17 +69,17 @@ jobs: runs-on: windows-latest env: # Test winsdk < 10.0.22000.0 (missing C11 standard stdalign.h), axmol will auto fallback to C99 for resolving compiling issue. - WINSDK_VER: '10.0.19041.0' + WINSDK_VER: '10.0.19041.0' steps: - uses: actions/checkout@v4 with: submodules: 'recursive' - + - name: Install LLVM and Clang uses: KyleMayes/install-llvm-action@v1 with: version: "16.0" - + - name: Build shell: pwsh run: .\tools\cmdline\build.ps1 -p win32 -a 'x64' -cc clang -sdk $env:WINSDK_VER @@ -98,6 +100,7 @@ jobs: run: | ./tools/cmdline/build.ps1 -p linux -a x64 ./tools/cmdline/build.ps1 -p linux -a x64 -xb '--target,lua-tests' + ./tools/cmdline/build.ps1 -p linux -a x64 -xb '--target,unit-tests' osx: runs-on: macos-13 strategy: @@ -113,7 +116,9 @@ jobs: submodules: 'recursive' - name: Build shell: pwsh - run: ./tools/cmdline/build.ps1 -p osx -a $env:BUILD_ARCH + run: | + ./tools/cmdline/build.ps1 -p osx -a $env:BUILD_ARCH + ./tools/cmdline/build.ps1 -p osx -a $env:BUILD_ARCH -xb '--target,unit-tests' android: runs-on: ubuntu-latest strategy: diff --git a/.gitignore b/.gitignore index ef9f7c02a35b..94373b9ee5a3 100644 --- a/.gitignore +++ b/.gitignore @@ -224,6 +224,7 @@ tests/lua-tests/Content/res tests/cpp-tests/Content tests/fairygui-tests/Content tests/live2d-tests/Content +tests/unit-tests/Content *.patch /cache diff --git a/CMakeLists.txt b/CMakeLists.txt index be703ae4bb00..0047d366b631 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -64,12 +64,16 @@ if(AX_BUILD_TESTS) # add cpp tests default add_test_target(cpp-tests ${_AX_ROOT}/tests/cpp-tests) - + + if(LINUX OR MACOSX OR WINDOWS) + add_test_target(unit-tests ${_AX_ROOT}/tests/unit-tests) + endif() + # add fairygui tests when fairygui extension is enabled if(AX_ENABLE_EXT_FAIRYGUI) add_test_target(fairygui-tests ${_AX_ROOT}/tests/fairygui-tests) endif() - + if(AX_ENABLE_EXT_LIVE2D) add_test_target(live2d-tests ${_AX_ROOT}/tests/live2d-tests) endif() @@ -77,5 +81,5 @@ if(AX_BUILD_TESTS) if(AX_ENABLE_EXT_LUA) add_test_target(lua-tests ${_AX_ROOT}/tests/lua-tests) endif(AX_ENABLE_EXT_LUA) - + endif() diff --git a/tests/cpp-tests/CMakeLists.txt b/tests/cpp-tests/CMakeLists.txt index ddd23a554d58..421c20fcebb0 100644 --- a/tests/cpp-tests/CMakeLists.txt +++ b/tests/cpp-tests/CMakeLists.txt @@ -132,8 +132,6 @@ list(APPEND GAME_HEADER Source/testBasic.h Source/ZwoptexTest/ZwoptexTest.h Source/CurlTest/CurlTest.h - Source/UnitTest/UnitTest.h -# Source/UnitTest/RefPtrTest.h Source/ConfigurationTest/ConfigurationTest.h Source/CurrentLanguageTest/CurrentLanguageTest.h Source/AppDelegate.h @@ -236,7 +234,6 @@ list(APPEND GAME_HEADER Source/SpritePolygonTest/SpritePolygonTest.h Source/TexturePackerEncryptionTest/TextureAtlasEncryptionTest.h Source/NodeTest/NodeTest.h - Source/FileUtilsTest/FileUtilsTest.h Source/RenderTextureTest/RenderTextureTest.h Source/LayerTest/LayerTest.h Source/SpriteTest/SpriteTest.h @@ -297,7 +294,6 @@ list(APPEND GAME_SOURCE Source/ExtensionsTest/ExtensionsTest.cpp Source/ExtensionsTest/TableViewTest/CustomTableViewCell.cpp Source/ExtensionsTest/TableViewTest/TableViewTestScene.cpp - Source/FileUtilsTest/FileUtilsTest.cpp Source/FontTest/FontTest.cpp Source/InputTest/MouseTest.cpp Source/IntervalTest/IntervalTest.cpp @@ -364,8 +360,6 @@ list(APPEND GAME_SOURCE Source/UITest/CocoStudioGUITest/UIWidgetAddNodeTest/UIWidgetAddNodeTest.cpp Source/UITest/CocoStudioGUITest/UITabControlTest/UITabControlTest.cpp Source/UITest/UITest.cpp -# Source/UnitTest/RefPtrTest.cpp - Source/UnitTest/UnitTest.cpp Source/UserDefaultTest/UserDefaultTest.cpp Source/ImGuiTest/ImGuiTest.cpp Source/VisibleRect.cpp diff --git a/tests/cpp-tests/Source/FileUtilsTest/FileUtilsTest.cpp b/tests/cpp-tests/Source/FileUtilsTest/FileUtilsTest.cpp deleted file mode 100644 index 6458b0da48dc..000000000000 --- a/tests/cpp-tests/Source/FileUtilsTest/FileUtilsTest.cpp +++ /dev/null @@ -1,1241 +0,0 @@ -/**************************************************************************** - Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. - - https://axmolengine.github.io/ - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - ****************************************************************************/ - -#include "FileUtilsTest.h" - -USING_NS_AX; - -FileUtilsTests::FileUtilsTests() -{ - ADD_TEST_CASE(TestSearchPath); - ADD_TEST_CASE(TestIsFileExist); - ADD_TEST_CASE(TestIsDirectoryExist); - ADD_TEST_CASE(TestFileFuncs); - ADD_TEST_CASE(TestDirectoryFuncs); - ADD_TEST_CASE(TestWriteString); - ADD_TEST_CASE(TestGetContents); - ADD_TEST_CASE(TestWriteData); - ADD_TEST_CASE(TestWriteValueMap); - ADD_TEST_CASE(TestWriteValueVector); - ADD_TEST_CASE(TestUnicodePath); - ADD_TEST_CASE(TestIsFileExistAsync); - ADD_TEST_CASE(TestIsDirectoryExistAsync); - ADD_TEST_CASE(TestFileFuncsAsync); - ADD_TEST_CASE(TestWriteStringAsync); - ADD_TEST_CASE(TestWriteDataAsync); - ADD_TEST_CASE(TestListFiles); - ADD_TEST_CASE(TestIsFileExistRejectFolder); -} - -// TestSearchPath - -void TestSearchPath::onEnter() -{ - FileUtilsDemo::onEnter(); - auto sharedFileUtils = FileUtils::getInstance(); - - std::string ret; - - sharedFileUtils->purgeCachedEntries(); - _defaultSearchPathArray = sharedFileUtils->getOriginalSearchPaths(); - std::vector searchPaths = _defaultSearchPathArray; - std::string writablePath = sharedFileUtils->getWritablePath(); - std::string fileName = writablePath + "external.txt"; - char szBuf[100] = "Hello Cocos2d-x!"; - auto fp = fopen(fileName.c_str(), "wb"); - if (fp) - { - size_t ret = fwrite(szBuf, 1, strlen(szBuf), fp); - AXASSERT(ret != 0, "fwrite function returned zero value"); - fclose(fp); - if (ret != 0) - ax::print("Writing file to writable path succeed."); - } - - searchPaths.insert(searchPaths.begin(), writablePath); - searchPaths.insert(searchPaths.begin() + 1, "Misc/searchpath1"); - searchPaths.insert(searchPaths.begin() + 2, "Misc/searchpath2"); - sharedFileUtils->setSearchPaths(searchPaths); - - for (int i = 1; i < 3; i++) - { - auto filename = StringUtils::format("file%d.txt", i); - ret = sharedFileUtils->fullPathForFilename(filename); - ax::print("%s -> %s", filename.c_str(), ret.c_str()); - } - - // Gets external.txt from writable path - std::string fullPath = sharedFileUtils->fullPathForFilename("external.txt"); - ax::print("external file path = %s", fullPath.c_str()); - if (fullPath.length() > 0) - { - fp = fopen(fullPath.c_str(), "rb"); - if (fp) - { - char szReadBuf[100] = {0}; - size_t read = fread(szReadBuf, 1, strlen(szReadBuf), fp); - if (read > 0) - ax::print("The content of file from writable path: %s", szReadBuf); - fclose(fp); - } - } - - // FIXME: should fix the issue on Android -#if (AX_TARGET_PLATFORM != AX_PLATFORM_ANDROID) - - // Save old resource root path - std::string oldDefaultRootPath = sharedFileUtils->getDefaultResourceRootPath(); - sharedFileUtils->setDefaultResourceRootPath(oldDefaultRootPath + "extensions"); - auto sp1 = Sprite::create("orange_edit.png"); - sp1->setPosition(VisibleRect::center()); - addChild(sp1); - - // Recover resource root path - sharedFileUtils->setDefaultResourceRootPath(oldDefaultRootPath); - - auto oldSearchPaths = sharedFileUtils->getOriginalSearchPaths(); - sharedFileUtils->addSearchPath("Images"); - auto sp2 = Sprite::create("btn-about-normal.png"); - sp2->setPosition(VisibleRect::center() + Vec2(0, -50)); - addChild(sp2); - - // Recover old search paths - sharedFileUtils->setSearchPaths(oldSearchPaths); -#endif -} - -void TestSearchPath::onExit() -{ - FileUtils* sharedFileUtils = FileUtils::getInstance(); - - // reset search path - sharedFileUtils->setSearchPaths(_defaultSearchPathArray); - FileUtilsDemo::onExit(); -} - -std::string TestSearchPath::title() const -{ - return "FileUtils: search path"; -} - -std::string TestSearchPath::subtitle() const -{ - return "See the console, can see a orange box and a 'about' picture, except Android"; -} - -// TestIsFileExist - -void TestIsFileExist::onEnter() -{ - FileUtilsDemo::onEnter(); - auto s = Director::getInstance()->getWinSize(); - auto sharedFileUtils = FileUtils::getInstance(); - - Label* label = nullptr; - bool isExist = false; - - isExist = sharedFileUtils->isFileExist("Images/grossini.png"); - - label = Label::createWithSystemFont(isExist ? "Images/grossini.png exists" : "Images/grossini.png doesn't exist", - "", 20); - label->setPosition(s.width / 2, s.height / 3); - this->addChild(label); - - isExist = sharedFileUtils->isFileExist("Images/grossini.xcf"); - label = Label::createWithSystemFont(isExist ? "Images/grossini.xcf exists" : "Images/grossini.xcf doesn't exist", - "", 20); - label->setPosition(s.width / 2, s.height / 3 * 2); - this->addChild(label); -} - -void TestIsFileExist::onExit() -{ - - FileUtils* sharedFileUtils = FileUtils::getInstance(); - - FileUtilsDemo::onExit(); -} - -std::string TestIsFileExist::title() const -{ - return "FileUtils: check whether the file exists"; -} - -std::string TestIsFileExist::subtitle() const -{ - return ""; -} - -// TestIsDirectoryExist - -void TestIsDirectoryExist::onEnter() -{ - FileUtilsDemo::onEnter(); - auto s = Director::getInstance()->getWinSize(); - auto util = FileUtils::getInstance(); - int x = s.width / 2, y = s.height / 3; - - Label* label = nullptr; - std::string dir; - auto getMsg = [&dir](bool b) -> std::string { - char msg[512]; - snprintf((char*)msg, 512, "%s for dir: \"%s\"", b ? "success" : "failed", dir.c_str()); - return std::string(msg); - }; - - dir = "Images"; - label = Label::createWithSystemFont(getMsg(util->isDirectoryExist(dir)), "", 20); - label->setPosition(x, y * 2); - this->addChild(label); - - dir = util->getWritablePath(); - label = Label::createWithSystemFont(getMsg(util->isDirectoryExist(dir)), "", 20); - label->setPosition(x, y * 1); - this->addChild(label); - - dir = util->getWritablePath(); - label = Label::createWithSystemFont(getMsg(util->isDirectoryExist(dir)), "", 20); - label->setPosition(x, y * 1); - this->addChild(label); -} - -void TestIsDirectoryExist::onExit() -{ - - FileUtils* sharedFileUtils = FileUtils::getInstance(); - - // reset filename lookup - sharedFileUtils->purgeCachedEntries(); - - FileUtilsDemo::onExit(); -} - -std::string TestIsDirectoryExist::title() const -{ - return "FileUtils: check whether the directory exists"; -} - -std::string TestIsDirectoryExist::subtitle() const -{ - return ""; -} - -// TestFileFuncs - -void TestFileFuncs::onEnter() -{ - FileUtilsDemo::onEnter(); - auto s = Director::getInstance()->getWinSize(); - auto sharedFileUtils = FileUtils::getInstance(); - - int x = s.width / 2, y = s.height / 5; - Label* label = nullptr; - - std::string filename = "__test.test"; - std::string filename2 = "__newtest.test"; - std::string filepath = sharedFileUtils->getWritablePath() + filename; - std::string content = "Test string content to put into created file"; - std::string msg; - - auto out = fopen(filepath.c_str(), "w"); - fputs(content.c_str(), out); - fclose(out); - - // Check whether file can be created - if (sharedFileUtils->isFileExist(filepath)) - { - label = Label::createWithSystemFont("Test file '__test.test' created", "", 20); - label->setPosition(x, y * 4); - this->addChild(label); - - // getFileSize Test - int32_t size = sharedFileUtils->getFileSize(filepath); - msg = StringUtils::format("getFileSize: Test file size equals %d", size); - label = Label::createWithSystemFont(msg, "", 20); - label->setPosition(x, y * 3); - this->addChild(label); - - // renameFile Test - if (sharedFileUtils->renameFile(sharedFileUtils->getWritablePath(), filename, filename2)) - { - label = Label::createWithSystemFont("renameFile: Test file renamed to '__newtest.test'", "", 20); - label->setPosition(x, y * 2); - this->addChild(label); - - // removeFile Test - filepath = sharedFileUtils->getWritablePath() + filename2; - if (sharedFileUtils->removeFile(filepath)) - { - label = Label::createWithSystemFont("removeFile: Test file removed", "", 20); - label->setPosition(x, y * 1); - this->addChild(label); - } - else - { - label = Label::createWithSystemFont("removeFile: Failed to remove test file", "", 20); - label->setPosition(x, y * 1); - this->addChild(label); - } - } - else - { - label = Label::createWithSystemFont( - "renameFile: Failed to rename test file to '__newtest.test', further test skipped", "", 20); - label->setPosition(x, y * 2); - this->addChild(label); - } - } - else - { - label = Label::createWithSystemFont("Test file can not be created, test skipped", "", 20); - label->setPosition(x, y * 4); - this->addChild(label); - } -} - -std::string TestFileFuncs::title() const -{ - return "FileUtils: file control functions"; -} - -std::string TestFileFuncs::subtitle() const -{ - return ""; -} - -// TestDirectoryFuncs - -void TestDirectoryFuncs::onEnter() -{ - FileUtilsDemo::onEnter(); - auto s = Director::getInstance()->getWinSize(); - auto sharedFileUtils = FileUtils::getInstance(); - - int x = s.width / 2, y = s.height / 4; - Label* label = nullptr; - - std::string dir = sharedFileUtils->getWritablePath() + "__test"; - std::string subDir = "dir1/dir2"; - std::string fullSubDir = dir + "/" + subDir; - std::string msg; - bool ok; - - // Check whether dir can be created - ok = sharedFileUtils->createDirectory(dir); - if (ok && sharedFileUtils->isDirectoryExist(dir)) - { - msg = StringUtils::format("createDirectory: Directory '__test' created"); - label = Label::createWithSystemFont(msg, "", 20); - label->setPosition(x, y * 3); - this->addChild(label); - - // Create sub directories recursively - ok = sharedFileUtils->createDirectory(fullSubDir); - if (ok && sharedFileUtils->isDirectoryExist(fullSubDir)) - { - msg = StringUtils::format("createDirectory: Sub directories '%s' created", subDir.c_str()); - label = Label::createWithSystemFont(msg, "", 20); - label->setPosition(x, y * 2); - this->addChild(label); - } - else - { - msg = StringUtils::format("createDirectory: Failed to create sub directories '%s'", subDir.c_str()); - label = Label::createWithSystemFont(msg, "", 20); - label->setPosition(x, y * 2); - this->addChild(label); - } - - // Remove directory - ok = sharedFileUtils->removeDirectory(dir); - if (ok && !sharedFileUtils->isDirectoryExist(dir)) - { - msg = StringUtils::format("removeDirectory: Directory '__test' removed"); - label = Label::createWithSystemFont(msg, "", 20); - label->setPosition(x, y); - this->addChild(label); - } - else - { - msg = StringUtils::format("removeDirectory: Failed to remove directory '__test'"); - label = Label::createWithSystemFont(msg, "", 20); - label->setPosition(x, y); - this->addChild(label); - } - } - else - { - msg = StringUtils::format("createDirectory: Directory '__test' can not be created"); - label = Label::createWithSystemFont(msg, "", 20); - label->setPosition(x, y * 2); - this->addChild(label); - } -} - -std::string TestDirectoryFuncs::title() const -{ - return "FileUtils: directory control functions"; -} - -std::string TestDirectoryFuncs::subtitle() const -{ - return ""; -} - -void TestWriteString::onEnter() -{ - FileUtilsDemo::onEnter(); - - auto winSize = Director::getInstance()->getWinSize(); - - auto writeResult = Label::createWithTTF("show writeResult", "fonts/Thonburi.ttf", 18); - this->addChild(writeResult); - writeResult->setPosition(winSize.width / 2, winSize.height * 3 / 4); - - auto readResult = Label::createWithTTF("show readResult", "fonts/Thonburi.ttf", 18); - this->addChild(readResult); - readResult->setPosition(winSize.width / 2, winSize.height / 3); - - std::string writablePath = FileUtils::getInstance()->getWritablePath(); - std::string fileName = "writeStringTest.txt"; - - // writeTest - std::string writeDataStr = "the string data will be write into a file"; - std::string fullPath = writablePath + fileName; - if (FileUtils::getInstance()->writeStringToFile(writeDataStr, fullPath.c_str())) - { - ax::print("see the plist file at %s", fullPath.c_str()); - writeResult->setString("write success:" + writeDataStr); - } - else - { - ax::print("write plist file failed"); - writeResult->setString("write fail"); - } - - // readTest - std::string readDataStr = FileUtils::getInstance()->getStringFromFile(fullPath); - readResult->setString("read success:" + readDataStr); -} - -void TestWriteString::onExit() -{ - FileUtilsDemo::onExit(); -} - -std::string TestWriteString::title() const -{ - return "FileUtils: TestWriteString to files"; -} - -std::string TestWriteString::subtitle() const -{ - return ""; -} - -static void saveAsBinaryText(std::string_view filename, const std::vector& binary) -{ - auto fs = FileUtils::getInstance(); - std::string text(binary.begin(), binary.end()); - fs->writeStringToFile(text, filename); -} - -static const std::string FileErrors[] = { - "OK", "NotExists", "OpenFailed", "ReadFailed", "NotInitialized", "TooLarge", "ObtainSizeFailed", -}; - -void TestGetContents::onEnter() -{ - FileUtilsDemo::onEnter(); - auto fs = FileUtils::getInstance(); - - auto winSize = Director::getInstance()->getWinSize(); - - auto readResult = Label::createWithTTF("show readResult", "fonts/Thonburi.ttf", 16); - this->addChild(readResult); - readResult->setPosition(winSize.width / 2, winSize.height / 2); - - std::vector binary = {'\r', '\n', '\r', '\n', '\0', '\0', '\r', '\n'}; - _generatedFile = fs->getWritablePath() + "file-with-zeros-and-crlf"; - saveAsBinaryText(_generatedFile, binary); - - auto runTests = [&]() { - // Test read string in binary mode - std::string bs; - fs->getContents(_generatedFile, &bs); - if (bs.size() != binary.size() || !std::equal(bs.begin(), bs.end(), binary.begin())) - return std::string("failed: read as binary string"); - - // Text read string in text mode - std::string ts = fs->getStringFromFile(_generatedFile); - if (strcmp(ts.c_str(), "\r\n\r\n") != 0) - return std::string("failed: read as zero terminated string"); - - std::string files[] = {_generatedFile, "background.wav", "fileLookup.plist"}; - for (auto&& file : files) - { - std::string sbuf; - - auto serr = fs->getContents(file, &sbuf); - if (serr != FileUtils::Status::OK) - return std::string("failed: error: " + FileErrors[(int)serr]); - - std::vector vbuf; - auto verr = fs->getContents(file, &vbuf); - if (verr != FileUtils::Status::OK) - return std::string("failed: error: " + FileErrors[(int)verr]); - - Data dbuf; - auto derr = fs->getContents(file, &dbuf); - if (derr != FileUtils::Status::OK) - return std::string("failed: error: " + FileErrors[(int)derr]); - - if (memcmp(&sbuf.front(), &vbuf.front(), sbuf.size()) != 0) - return std::string("failed: error: sbuf != vbuf"); - - if (dbuf.getSize() != sbuf.size()) - return std::string("failed: error: sbuf.size() != dbuf.getSize()"); - - if (memcmp(&sbuf.front(), dbuf.getBytes(), sbuf.size()) != 0) - return std::string("failed: error: sbuf != dbuf"); - } - return std::string("read success"); - }; - readResult->setString("FileUtils::getContents() " + runTests()); -} - -void TestGetContents::onExit() -{ - if (!_generatedFile.empty()) - FileUtils::getInstance()->removeFile(_generatedFile); - - FileUtilsDemo::onExit(); -} - -std::string TestGetContents::title() const -{ - return "FileUtils: TestGetContents"; -} - -std::string TestGetContents::subtitle() const -{ - return ""; -} - -void TestWriteData::onEnter() -{ - FileUtilsDemo::onEnter(); - - auto winSize = Director::getInstance()->getWinSize(); - - auto writeResult = Label::createWithTTF("show writeResult", "fonts/Thonburi.ttf", 18); - this->addChild(writeResult); - writeResult->setPosition(winSize.width / 2, winSize.height * 3 / 4); - - auto readResult = Label::createWithTTF("show readResult", "fonts/Thonburi.ttf", 18); - this->addChild(readResult); - readResult->setPosition(winSize.width / 2, winSize.height / 3); - - std::string writablePath = FileUtils::getInstance()->getWritablePath(); - std::string fileName = "writeDataTest.txt"; - - // writeTest - std::string writeDataStr = "the binary data will be write into a file"; - Data writeData; - writeData.copy((unsigned char*)writeDataStr.c_str(), writeDataStr.size()); - std::string fullPath = writablePath + fileName; - if (FileUtils::getInstance()->writeDataToFile(writeData, fullPath.c_str())) - { - ax::print("see the plist file at %s", fullPath.c_str()); - writeResult->setString("write success:" + writeDataStr); - } - else - { - ax::print("write plist file failed"); - writeResult->setString("write fail"); - } - - // readTest - unsigned char* buffer = nullptr; - Data readData = FileUtils::getInstance()->getDataFromFile(fullPath); - buffer = (unsigned char*)malloc(sizeof(unsigned char) * (readData.getSize() + 1)); - memcpy(buffer, readData.getBytes(), readData.getSize()); - buffer[readData.getSize()] = '\0'; - std::string readDataStr((const char*)buffer); - free(buffer); - - readResult->setString("read success:" + readDataStr); -} - -void TestWriteData::onExit() -{ - FileUtilsDemo::onExit(); -} - -std::string TestWriteData::title() const -{ - return "FileUtils: TestWriteData to files"; -} - -std::string TestWriteData::subtitle() const -{ - return ""; -} - -void TestWriteValueMap::onEnter() -{ - FileUtilsDemo::onEnter(); - - auto winSize = Director::getInstance()->getWinSize(); - - auto writeResult = Label::createWithTTF("show writeResult", "fonts/Thonburi.ttf", 18); - this->addChild(writeResult); - writeResult->setPosition(winSize.width / 2, winSize.height * 3 / 4); - - auto readResult = Label::createWithTTF("show readResult", "fonts/Thonburi.ttf", 18); - this->addChild(readResult); - readResult->setPosition(winSize.width / 2, winSize.height / 3); - - ValueMap valueMap; - - ValueMap mapInValueMap; - mapInValueMap["string1"] = "string in dictInMap key 0"; - mapInValueMap["string2"] = "string in dictInMap key 1"; - mapInValueMap["none"].getType(); - - valueMap["data0"] = Value(mapInValueMap); - - valueMap["data1"] = Value("string in array"); - - ValueVector arrayInMap; - arrayInMap.emplace_back(Value("string 0 in arrayInMap")); - arrayInMap.emplace_back(Value("string 1 in arrayInMap")); - valueMap["data2"] = arrayInMap; - - // add boolean to the plist - auto booleanObject = Value(true); - valueMap["data3"] = booleanObject; - - // add integer to the plist - auto intObject = Value(1024); - valueMap["data4"] = intObject; - - // add float to the plist - auto floatObject = Value(1024.1024f); - valueMap["data5"] = floatObject; - - // add double to the plist - auto doubleObject = Value(1024.123); - valueMap["data6"] = doubleObject; - - // end with / - std::string writablePath = FileUtils::getInstance()->getWritablePath(); - std::string fullPath = writablePath + "testWriteValueMap.plist"; - if (FileUtils::getInstance()->writeValueMapToFile(valueMap, fullPath.c_str())) - { - ax::print("see the plist file at %s", fullPath.c_str()); - writeResult->setString("write success"); - } - else - { - ax::print("write plist file failed"); - writeResult->setString("write failed"); - } - - ValueMap readValueMap = FileUtils::getInstance()->getValueMapFromFile(fullPath.c_str()); - std::string readDataStr = "read data:\n"; - // read value map data - ValueMap readMapInMap = readValueMap["data0"].asValueMap(); - readDataStr += " mapValue:[\"string1\"][" + readMapInMap["string1"].asString() + "]\n"; - readDataStr += " mapValue:[\"string2\"][" + readMapInMap["string2"].asString() + "]\n"; - - // read string data - readDataStr += " stringValue:" + readValueMap["data1"].asString() + "\n"; - - // read value vector data - ValueVector readVectorInMap = readValueMap["data2"].asValueVector(); - readDataStr += " vectorValue:[1]" + readVectorInMap.at(0).asString() + "\n"; - readDataStr += " vectorValue:[2]" + readVectorInMap.at(1).asString() + "\n"; - - // read bool data - readDataStr += " boolValue:" + StringUtils::format("%d", readValueMap["data3"].asBool()) + "\n"; - - // read int data - readDataStr += " intValue:" + StringUtils::format("%d", readValueMap["data4"].asInt()) + "\n"; - - // read float data - readDataStr += " floatValue:" + StringUtils::format("%f", readValueMap["data5"].asFloat()) + "\n"; - - // read double data - readDataStr += " doubleValue:" + StringUtils::format("%f", readValueMap["data6"].asDouble()) + "\n"; - - readResult->setString(readDataStr); -} -void TestWriteValueMap::onExit() -{ - FileUtilsDemo::onExit(); -} - -std::string TestWriteValueMap::title() const -{ - return "FileUtils: TestWriteValueMap to files"; -} - -std::string TestWriteValueMap::subtitle() const -{ - return ""; -} - -void TestWriteValueVector::onEnter() -{ - FileUtilsDemo::onEnter(); - - auto winSize = Director::getInstance()->getWinSize(); - - auto writeResult = Label::createWithTTF("show writeResult", "fonts/Thonburi.ttf", 18); - this->addChild(writeResult); - writeResult->setPosition(winSize.width / 2, winSize.height * 3 / 4); - - auto readResult = Label::createWithTTF("show readResult", "fonts/Thonburi.ttf", 18); - this->addChild(readResult); - readResult->setPosition(winSize.width / 2, winSize.height / 3); - - ValueVector array; - - ValueMap mapInArray; - mapInArray["string1"] = "string in dictInArray key 0"; - mapInArray["string2"] = "string in dictInArray key 1"; - array.emplace_back(Value(mapInArray)); - - array.emplace_back(Value("string in array")); - - ValueVector arrayInArray; - arrayInArray.emplace_back(Value("string 0 in arrayInArray")); - arrayInArray.emplace_back(Value("string 1 in arrayInArray")); - array.emplace_back(Value(arrayInArray)); - - // add boolean to the plist - auto booleanObject = Value(true); - array.emplace_back(booleanObject); - - // add integer to the plist - auto intObject = Value(1024); - array.emplace_back(intObject); - - // add float to the plist - auto floatObject = Value(1024.1024f); - array.emplace_back(floatObject); - - // add double to the plist - auto doubleObject = Value(1024.123); - array.emplace_back(doubleObject); - - // end with / - std::string writablePath = FileUtils::getInstance()->getWritablePath(); - std::string fullPath = writablePath + "testWriteValueVector.plist"; - if (FileUtils::getInstance()->writeValueVectorToFile(array, fullPath.c_str())) - { - ax::print("see the plist file at %s", fullPath.c_str()); - writeResult->setString("write success"); - } - else - { - ax::print("write plist file failed"); - writeResult->setString("write failed"); - } - - ValueVector readArray = FileUtils::getInstance()->getValueVectorFromFile(fullPath.c_str()); - std::string readDataStr = "read data:\n"; - // read value map data - ValueMap readMapInArray = readArray.at(0).asValueMap(); - readDataStr += " mapValue:[\"string1\"][" + readMapInArray["string1"].asString() + "]\n"; - readDataStr += " mapValue:[\"string2\"][" + readMapInArray["string2"].asString() + "]\n"; - - // read string data - readDataStr += " stringValue:" + readArray.at(1).asString() + "\n"; - - // read value vector data - ValueVector readVectorInArray = readArray.at(2).asValueVector(); - readDataStr += " vectorValue:[1]" + readVectorInArray.at(0).asString() + "\n"; - readDataStr += " vectorValue:[2]" + readVectorInArray.at(1).asString() + "\n"; - - // read bool data - readDataStr += " boolValue:" + StringUtils::format("%d", readArray.at(3).asBool()) + "\n"; - - // read int data - readDataStr += " intValue:" + StringUtils::format("%d", readArray.at(4).asInt()) + "\n"; - - // read float data - readDataStr += " floatValue:" + StringUtils::format("%f", readArray.at(5).asFloat()) + "\n"; - - // read double data - readDataStr += " doubleValue:" + StringUtils::format("%f", readArray.at(6).asDouble()) + "\n"; - - readResult->setString(readDataStr); -} - -void TestWriteValueVector::onExit() -{ - FileUtilsDemo::onExit(); -} - -std::string TestWriteValueVector::title() const -{ - return "FileUtils: TestWriteValueVector to files"; -} - -std::string TestWriteValueVector::subtitle() const -{ - return ""; -} - -// TestUnicodePath - -void TestUnicodePath::onEnter() -{ - FileUtilsDemo::onEnter(); - auto s = Director::getInstance()->getWinSize(); - auto util = FileUtils::getInstance(); - - int x = s.width / 2, y = s.height / 5; - Label* label = nullptr; - - std::string dir = "中文路径/"; - std::string filename = "测试文件.test"; - - std::string act; - auto getMsg = [&act](bool b, std::string_view path) -> std::string { - char msg[512]; - snprintf((char*)msg, 512, "%s for %s path: \"%s\"", b ? "success" : "failed", act.c_str(), path.data()); - return std::string(msg); - }; - - // Check whether unicode dir should be create or not - std::string dirPath = util->getWritablePath() + dir; - if (!util->isDirectoryExist(dirPath)) - { - util->createDirectory(dirPath); - } - - act = "create"; - bool isExist = util->isDirectoryExist(dirPath); - label = Label::createWithSystemFont(getMsg(isExist, dirPath), "", 12, Size(s.width, 0)); - label->setPosition(x, y * 4); - this->addChild(label); - - if (isExist) - { - // Check whether unicode file should be create or not - std::string filePath = dirPath + filename; - if (!util->isFileExist(filePath)) - { - std::string writeDataStr = " 测试字符串."; - Data writeData; - writeData.copy((unsigned char*)writeDataStr.c_str(), writeDataStr.size()); - util->writeDataToFile(writeData, filePath); - } - - isExist = util->isFileExist(filePath); - label = Label::createWithSystemFont(getMsg(isExist, filePath), "", 12, Size(s.width, 0)); - label->setPosition(x, y * 3); - this->addChild(label); - - act = "remove"; - if (isExist) - { - // read file content and log it - unsigned char* buffer = nullptr; - Data readData = util->getDataFromFile(filePath); - buffer = (unsigned char*)malloc(sizeof(unsigned char) * (readData.getSize() + 1)); - memcpy(buffer, readData.getBytes(), readData.getSize()); - buffer[readData.getSize()] = '\0'; - // vc can't treat unicode string correctly, don't use unicode string in code - ax::print("The content of file from writable path: %s", buffer); - free(buffer); - - // remove test file - label = Label::createWithSystemFont(getMsg(util->removeFile(filePath), filePath), "", 12, Size(s.width, 0)); - label->setPosition(x, y * 2); - this->addChild(label); - } - - // remove test dir - label = Label::createWithSystemFont(getMsg(util->removeDirectory(dirPath), dirPath), "", 12, Size(s.width, 0)); - label->setPosition(x, y * 1); - this->addChild(label); - } -} - -void TestUnicodePath::onExit() -{ - - FileUtils* sharedFileUtils = FileUtils::getInstance(); - sharedFileUtils->purgeCachedEntries(); - FileUtilsDemo::onExit(); -} - -std::string TestUnicodePath::title() const -{ - return "FileUtils: check unicode path"; -} - -std::string TestUnicodePath::subtitle() const -{ - return ""; -} - -// TestIsFileExist - -void TestIsFileExistAsync::onEnter() -{ - FileUtilsDemo::onEnter(); - auto s = Director::getInstance()->getWinSize(); - auto sharedFileUtils = FileUtils::getInstance(); - - sharedFileUtils->isFileExist("Images/grossini.png", [=](bool isExist) { - AXASSERT(std::this_thread::get_id() == Director::getInstance()->getAxmolThreadId(), - "Callback should be on cocos thread"); - auto label = Label::createWithSystemFont( - isExist ? "Images/grossini.png exists" : "Images/grossini.png doesn't exist", "", 20); - label->setPosition(s.width / 2, s.height / 3); - this->addChild(label); - - isExist = sharedFileUtils->isFileExist("Images/grossini.xcf"); - label = Label::createWithSystemFont( - isExist ? "Images/grossini.xcf exists" : "Images/grossini.xcf doesn't exist", "", 20); - label->setPosition(s.width / 2, s.height / 3 * 2); - this->addChild(label); - }); -} - -void TestIsFileExistAsync::onExit() -{ - FileUtilsDemo::onExit(); -} - -std::string TestIsFileExistAsync::title() const -{ - return "FileUtilsAsync: check whether the file exists"; -} - -std::string TestIsFileExistAsync::subtitle() const -{ - return ""; -} - -void TestIsDirectoryExistAsync::onEnter() -{ - FileUtilsDemo::onEnter(); - auto s = Director::getInstance()->getWinSize(); - auto util = FileUtils::getInstance(); - int x = s.width / 2, y = s.height / 3; - - std::string dir; - auto getMsg = [](bool b, std::string_view dir) -> std::string { - char msg[512]; - snprintf((char*)msg, 512, "%s for dir: \"%s\"", b ? "success" : "failed", dir.data()); - return std::string(msg); - }; - - dir = util->getWritablePath(); - util->isDirectoryExist(dir, [=](bool exists) { - AXASSERT(exists, "Writable path should exist"); - auto label = Label::createWithSystemFont(getMsg(exists, dir), "", 20); - label->setPosition(x, y * 2); - this->addChild(label); - }); -} - -void TestIsDirectoryExistAsync::onExit() -{ - - FileUtils* sharedFileUtils = FileUtils::getInstance(); - - // reset filename lookup - sharedFileUtils->purgeCachedEntries(); - - FileUtilsDemo::onExit(); -} - -std::string TestIsDirectoryExistAsync::title() const -{ - return "FileUtilsAsync: check whether the directory exists"; -} - -std::string TestIsDirectoryExistAsync::subtitle() const -{ - return ""; -} - -void TestFileFuncsAsync::onEnter() -{ - FileUtilsDemo::onEnter(); - auto s = Director::getInstance()->getWinSize(); - auto sharedFileUtils = FileUtils::getInstance(); - - int x = s.width / 2, y = s.height / 5; - - std::string filename = "__test.test"; - std::string filename2 = "__newtest.test"; - std::string filepath = sharedFileUtils->getWritablePath() + filename; - std::string content = "Test string content to put into created file"; - std::string msg; - - auto out = fopen(filepath.c_str(), "w"); - fputs(content.c_str(), out); - fclose(out); - - sharedFileUtils->isFileExist(filepath, [=](bool exists) { - AXASSERT(exists, "File could not be found"); - auto label = Label::createWithSystemFont("Test file '__test.test' created", "", 20); - label->setPosition(x, y * 4); - this->addChild(label); - - sharedFileUtils->getFileSize(filepath, [=](int32_t size) { - auto msg = StringUtils::format("getFileSize: Test file size equals %d", size); - auto label = Label::createWithSystemFont(msg, "", 20); - label->setPosition(x, y * 3); - this->addChild(label); - - sharedFileUtils->renameFile(sharedFileUtils->getWritablePath(), filename, filename2, [=](bool success) { - AXASSERT(success, "Was not able to properly rename file"); - auto label = Label::createWithSystemFont("renameFile: Test file renamed to '__newtest.test'", "", 20); - label->setPosition(x, y * 2); - this->addChild(label); - - sharedFileUtils->removeFile(sharedFileUtils->getWritablePath() + filename2, [=](bool success) { - AXASSERT(success, "Was not able to remove file"); - auto label = Label::createWithSystemFont("removeFile: Test file removed", "", 20); - label->setPosition(x, y * 1); - this->addChild(label); - }); - }); - }); - }); -} - -std::string TestFileFuncsAsync::title() const -{ - return "FileUtilsAsync: file control functions"; -} - -std::string TestFileFuncsAsync::subtitle() const -{ - return ""; -} - -void TestWriteStringAsync::onEnter() -{ - FileUtilsDemo::onEnter(); - - auto winSize = Director::getInstance()->getWinSize(); - - auto writeResult = Label::createWithTTF("show writeResult", "fonts/Thonburi.ttf", 18); - this->addChild(writeResult); - writeResult->setPosition(winSize.width / 2, winSize.height * 3 / 4); - - auto readResult = Label::createWithTTF("show readResult", "fonts/Thonburi.ttf", 18); - this->addChild(readResult); - readResult->setPosition(winSize.width / 2, winSize.height / 3); - - std::string writablePath = FileUtils::getInstance()->getWritablePath(); - std::string fileName = "writeStringTest.txt"; - - // writeTest - std::string writeDataStr = "the string data will be write into a file"; - std::string fullPath = writablePath + fileName; - - FileUtils::getInstance()->writeStringToFile(writeDataStr, fullPath, [=](bool success) { - AXASSERT(success, "Write String to data failed"); - writeResult->setString("write success:" + writeDataStr); - - FileUtils::getInstance()->getStringFromFile(fullPath, [=](std::string_view value) { - AXASSERT(!value.empty(), "String should be readable"); - - std::string strVal = "read success: "; - readResult->setString(strVal.append(value)); - }); - }); -} - -void TestWriteStringAsync::onExit() -{ - FileUtilsDemo::onExit(); -} - -std::string TestWriteStringAsync::title() const -{ - return "FileUtilsAsync: TestWriteString to files"; -} - -std::string TestWriteStringAsync::subtitle() const -{ - return ""; -} - -void TestWriteDataAsync::onEnter() -{ - FileUtilsDemo::onEnter(); - - auto winSize = Director::getInstance()->getWinSize(); - - auto writeResult = Label::createWithTTF("show writeResult", "fonts/Thonburi.ttf", 18); - this->addChild(writeResult); - writeResult->setPosition(winSize.width / 2, winSize.height * 3 / 4); - - auto readResult = Label::createWithTTF("show readResult", "fonts/Thonburi.ttf", 18); - this->addChild(readResult); - readResult->setPosition(winSize.width / 2, winSize.height / 3); - - std::string writablePath = FileUtils::getInstance()->getWritablePath(); - std::string fileName = "writeDataTest.txt"; - - // writeTest - std::string writeDataStr = "the binary data will be write into a file"; - Data writeData; - writeData.copy((unsigned char*)writeDataStr.c_str(), writeDataStr.size()); - std::string fullPath = writablePath + fileName; - - FileUtils::getInstance()->writeDataToFile(writeData, fullPath, [=](bool success) { - if (success) - { - writeResult->setString("Write result success"); - } - else - { - writeResult->setString("Write result failure"); - } - - FileUtils::getInstance()->getDataFromFile(fullPath, [=](const Data& readData) { - auto buffer = (unsigned char*)malloc(sizeof(unsigned char) * (readData.getSize() + 1)); - memcpy(buffer, readData.getBytes(), readData.getSize()); - buffer[readData.getSize()] = '\0'; - std::string readDataStr((const char*)buffer); - free(buffer); - - readResult->setString("read success:" + readDataStr); - }); - }); -} - -void TestWriteDataAsync::onExit() -{ - FileUtilsDemo::onExit(); -} - -std::string TestWriteDataAsync::title() const -{ - return "FileUtilsAsync: TestWriteData to files"; -} - -std::string TestWriteDataAsync::subtitle() const -{ - return ""; -} - -void TestListFiles::onEnter() -{ - FileUtilsDemo::onEnter(); - - auto winSize = Director::getInstance()->getWinSize(); - - auto infoLabel = Label::createWithTTF("show file count, should not be 0", "fonts/Thonburi.ttf", 18); - this->addChild(infoLabel); - infoLabel->setPosition(winSize.width / 2, winSize.height * 3 / 4); - - auto cntLabel = Label::createWithTTF("show readResult", "fonts/Thonburi.ttf", 18); - this->addChild(cntLabel); - cntLabel->setPosition(winSize.width / 2, winSize.height / 3); - // writeTest - std::vector listFonts = FileUtils::getInstance()->listFiles("fonts"); - auto defaultPath = FileUtils::getInstance()->getDefaultResourceRootPath(); - std::vector list = FileUtils::getInstance()->listFiles(defaultPath); - - char cntBuffer[200] = {0}; - snprintf(cntBuffer, 200, "'fonts/' %zu, $defaultResourceRootPath %zu", listFonts.size(), list.size()); - - for (int i = 0; i < listFonts.size(); i++) - { - AXLOG("fonts/ %d: \t %s", i, listFonts[i].c_str()); - } - - for (int i = 0; i < list.size(); i++) - { - AXLOG("defResRootPath %d: \t %s", i, list[i].c_str()); - } - - cntLabel->setString(cntBuffer); -} - -void TestListFiles::onExit() -{ - FileUtilsDemo::onExit(); -} - -std::string TestListFiles::title() const -{ - return "FileUtils: list files of directory"; -} - -std::string TestListFiles::subtitle() const -{ - return ""; -} - -void TestIsFileExistRejectFolder::onEnter() -{ - FileUtilsDemo::onEnter(); - - auto winSize = Director::getInstance()->getWinSize(); - - auto infoLabel = Label::createWithTTF("tests folder 'NavMesh/maps', expect to be false", "fonts/Thonburi.ttf", 18); - this->addChild(infoLabel); - infoLabel->setPosition(winSize.width / 2, winSize.height * 3 / 4); - - auto cntLabel = Label::createWithTTF("waiting...", "fonts/Thonburi.ttf", 18); - this->addChild(cntLabel); - cntLabel->setPosition(winSize.width / 2, winSize.height / 3); - - auto exists = FileUtils::getInstance()->isFileExist("NavMesh/maps"); - auto isDirectory = FileUtils::getInstance()->isDirectoryExist("NavMesh/maps"); - - char cntBuffer[200] = {0}; - snprintf(cntBuffer, 200, "isDir: %s, isFile: %s", isDirectory ? "true" : "false", exists ? "true" : "false"); - cntLabel->setString(cntBuffer); -} - -void TestIsFileExistRejectFolder::onExit() -{ - FileUtilsDemo::onExit(); -} - -std::string TestIsFileExistRejectFolder::title() const -{ - return "FileUtils: isFileExist(direname)"; -} - -std::string TestIsFileExistRejectFolder::subtitle() const -{ - return ""; -} diff --git a/tests/cpp-tests/Source/FileUtilsTest/FileUtilsTest.h b/tests/cpp-tests/Source/FileUtilsTest/FileUtilsTest.h deleted file mode 100644 index 845cb3344f25..000000000000 --- a/tests/cpp-tests/Source/FileUtilsTest/FileUtilsTest.h +++ /dev/null @@ -1,248 +0,0 @@ -/**************************************************************************** - Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. - - https://axmolengine.github.io/ - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - ****************************************************************************/ - -#ifndef __FILEUTILSTEST_H__ -#define __FILEUTILSTEST_H__ - -#include "../BaseTest.h" - -DEFINE_TEST_SUITE(FileUtilsTests); - -class FileUtilsDemo : public TestCase -{ -public: -}; - -class TestSearchPath : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestSearchPath); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; - -private: - std::vector _defaultSearchPathArray; -}; - -class TestIsFileExist : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestIsFileExist); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestIsDirectoryExist : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestIsDirectoryExist); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestFileFuncs : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestFileFuncs); - - virtual void onEnter() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestDirectoryFuncs : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestDirectoryFuncs); - - virtual void onEnter() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestWriteString : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestWriteString); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestGetContents : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestGetContents); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; - -private: - std::string _generatedFile; -}; - -class TestWriteData : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestWriteData); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestWriteValueMap : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestWriteValueMap); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestWriteValueVector : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestWriteValueVector); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestUnicodePath : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestUnicodePath); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestIsFileExistAsync : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestIsFileExistAsync); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestIsDirectoryExistAsync : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestIsDirectoryExistAsync); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestFileFuncsAsync : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestFileFuncsAsync); - - virtual void onEnter() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestDirectoryFuncsAsync : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestDirectoryFuncsAsync); - - virtual void onEnter() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestWriteStringAsync : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestWriteStringAsync); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestWriteDataAsync : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestWriteDataAsync); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestListFiles : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestListFiles); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -class TestIsFileExistRejectFolder : public FileUtilsDemo -{ -public: - CREATE_FUNC(TestIsFileExistRejectFolder); - - virtual void onEnter() override; - virtual void onExit() override; - virtual std::string title() const override; - virtual std::string subtitle() const override; -}; - -#endif /* __FILEUTILSTEST_H__ */ diff --git a/tests/cpp-tests/Source/UnitTest/UnitTest.cpp b/tests/cpp-tests/Source/UnitTest/UnitTest.cpp deleted file mode 100644 index 1a95faba6ef0..000000000000 --- a/tests/cpp-tests/Source/UnitTest/UnitTest.cpp +++ /dev/null @@ -1,1726 +0,0 @@ -/**************************************************************************** - Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. - Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). - - https://axmolengine.github.io/ - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - ****************************************************************************/ - -#include "UnitTest.h" -#include "ui/UIHelper.h" -#include "network/Uri.h" -#include "base/Utils.h" -#include "yasio/byte_buffer.hpp" - -USING_NS_AX; -using namespace ax::network; - -#if (AX_TARGET_PLATFORM == AX_PLATFORM_IOS) -# if defined(__arm64__) -# define USE_NEON64 -# define INCLUDE_NEON64 -# elif defined(__ARM_NEON__) -# define USE_NEON32 -# define INCLUDE_NEON32 -# else -# endif -#elif (AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID) -# if defined(__arm64__) || defined(__aarch64__) -# define USE_NEON64 -# define INCLUDE_NEON64 -# elif defined(__ARM_NEON__) -# define INCLUDE_NEON32 -# else -# endif -#else - -#endif - -#if defined(__SSE__) -# define USE_SSE -# define INCLUDE_SSE -#endif - -#if (defined INCLUDE_NEON64) || (defined INCLUDE_NEON32) // FIXME: || (defined INCLUDE_SSE) -# define UNIT_TEST_FOR_OPTIMIZED_MATH_UTIL -#endif - -#define EXPECT_EQ(a, b) assert((a) == (b)) -#define EXPECT_NE(a, b) assert((a) != (b)) -#define EXPECT_TRUE(a) assert(a) -#define EXPECT_FALSE(a) assert(!(a)) - -// For ' < o > ' multiply test scene. - -UnitTests::UnitTests() -{ - ADD_TEST_CASE(TemplateVectorTest); - ADD_TEST_CASE(TemplateMapTest); - ADD_TEST_CASE(ValueTest); - ADD_TEST_CASE(UTFConversionTest); - ADD_TEST_CASE(UIHelperSubStringTest); - ADD_TEST_CASE(ParseIntegerListTest); - ADD_TEST_CASE(ParseUriTest); - ADD_TEST_CASE(ResizableBufferAdapterTest); -#ifdef UNIT_TEST_FOR_OPTIMIZED_MATH_UTIL - ADD_TEST_CASE(MathUtilTest); -#endif -}; - -std::string UnitTestDemo::title() const -{ - return "UnitTest"; -} - -//--------------------------------------------------------------- - -void TemplateVectorTest::onEnter() -{ - UnitTestDemo::onEnter(); - - Vector vec; - AXASSERT(vec.empty(), "vec should be empty."); - AXASSERT(vec.capacity() == 0, "vec.capacity should be 0."); - AXASSERT(vec.size() == 0, "vec.size should be 0."); - AXASSERT(vec.max_size() > 0, "vec.max_size should > 0."); - - auto node1 = Node::create(); - node1->setTag(1); - vec.pushBack(node1); - AXASSERT(node1->getReferenceCount() == 2, "node1->getReferenceCount should be 2."); - - auto node2 = Node::create(); - node2->setTag(2); - vec.pushBack(node2); - AXASSERT(vec.getIndex(node1) == 0, "node1 should at index 0 in vec."); - AXASSERT(vec.getIndex(node2) == 1, "node2 should at index 1 in vec."); - - auto node3 = Node::create(); - node3->setTag(3); - vec.insert(1, node3); - AXASSERT(vec.at(0)->getTag() == 1, "The element at 0, tag should be 1."); - AXASSERT(vec.at(1)->getTag() == 3, "The element at 1, tag should be 3."); - AXASSERT(vec.at(2)->getTag() == 2, "The element at 2, tag should be 2."); - - // Test copy constructor - Vector vec2(vec); - AXASSERT(vec2.size() == vec.size(), "vec2 and vec should have equal size."); - ssize_t size = vec.size(); - for (ssize_t i = 0; i < size; ++i) - { - AXASSERT(vec2.at(i) == vec.at(i), "The element at the same index in vec2 and vec2 should be equal."); - AXASSERT(vec.at(i)->getReferenceCount() == 3, "The reference count of element in vec is 3. "); - AXASSERT(vec2.at(i)->getReferenceCount() == 3, "The reference count of element in vec2 is 3. "); - } - - // Test copy assignment operator - Vector vec3; - vec3 = vec2; - AXASSERT(vec3.size() == vec2.size(), "vec3 and vec2 should have equal size."); - size = vec3.size(); - for (ssize_t i = 0; i < size; ++i) - { - AXASSERT(vec3.at(i) == vec2.at(i), "The element at the same index in vec3 and vec2 should be equal."); - AXASSERT(vec3.at(i)->getReferenceCount() == 4, "The reference count of element in vec3 is 4. "); - AXASSERT(vec2.at(i)->getReferenceCount() == 4, "The reference count of element in vec2 is 4. "); - AXASSERT(vec.at(i)->getReferenceCount() == 4, "The reference count of element in vec is 4. "); - } - - // Test move constructor - - auto createVector = []() { - Vector ret; - - for (int i = 0; i < 20; i++) - { - ret.pushBack(Node::create()); - } - - int j = 1000; - for (auto&& child : ret) - { - child->setTag(j++); - } - - return ret; - }; - - Vector vec4(createVector()); - for (const auto& child : vec4) - { - AX_UNUSED_PARAM(child); - AXASSERT(child->getReferenceCount() == 2, "child's reference count should be 2."); - } - - // Test init Vector with capacity - Vector vec5(10); - AXASSERT(vec5.capacity() == 10, "vec5's capacity should be 10."); - vec5.reserve(20); - AXASSERT(vec5.capacity() == 20, "vec5's capacity should be 20."); - - AXASSERT(vec5.size() == 0, "vec5's size should be 0."); - AXASSERT(vec5.empty(), "vec5 is empty now."); - - auto toRemovedNode = Node::create(); - vec5.pushBack(toRemovedNode); - AXASSERT(toRemovedNode->getReferenceCount() == 2, "toRemovedNode's reference count is 2."); - - // Test move assignment operator - vec5 = createVector(); - AXASSERT(toRemovedNode->getReferenceCount() == 1, "toRemovedNode's reference count is 1."); - AXASSERT(vec5.size() == 20, "size should be 20"); - - for (const auto& child : vec5) - { - AX_UNUSED_PARAM(child); - AXASSERT(child->getReferenceCount() == 2, "child's reference count is 2."); - } - - // Test Vector::find - AXASSERT(vec.find(node3) == (vec.begin() + 1), "node3 is the 2nd element in vec."); - AXASSERT(std::find(std::begin(vec), std::end(vec), node2) == (vec.begin() + 2), "node2 is the 3rd element in vec."); - - AXASSERT(vec.front()->getTag() == 1, "vec's front element's tag is 1."); - AXASSERT(vec.back()->getTag() == 2, "vec's back element's tag is 2."); - - AXASSERT(vec.getRandomObject(), "vec getRandomObject should return true."); - AXASSERT(!vec.contains(Node::create()), "vec doesn't contain a empty Node instance."); - AXASSERT(vec.contains(node1), "vec contains node1."); - AXASSERT(vec.contains(node2), "vec contains node2."); - AXASSERT(vec.contains(node3), "vec contains node3."); - AXASSERT(vec.equals(vec2), "vec is equal to vec2."); - AXASSERT(vec.equals(vec3), "vec is equal to vec3."); - - // Insert - vec5.insert(2, node1); - AXASSERT(vec5.at(2)->getTag() == 1, "vec5's 3rd element's tag is 1."); - AXASSERT(vec5.size() == 21, "vec5's size is 21."); - vec5.back()->setTag(100); - vec5.popBack(); - AXASSERT(vec5.size() == 20, "vec5's size is 20."); - AXASSERT(vec5.back()->getTag() != 100, "the back element of vec5's tag is 100."); - - // Erase and clear - Vector vec6 = createVector(); - Vector vec7 = vec6; // Copy for check - - AXASSERT(vec6.size() == 20, "vec6's size is 20."); - vec6.erase(vec6.begin() + 1); // - AXASSERT(vec6.size() == 19, "vec6's size is 19."); - AXASSERT((*(vec6.begin() + 1))->getTag() == 1002, "The 2rd element in vec6's tag is 1002."); - vec6.erase(vec6.begin() + 2, vec6.begin() + 10); - AXASSERT(vec6.size() == 11, "vec6's size is 11."); - AXASSERT(vec6.at(0)->getTag() == 1000, "vec6's first element's tag is 1000."); - AXASSERT(vec6.at(1)->getTag() == 1002, "vec6's second element's tag is 1002."); - AXASSERT(vec6.at(2)->getTag() == 1011, "vec6's third element's tag is 1011."); - AXASSERT(vec6.at(3)->getTag() == 1012, "vec6's fouth element's tag is 1012."); - vec6.erase(3); - AXASSERT(vec6.at(3)->getTag() == 1013, "vec6's 4th element's tag is 1013."); - vec6.eraseObject(vec6.at(2)); - AXASSERT(vec6.at(2)->getTag() == 1013, "vec6's 3rd element's tag is 1013."); - vec6.clear(); - - auto objA = Node::create(); // retain count is 1 - auto objB = Node::create(); - auto objC = Node::create(); - { - Vector array1; - Vector array2; - - // push back objA 3 times - array1.pushBack(objA); // retain count is 2 - array1.pushBack(objA); // retain count is 3 - array1.pushBack(objA); // retain count is 4 - - array2.pushBack(objA); // retain count is 5 - array2.pushBack(objB); - array2.pushBack(objC); - - for (auto&& obj : array1) - { - array2.eraseObject(obj); - } - AXASSERT(objA->getReferenceCount() == 4, "objA's reference count is 4."); - } - AXASSERT(objA->getReferenceCount() == 1, "objA's reference count is 1."); - - { - Vector array1; - // push back objA 3 times - array1.pushBack(objA); // retain count is 2 - array1.pushBack(objA); // retain count is 3 - array1.pushBack(objA); // retain count is 4 - AXASSERT(objA->getReferenceCount() == 4, "objA's reference count is 4."); - array1.eraseObject(objA, true); // Remove all occurrences in the Vector. - AXASSERT(objA->getReferenceCount() == 1, "objA's reference count is 1."); - - array1.pushBack(objA); // retain count is 2 - array1.pushBack(objA); // retain count is 3 - array1.pushBack(objA); // retain count is 4 - - array1.eraseObject(objA, false); - AXASSERT(objA->getReferenceCount() == 3, - "objA's reference count is 3."); // Only remove the first occurrence in the Vector. - } - - // Check the retain count in vec7 - AXASSERT(vec7.size() == 20, "vec7's size is 20."); - for (const auto& child : vec7) - { - AX_UNUSED_PARAM(child); - AXASSERT(child->getReferenceCount() == 2, "child's reference count is 2."); - } - - // Sort - Vector vecForSort = createVector(); - std::sort(vecForSort.begin(), vecForSort.end(), [](Node* a, Node* b) { return a->getTag() >= b->getTag(); }); - - for (int i = 0; i < 20; ++i) - { - AXASSERT(vecForSort.at(i)->getTag() - 1000 == (19 - i), "vecForSort's element's tag is invalid."); - } - - // Reverse - vecForSort.reverse(); - for (int i = 0; i < 20; ++i) - { - AXASSERT(vecForSort.at(i)->getTag() - 1000 == i, "vecForSort's element's tag is invalid."); - } - - // Swap - Vector vecForSwap = createVector(); - vecForSwap.swap(2, 4); - AXASSERT(vecForSwap.at(2)->getTag() == 1004, "vecForSwap's 3nd element's tag is 1004."); - AXASSERT(vecForSwap.at(4)->getTag() == 1002, "vecForSwap's 5rd element's tag is 1002."); - vecForSwap.swap(vecForSwap.at(2), vecForSwap.at(4)); - AXASSERT(vecForSwap.at(2)->getTag() == 1002, "vecForSwap's 3rd element's tag is 1002."); - AXASSERT(vecForSwap.at(4)->getTag() == 1004, "vecForSwap's 5rd element's tag is 1004."); - - // shrinkToFit - Vector vecForShrink = createVector(); - vecForShrink.reserve(100); - AXASSERT(vecForShrink.capacity() == 100, "vecForShrink's capacity is 100."); - vecForShrink.pushBack(Node::create()); - vecForShrink.shrinkToFit(); - AXASSERT(vecForShrink.capacity() == 21, "vecForShrink's capacity is 21."); - - // get random object - // Set the seed by time - std::srand((unsigned)time(nullptr)); - Vector vecForRandom = createVector(); - ax::print("<--- begin ---->"); - for (int i = 0; i < vecForRandom.size(); ++i) - { - ax::print("Vector: random object tag = %d", vecForRandom.getRandomObject()->getTag()); - } - ax::print("<---- end ---->"); - - // Self assignment - Vector vecSelfAssign = createVector(); - vecSelfAssign = vecSelfAssign; - AXASSERT(vecSelfAssign.size() == 20, "vecSelfAssign's size is 20."); - - for (const auto& child : vecSelfAssign) - { - AX_UNUSED_PARAM(child); - AXASSERT(child->getReferenceCount() == 2, "child's reference count is 2."); - } - - vecSelfAssign = std::move(vecSelfAssign); - AXASSERT(vecSelfAssign.size() == 20, "vecSelfAssign's size is 20."); - - for (const auto& child : vecSelfAssign) - { - AX_UNUSED_PARAM(child); - AXASSERT(child->getReferenceCount() == 2, "child's reference count is 2."); - } - - // const at - Vector vecConstAt = createVector(); - constFunc(vecConstAt); -} - -void TemplateVectorTest::constFunc(const Vector& vec) const -{ - ax::print("vec[8] = %d", vec.at(8)->getTag()); -} - -std::string TemplateVectorTest::subtitle() const -{ - return "Vector, should not crash"; -} - -//--------------------------------------------------------------- - -void TemplateMapTest::onEnter() -{ - UnitTestDemo::onEnter(); - - auto createMap = []() { - StringMap ret; - for (int i = 0; i < 20; ++i) - { - auto node = Node::create(); - node->setTag(1000 + i); - ret.insert(StringUtils::toString(i), node); - } - - return ret; - }; - - // Default constructor - Map map1; - AXASSERT(map1.empty(), "map1 is empty."); - AXASSERT(map1.size() == 0, "map1's size is 0."); - AXASSERT(map1.keys().empty(), "map1's keys are empty."); - AXASSERT(map1.keys(Node::create()).empty(), "map1's keys don't contain a empty Node."); - - // Move constructor - auto map2 = createMap(); - for (const auto& e : map2) - { - AX_UNUSED_PARAM(e); - AXASSERT(e.second->getReferenceCount() == 2, "e.second element's reference count is 2."); - } - - // Copy constructor - auto map3(map2); - for (const auto& e : map3) - { - AX_UNUSED_PARAM(e); - AXASSERT(e.second->getReferenceCount() == 3, "e.second's reference count is 3."); - } - - // Move assignment operator - StringMap map4; - auto unusedNode = Node::create(); - map4.insert("unused", unusedNode); - map4 = createMap(); - AXASSERT(unusedNode->getReferenceCount() == 1, "unusedNode's reference count is 1."); - for (const auto& e : map4) - { - AX_UNUSED_PARAM(e); - AXASSERT(e.second->getReferenceCount() == 2, "e.second's reference count is 2."); - } - - // Copy assignment operator - StringMap map5; - map5 = map4; - for (const auto& e : map5) - { - AX_UNUSED_PARAM(e); - AXASSERT(e.second->getReferenceCount() == 3, "e.second's reference count is 3."); - } - - // Check size - AXASSERT(map4.size() == map5.size(), "map4's size is equal to map5.size."); - - for (const auto& e : map4) - { - AX_UNUSED_PARAM(e); - AXASSERT(e.second == map5.find(e.first)->second, "e.second can't be found in map5."); - } - - // bucket_count, bucket_size(n), bucket - ax::print("--------------"); - ax::print("bucket_count = %d", static_cast(map4.bucketCount())); - ax::print("size = %d", static_cast(map4.size())); - for (int i = 0; i < map4.bucketCount(); ++i) - { - ax::print("bucket_size(%d) = %d", i, static_cast(map4.bucketSize(i))); - } - for (const auto& e : map4) - { - ax::print("bucket(\"%s\"), bucket index = %d", e.first.c_str(), static_cast(map4.bucket(e.first))); - } - - ax::print("----- all keys---------"); - - // keys and at - auto keys = map4.keys(); - for (const auto& key : keys) - { - ax::print("key = %s", key.c_str()); - } - - auto node10Key = map4.at("10"); - map4.insert("100", node10Key); - map4.insert("101", node10Key); - map4.insert("102", node10Key); - - ax::print("------ keys for object --------"); - auto keysForObject = map4.keys(node10Key); - for (const auto& key : keysForObject) - { - ax::print("key = %s", key.c_str()); - } - ax::print("--------------"); - - // at in const function - constFunc(map4); - - // find - auto nodeToFind = map4.find("10"); - AX_UNUSED_PARAM(nodeToFind); - AXASSERT(nodeToFind->second->getTag() == 1010, "nodeToFind's tag value is 1010."); - - // insert - Map map6; - auto node1 = Node::create(); - node1->setTag(101); - auto node2 = Node::create(); - node2->setTag(102); - auto node3 = Node::create(); - node3->setTag(103); - map6.insert("insert01", node1); - map6.insert("insert02", node2); - map6.insert("insert03", node3); - - AXASSERT(node1->getReferenceCount() == 2, "node1's reference count is 2."); - AXASSERT(node2->getReferenceCount() == 2, "node2's reference count is 2."); - AXASSERT(node3->getReferenceCount() == 2, "node3's reference count is 2."); - AXASSERT(map6.at("insert01") == node1, "The element at insert01 is equal to node1."); - AXASSERT(map6.at("insert02") == node2, "The element at insert02 is equal to node2."); - AXASSERT(map6.at("insert03") == node3, "The element at insert03 is equal to node3."); - - // erase - StringMap mapForErase = createMap(); - mapForErase.erase(mapForErase.find("9")); - AXASSERT(mapForErase.find("9") == mapForErase.end(), "9 is already removed."); - AXASSERT(mapForErase.size() == 19, "mapForErase's size is 19."); - - mapForErase.erase("7"); - AXASSERT(mapForErase.find("7") == mapForErase.end(), "7 is already removed."); - AXASSERT(mapForErase.size() == 18, "mapForErase's size is 18."); - - std::vector itemsToRemove; - itemsToRemove.emplace_back("2"); - itemsToRemove.emplace_back("3"); - itemsToRemove.emplace_back("4"); - mapForErase.erase(itemsToRemove); - AXASSERT(mapForErase.size() == 15, "mapForErase's size is 15."); - - // clear - StringMap mapForClear = createMap(); - auto mapForClearCopy = mapForClear; - mapForClear.clear(); - - for (const auto& e : mapForClearCopy) - { - AX_UNUSED_PARAM(e); - AXASSERT(e.second->getReferenceCount() == 2, "e.second's reference count is 2."); - } - - // get random object - // Set the seed by time - std::srand((unsigned)time(nullptr)); - StringMap mapForRandom = createMap(); - ax::print("<--- begin ---->"); - for (int i = 0; i < mapForRandom.size(); ++i) - { - ax::print("Map: random object tag = %d", mapForRandom.getRandomObject()->getTag()); - } - ax::print("<---- end ---->"); - - // Self assignment - StringMap mapForSelfAssign = createMap(); - mapForSelfAssign = mapForSelfAssign; - AXASSERT(mapForSelfAssign.size() == 20, "mapForSelfAssign's size is 20."); - - for (const auto& e : mapForSelfAssign) - { - AX_UNUSED_PARAM(e); - AXASSERT(e.second->getReferenceCount() == 2, "e.second's reference count is 2."); - } - - mapForSelfAssign = std::move(mapForSelfAssign); - AXASSERT(mapForSelfAssign.size() == 20, "mapForSelfAssign's size is 20."); - - for (const auto& e : mapForSelfAssign) - { - AX_UNUSED_PARAM(e); - AXASSERT(e.second->getReferenceCount() == 2, "e.second's reference's count is 2."); - } -} - -void TemplateMapTest::constFunc(const StringMap& map) const -{ - ax::print("[%s]=(tag)%d", "0", map.at("0")->getTag()); - ax::print("[%s]=(tag)%d", "1", map.find("1")->second->getTag()); -} - -std::string TemplateMapTest::subtitle() const -{ - return "Map, should not crash"; -} - -//---------------------------------- - -void ValueTest::onEnter() -{ - UnitTestDemo::onEnter(); - - Value v1; - AXASSERT(v1.getType() == Value::Type::NONE, "v1's value type should be VALUE::Type::NONE."); - AXASSERT(v1.isNull(), "v1 is null."); - - Value v2(100); - AXASSERT(v2.getType() == Value::Type::INTEGER, "v2's value type should be VALUE::Type::INTEGER."); - AXASSERT(!v2.isNull(), "v2 is not null."); - - Value v3(101.4f); - AXASSERT(v3.getType() == Value::Type::FLOAT, "v3's value type should be VALUE::Type::FLOAT."); - AXASSERT(!v3.isNull(), "v3 is not null."); - - Value v4(106.1); - AXASSERT(v4.getType() == Value::Type::DOUBLE, "v4's value type should be VALUE::Type::DOUBLE."); - AXASSERT(!v4.isNull(), "v4 is not null."); - - unsigned char byte = 50; - Value v5(byte); - AXASSERT(v5.getType() == Value::Type::INT_UI32, "v5's value type should be Value::Type::INT_UI32."); - AXASSERT(!v5.isNull(), "v5 is not null."); - - Value v6(true); - AXASSERT(v6.getType() == Value::Type::BOOLEAN, "v6's value type is Value::Type::BOOLEAN."); - AXASSERT(!v6.isNull(), "v6 is not null."); - - Value v7("string"); - AXASSERT(v7.getType() == Value::Type::STRING, "v7's value type is Value::type::STRING."); - AXASSERT(!v7.isNull(), "v7 is not null."); - - Value v8(std::string("string2")); - AXASSERT(v8.getType() == Value::Type::STRING, "v8's value type is Value::Type::STRING."); - AXASSERT(!v8.isNull(), "v8 is not null."); - - auto createValueVector = [&]() { - ValueVector ret; - ret.emplace_back(v1); - ret.emplace_back(v2); - ret.emplace_back(v3); - return ret; - }; - - Value v9(createValueVector()); - AXASSERT(v9.getType() == Value::Type::VECTOR, "v9's value type is Value::Type::VECTOR."); - AXASSERT(!v9.isNull(), "v9 is not null."); - - auto createValueMap = [&]() { - ValueMap ret; - ret["aaa"] = v1; - ret["bbb"] = v2; - ret["ccc"] = v3; - return ret; - }; - - Value v10(createValueMap()); - AXASSERT(v10.getType() == Value::Type::MAP, "v10's value type is Value::Type::MAP."); - AXASSERT(!v10.isNull(), "v10 is not null."); - - auto createValueMapIntKey = [&]() { - ValueMapIntKey ret; - ret[111] = v1; - ret[222] = v2; - ret[333] = v3; - return ret; - }; - - Value v11(createValueMapIntKey()); - AXASSERT(v11.getType() == Value::Type::INT_KEY_MAP, "v11's value type is Value::Type::INT_KEY_MAP."); - AXASSERT(!v11.isNull(), "v11 is not null."); -} - -std::string ValueTest::subtitle() const -{ - return "Value Test, should not crash"; -} - -void ValueTest::constFunc(const Value& /*value*/) const {} - -// UTFConversionTest - -// FIXME: made as define to prevent compile warnings in release mode. Better is to be a `const static int` -#define TEST_CODE_NUM 11 - -static const char16_t __utf16Code[] = { - 0x3042, 0x3044, 0x3046, 0x3048, 0x304A, 0x3042, 0x3044, 0x3046, 0x3048, 0x304A, 0x0041, 0x0000, -}; - -// to avoid Xcode error, char => unsigned char -// If you use this table, please cast manually as (const char *). -static const unsigned char __utf8Code[] = { - 0xE3, 0x81, 0x82, 0xE3, 0x81, 0x84, 0xE3, 0x81, 0x86, 0xE3, 0x81, 0x88, 0xE3, 0x81, 0x8A, 0xE3, - 0x81, 0x82, 0xE3, 0x81, 0x84, 0xE3, 0x81, 0x86, 0xE3, 0x81, 0x88, 0xE3, 0x81, 0x8A, 0x41, 0x00, -}; - -static const char16_t WHITE_SPACE_CODE[] = {0x0009, 0x000A, 0x000B, 0x000C, 0x000D, 0x0020, 0x0085, 0x00A0, 0x1680, - 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006, 0x2007, 0x2008, - 0x2009, 0x200A, 0x2028, 0x2029, 0x202F, 0x205F, 0x3000}; - -static void doUTFConversion() -{ - bool isSuccess = false; - - std::string originalUTF8 = (const char*)__utf8Code; - std::u16string originalUTF16 = __utf16Code; - - //--------------------------- - std::string utf8Str; - isSuccess = StringUtils::UTF16ToUTF8(originalUTF16, utf8Str); - - if (isSuccess) - { - isSuccess = memcmp(utf8Str.data(), originalUTF8.data(), originalUTF8.length() + 1) == 0; - } - - AXASSERT(isSuccess, "StringUtils::UTF16ToUTF8 failed"); - - //--------------------------- - std::u16string utf16Str; - isSuccess = StringUtils::UTF8ToUTF16(originalUTF8, utf16Str); - - if (isSuccess) - { - isSuccess = memcmp(utf16Str.data(), originalUTF16.data(), originalUTF16.length() + 1) == 0; - } - - AXASSERT(isSuccess && (utf16Str.length() == TEST_CODE_NUM), "StringUtils::UTF8ToUTF16 failed"); - - //--------------------------- - auto vec1 = StringUtils::getChar16VectorFromUTF16String(originalUTF16); - - AXASSERT(vec1.size() == originalUTF16.length(), "StringUtils::getChar16VectorFromUTF16String failed"); - - //--------------------------- - std::vector vec2(vec1); - vec2.emplace_back(0x2009); - vec2.emplace_back(0x2009); - vec2.emplace_back(0x2009); - vec2.emplace_back(0x2009); - - std::vector vec3(vec2); - StringUtils::trimUTF16Vector(vec2); - - AXASSERT(vec1.size() == vec2.size(), "StringUtils::trimUTF16Vector failed"); - - for (size_t i = 0; i < vec2.size(); i++) - { - AXASSERT(vec1.at(i) == vec2.at(i), "StringUtils::trimUTF16Vector failed"); - } - - //--------------------------- - AXASSERT(StringUtils::getCharacterCountInUTF8String(originalUTF8) == TEST_CODE_NUM, - "StringUtils::getCharacterCountInUTF8String failed"); - - //--------------------------- - AXASSERT(StringUtils::getIndexOfLastNotChar16(vec3, 0x2009) == (vec1.size() - 1), - "StringUtils::getIndexOfLastNotChar16 failed"); - - //--------------------------- - AXASSERT(originalUTF16.length() == TEST_CODE_NUM, - "The length of the original utf16 string isn't equal to TEST_CODE_NUM"); - - //--------------------------- - size_t whiteCodeNum = sizeof(WHITE_SPACE_CODE) / sizeof(WHITE_SPACE_CODE[0]); - for (size_t i = 0; i < whiteCodeNum; i++) - { - AXASSERT(StringUtils::isUnicodeSpace(WHITE_SPACE_CODE[i]), "StringUtils::isUnicodeSpace failed"); - } - - AXASSERT(!StringUtils::isUnicodeSpace(0xFFFF), "StringUtils::isUnicodeSpace failed"); - - AXASSERT(!StringUtils::isCJKUnicode(0xFFFF) && StringUtils::isCJKUnicode(0x3100), - "StringUtils::isCJKUnicode failed"); -} - -void UTFConversionTest::onEnter() -{ - UnitTestDemo::onEnter(); - - for (int i = 0; i < 10000; ++i) - { - doUTFConversion(); - } -} - -std::string UTFConversionTest::subtitle() const -{ - return "UTF8 <-> UTF16 Conversion Test, no crash"; -} - -// UIHelperSubStringTest - -void UIHelperSubStringTest::onEnter() -{ - UnitTestDemo::onEnter(); - - using ax::ui::Helper; - { - // Trivial case - std::string source = "abcdefghij"; - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 2) == "ab"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 2, 2) == "cd"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 4, 2) == "ef"); - } - { - // Empty string - std::string source = ""; - - // OK - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 1) == ""); - - // Error: These cases cause "out of range" error - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 1) == ""); - } - { - // Ascii - std::string source = "abc"; - - // OK - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 2, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 3, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 3) == "abc"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 4) == "abc"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 2) == "bc"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 3) == "bc"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 2, 1) == "c"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 2, 2) == "c"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 3, 1) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 3, 2) == ""); - - // Error: These cases cause "out of range" error - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 4, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 4, 1) == ""); - } - { - // CJK characters - std::string source = "这里是中文测试例"; - - // OK - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 7, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 8, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 8, 1) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 1) == "\xe8\xbf\x99"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 4) == "\xe8\xbf\x99\xe9\x87\x8c\xe6\x98\xaf\xe4\xb8\xad"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 8) == - "\xe8\xbf\x99\xe9\x87\x8c\xe6\x98\xaf\xe4\xb8\xad\xe6\x96\x87\xe6\xb5\x8b\xe8\xaf\x95\xe4\xbe\x8b"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 100) == - "\xe8\xbf\x99\xe9\x87\x8c\xe6\x98\xaf\xe4\xb8\xad\xe6\x96\x87\xe6\xb5\x8b\xe8\xaf\x95\xe4\xbe\x8b"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 2, 5) == - "\xe6\x98\xaf\xe4\xb8\xad\xe6\x96\x87\xe6\xb5\x8b\xe8\xaf\x95"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 6, 2) == "\xe8\xaf\x95\xe4\xbe\x8b"); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 6, 100) == "\xe8\xaf\x95\xe4\xbe\x8b"); - - // Error: These cases cause "out of range" error - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 9, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 9, 1) == ""); - } - { - // Redundant UTF-8 sequence for Directory traversal attack (1) - std::string source = "\xC0\xAF"; - - // Error: Can't convert string to correct encoding such as UTF-32 - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 1) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 1) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 2) == ""); - } - { - // Redundant UTF-8 sequence for Directory traversal attack (2) - std::string source = "\xE0\x80\xAF"; - - // Error: Can't convert string to correct encoding such as UTF-32 - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 1) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 1) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 3) == ""); - } - { - // Redundant UTF-8 sequence for Directory traversal attack (3) - std::string source = "\xF0\x80\x80\xAF"; - - // Error: Can't convert string to correct encoding such as UTF-32 - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 1) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 1, 1) == ""); - AX_ASSERT(Helper::getSubStringOfUTF8String(source, 0, 4) == ""); - } -} - -std::string UIHelperSubStringTest::subtitle() const -{ - return "ui::Helper::getSubStringOfUTF8String Test"; -} - -// ParseIntegerListTest -void ParseIntegerListTest::onEnter() -{ - UnitTestDemo::onEnter(); - - { - using ax::utils::parseIntegerList; - - std::vector res1{}; - EXPECT_EQ(res1, parseIntegerList("")); - - std::vector res2{1}; - EXPECT_EQ(res2, parseIntegerList("1")); - - std::vector res3{1, 2}; - EXPECT_EQ(res3, parseIntegerList("1 2")); - - std::vector res4{2, 4, 3, 1, 4, 2, 0, 4, 1, 0, 4, 5}; - EXPECT_EQ(res4, parseIntegerList("2 4 3 1 4 2 0 4 1 0 4 5")); - - std::vector res5{73, 48, 57, 117, 27, 117, 29, 77, 14, 62, 26, 7, 55, 2}; - EXPECT_EQ(res5, parseIntegerList("73 48 57 117 27 117 29 77 14 62 26 7 55 2")); - } -} - -std::string ParseIntegerListTest::subtitle() const -{ - return "utils::parseIntegerList Test"; -} - -// ParseUriTest -void ParseUriTest::onEnter() -{ - UnitTestDemo::onEnter(); - - { - std::string s("http://www.facebook.com/hello/world?query#fragment"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("www.facebook.com", u.getHost()); - EXPECT_EQ(80, u.getPort()); - EXPECT_EQ("www.facebook.com", u.getAuthority()); - EXPECT_EQ("/hello/world", u.getPath()); - EXPECT_EQ("query", u.getQuery()); - EXPECT_EQ("fragment", u.getFragment()); - EXPECT_EQ(s, u.toString()); // canonical - } - - { - std::string s("http://www.facebook.com:8080/hello/world?query#fragment"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("www.facebook.com", u.getHost()); - EXPECT_EQ(8080, u.getPort()); - EXPECT_EQ("www.facebook.com:8080", u.getAuthority()); - EXPECT_EQ("/hello/world", u.getPath()); - EXPECT_EQ("query", u.getQuery()); - EXPECT_EQ("fragment", u.getFragment()); - EXPECT_EQ(s, u.toString()); // canonical - } - - { - std::string s("http://127.0.0.1:8080/hello/world?query#fragment"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("127.0.0.1", u.getHost()); - EXPECT_EQ(8080, u.getPort()); - EXPECT_EQ("127.0.0.1:8080", u.getAuthority()); - EXPECT_EQ("/hello/world", u.getPath()); - EXPECT_EQ("query", u.getQuery()); - EXPECT_EQ("fragment", u.getFragment()); - EXPECT_EQ(s, u.toString()); // canonical - } - - { - std::string s("http://[::1]:8080/hello/world?query#fragment"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("[::1]", u.getHost()); - EXPECT_EQ("::1", u.getHostName()); - EXPECT_EQ(8080, u.getPort()); - EXPECT_EQ("[::1]:8080", u.getAuthority()); - EXPECT_EQ("/hello/world", u.getPath()); - EXPECT_EQ("query", u.getQuery()); - EXPECT_EQ("fragment", u.getFragment()); - EXPECT_EQ(s, u.toString()); // canonical - } - - { - std::string s("http://[2401:db00:20:7004:face:0:29:0]:8080/hello/world?query"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("[2401:db00:20:7004:face:0:29:0]", u.getHost()); - EXPECT_EQ("2401:db00:20:7004:face:0:29:0", u.getHostName()); - EXPECT_EQ(8080, u.getPort()); - EXPECT_EQ("[2401:db00:20:7004:face:0:29:0]:8080", u.getAuthority()); - EXPECT_EQ("/hello/world", u.getPath()); - EXPECT_EQ("query", u.getQuery()); - EXPECT_EQ("", u.getFragment()); - EXPECT_EQ(s, u.toString()); // canonical - } - - { - std::string s("http://[2401:db00:20:7004:face:0:29:0]/hello/world?query"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("[2401:db00:20:7004:face:0:29:0]", u.getHost()); - EXPECT_EQ("2401:db00:20:7004:face:0:29:0", u.getHostName()); - EXPECT_EQ(80, u.getPort()); - EXPECT_EQ("[2401:db00:20:7004:face:0:29:0]", u.getAuthority()); - EXPECT_EQ("/hello/world", u.getPath()); - EXPECT_EQ("query", u.getQuery()); - EXPECT_EQ("", u.getFragment()); - EXPECT_EQ(s, u.toString()); // canonical - } - - { - std::string s("http://user:pass@host.com/"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("user", u.getUserName()); - EXPECT_EQ("pass", u.getPassword()); - EXPECT_EQ("host.com", u.getHost()); - EXPECT_EQ(80, u.getPort()); - EXPECT_EQ("user:pass@host.com", u.getAuthority()); - EXPECT_EQ("/", u.getPath()); - EXPECT_EQ("", u.getQuery()); - EXPECT_EQ("", u.getFragment()); - EXPECT_EQ(s, u.toString()); - } - - { - std::string s("http://user@host.com/"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("user", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("host.com", u.getHost()); - EXPECT_EQ(80, u.getPort()); - EXPECT_EQ("user@host.com", u.getAuthority()); - EXPECT_EQ("/", u.getPath()); - EXPECT_EQ("", u.getQuery()); - EXPECT_EQ("", u.getFragment()); - EXPECT_EQ(s, u.toString()); - } - - { - std::string s("http://user:@host.com/"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("user", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("host.com", u.getHost()); - EXPECT_EQ(80, u.getPort()); - EXPECT_EQ("user@host.com", u.getAuthority()); - EXPECT_EQ("/", u.getPath()); - EXPECT_EQ("", u.getQuery()); - EXPECT_EQ("", u.getFragment()); - EXPECT_EQ("http://user@host.com/", u.toString()); - } - - { - std::string s("http://:pass@host.com/"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("", u.getUserName()); - EXPECT_EQ("pass", u.getPassword()); - EXPECT_EQ("host.com", u.getHost()); - EXPECT_EQ(80, u.getPort()); - EXPECT_EQ(":pass@host.com", u.getAuthority()); - EXPECT_EQ("/", u.getPath()); - EXPECT_EQ("", u.getQuery()); - EXPECT_EQ("", u.getFragment()); - EXPECT_EQ(s, u.toString()); - } - - { - std::string s("http://@host.com/"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("host.com", u.getHost()); - EXPECT_EQ(80, u.getPort()); - EXPECT_EQ("host.com", u.getAuthority()); - EXPECT_EQ("/", u.getPath()); - EXPECT_EQ("", u.getQuery()); - EXPECT_EQ("", u.getFragment()); - EXPECT_EQ("http://host.com/", u.toString()); - } - - { - std::string s("http://:@host.com/"); - Uri u = Uri::parse(s); - EXPECT_EQ("http", u.getScheme()); - EXPECT_EQ("", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("host.com", u.getHost()); - EXPECT_EQ(80, u.getPort()); - EXPECT_EQ("host.com", u.getAuthority()); - EXPECT_EQ("/", u.getPath()); - EXPECT_EQ("", u.getQuery()); - EXPECT_EQ("", u.getFragment()); - EXPECT_EQ("http://host.com/", u.toString()); - } - - { - std::string s("file:///etc/motd"); - Uri u = Uri::parse(s); - EXPECT_EQ("file", u.getScheme()); - EXPECT_EQ("", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("", u.getHost()); - EXPECT_EQ(0, u.getPort()); - EXPECT_EQ("", u.getAuthority()); - EXPECT_EQ("/etc/motd", u.getPath()); - EXPECT_EQ("", u.getQuery()); - EXPECT_EQ("", u.getFragment()); - EXPECT_EQ(s, u.toString()); - } - - { - std::string s("file://etc/motd"); - Uri u = Uri::parse(s); - EXPECT_EQ("file", u.getScheme()); - EXPECT_EQ("", u.getUserName()); - EXPECT_EQ("", u.getPassword()); - EXPECT_EQ("etc", u.getHost()); - EXPECT_EQ(0, u.getPort()); - EXPECT_EQ("etc", u.getAuthority()); - EXPECT_EQ("/motd", u.getPath()); - EXPECT_EQ("", u.getQuery()); - EXPECT_EQ("", u.getFragment()); - EXPECT_EQ(s, u.toString()); - } - - { - // test query parameters - std::string s("http://localhost?&key1=foo&key2=&key3&=bar&=bar=&"); - Uri u = Uri::parse(s); - auto paramsList = u.getQueryParams(); - std::map params; - for (auto&¶m : paramsList) - { - params[param.first] = param.second; - } - EXPECT_EQ(3, params.size()); - EXPECT_EQ("foo", params["key1"]); - EXPECT_NE(params.end(), params.find("key2")); - EXPECT_EQ("", params["key2"]); - EXPECT_NE(params.end(), params.find("key3")); - EXPECT_EQ("", params["key3"]); - } - - { - // test query parameters - std::string s("http://localhost?&&&&&&&&&&&&&&&"); - Uri u = Uri::parse(s); - auto params = u.getQueryParams(); - EXPECT_TRUE(params.empty()); - } - - { - // test query parameters - std::string s("http://localhost?&=invalid_key&key2&key3=foo"); - Uri u = Uri::parse(s); - auto paramsList = u.getQueryParams(); - std::map params; - for (auto&¶m : paramsList) - { - params[param.first] = param.second; - } - EXPECT_EQ(2, params.size()); - EXPECT_NE(params.end(), params.find("key2")); - EXPECT_EQ("", params["key2"]); - EXPECT_EQ("foo", params["key3"]); - } - - { - // test query parameters - std::string s("http://localhost?&key1=====&&=key2&key3="); - Uri u = Uri::parse(s); - auto paramsList = u.getQueryParams(); - std::map params; - for (auto&¶m : paramsList) - { - params[param.first] = param.second; - } - EXPECT_EQ(1, params.size()); - EXPECT_NE(params.end(), params.find("key3")); - EXPECT_EQ("", params["key3"]); - } - - { - // test query parameters - std::string s("ws://localhost:90?key1=foo=bar&key2=foobar&"); - Uri u = Uri::parse(s); - auto paramsList = u.getQueryParams(); - std::map params; - for (auto&& param : paramsList) - { - params[param.first] = param.second; - } - EXPECT_EQ(1, params.size()); - EXPECT_EQ("foobar", params["key2"]); - - // copy constructor - { - Uri v(u); - u = v = u; - EXPECT_TRUE(v.isValid()); - EXPECT_EQ("ws", v.getScheme()); - EXPECT_EQ("localhost", v.getHost()); - EXPECT_EQ("localhost", v.getHostName()); - EXPECT_EQ("/", v.getPath()); - EXPECT_EQ(90, v.getPort()); - EXPECT_EQ("", v.getFragment()); - EXPECT_EQ("key1=foo=bar&key2=foobar&", v.getQuery()); - EXPECT_EQ(u, v); - } - - // copy assign operator - { - Uri v; - v = u; - EXPECT_TRUE(v.isValid()); - EXPECT_EQ("ws", v.getScheme()); - EXPECT_EQ("localhost", v.getHost()); - EXPECT_EQ("localhost", v.getHostName()); - EXPECT_EQ("/", v.getPath()); - EXPECT_EQ(90, v.getPort()); - EXPECT_EQ("", v.getFragment()); - EXPECT_EQ("key1=foo=bar&key2=foobar&", v.getQuery()); - EXPECT_EQ(u, v); - } - - // Self move assignment - { - u = u; - EXPECT_TRUE(u.isValid()); - } - - // Self move assignment - { - u = std::move(u); - EXPECT_TRUE(u.isValid()); - } - - // move constructor - { - Uri v = std::move(u); - EXPECT_FALSE(u.isValid()); - EXPECT_TRUE(v.isValid()); - EXPECT_EQ("ws", v.getScheme()); - EXPECT_EQ("localhost", v.getHost()); - EXPECT_EQ("localhost", v.getHostName()); - EXPECT_EQ("/", v.getPath()); - EXPECT_EQ(90, v.getPort()); - EXPECT_EQ("", v.getFragment()); - EXPECT_EQ("key1=foo=bar&key2=foobar&", v.getQuery()); - u = std::move(v); - } - - // copy assign operator - { - Uri v; - v = std::move(u); - EXPECT_FALSE(u.isValid()); - EXPECT_TRUE(v.isValid()); - EXPECT_EQ("ws", v.getScheme()); - EXPECT_EQ("localhost", v.getHost()); - EXPECT_EQ("localhost", v.getHostName()); - EXPECT_EQ("/", v.getPath()); - EXPECT_EQ(90, v.getPort()); - EXPECT_EQ("", v.getFragment()); - EXPECT_EQ("key1=foo=bar&key2=foobar&", v.getQuery()); - u = v; - } - } - - { - std::string s("2http://www.facebook.com"); - - Uri u = Uri::parse(s); - EXPECT_FALSE(u.isValid()); - } - - { - std::string s("www[facebook]com"); - - Uri u = Uri::parse("http://" + s); - EXPECT_FALSE(u.isValid()); - } - - { - std::string s("http://[::1:8080/hello/world?query#fragment"); - Uri u = Uri::parse(s); - EXPECT_FALSE(u.isValid()); - } - - { - std::string s("http://::1]:8080/hello/world?query#fragment"); - - Uri u = Uri::parse(s); - EXPECT_FALSE(u.isValid()); - } - - { - std::string s("http://::1:8080/hello/world?query#fragment"); - Uri u = Uri::parse(s); - EXPECT_FALSE(u.isValid()); - } - - { - std::string s("http://2401:db00:20:7004:face:0:29:0/hello/world?query"); - Uri u = Uri::parse(s); - EXPECT_FALSE(u.isValid()); - } - - { - Uri http = Uri::parse("http://google.com"); - Uri https = Uri::parse("https://www.google.com:90"); - Uri query = Uri::parse("http://google.com:8080/foo/bar?foo=bar"); - Uri localhost = Uri::parse("http://localhost:8080"); - Uri ipv6 = Uri::parse("https://[2001:0db8:85a3:0042:1000:8a2e:0370:7334]"); - Uri ipv6short = Uri::parse("http://[2001:db8:85a3:42:1000:8a2e:370:7334]"); - Uri ipv6port = Uri::parse("http://[2001:db8:85a3:42:1000:8a2e:370:7334]:90"); - Uri ipv6abbrev = Uri::parse("http://[2001::7334:a:90]"); - Uri ipv6http = Uri::parse("http://[2001::7334:a]:90"); - Uri ipv6query = Uri::parse("http://[2001::7334:a]:90/foo/bar?foo=bar"); - - EXPECT_EQ(http.getScheme(), "http"); - EXPECT_EQ(http.getPort(), 80); - EXPECT_EQ(http.getHost(), "google.com"); - EXPECT_EQ(https.getScheme(), "https"); - EXPECT_EQ(https.getPort(), 90); - EXPECT_EQ(https.getHost(), "www.google.com"); - EXPECT_EQ(query.getPort(), 8080); - EXPECT_EQ(query.getPathEtc(), "/foo/bar?foo=bar"); - EXPECT_EQ(localhost.getScheme(), "http"); - EXPECT_EQ(localhost.getHost(), "localhost"); - EXPECT_EQ(localhost.getPort(), 8080); - EXPECT_EQ(ipv6.getScheme(), "https"); - EXPECT_EQ(ipv6.getHostName(), "2001:0db8:85a3:0042:1000:8a2e:0370:7334"); - EXPECT_EQ(ipv6.getPort(), 443); - EXPECT_EQ(ipv6short.getScheme(), "http"); - EXPECT_EQ(ipv6short.getHostName(), "2001:db8:85a3:42:1000:8a2e:370:7334"); - EXPECT_EQ(ipv6short.getPort(), 80); - EXPECT_EQ(ipv6port.getScheme(), "http"); - EXPECT_EQ(ipv6port.getHostName(), "2001:db8:85a3:42:1000:8a2e:370:7334"); - EXPECT_EQ(ipv6port.getPort(), 90); - EXPECT_EQ(ipv6abbrev.getScheme(), "http"); - EXPECT_EQ(ipv6abbrev.getHostName(), "2001::7334:a:90"); - EXPECT_EQ(ipv6abbrev.getPort(), 80); - EXPECT_EQ(ipv6http.getScheme(), "http"); - EXPECT_EQ(ipv6http.getPort(), 90); - EXPECT_EQ(ipv6http.getHostName(), "2001::7334:a"); - EXPECT_EQ(ipv6query.getScheme(), "http"); - EXPECT_EQ(ipv6query.getPort(), 90); - EXPECT_EQ(ipv6query.getHostName(), "2001::7334:a"); - EXPECT_EQ(ipv6query.getPathEtc(), "/foo/bar?foo=bar"); - } - - { - Uri u0 = Uri::parse("http://localhost:84/foo.html?&q=123"); - Uri u1 = Uri::parse("https://localhost:82/foo.html?&q=1"); - Uri u2 = Uri::parse("ws://localhost/foo"); - Uri u3 = Uri::parse("localhost/foo"); - Uri u4 = Uri::parse("localhost:8080"); - Uri u5 = Uri::parse("bb://localhost?&foo=12:4&ccc=13"); - Uri u6 = Uri::parse("cc://localhost:91?&foo=321&bbb=1"); - - EXPECT_EQ(u0.getScheme(), "http"); - EXPECT_EQ(u0.getHost(), "localhost"); - EXPECT_EQ(u0.getPort(), 84); - EXPECT_EQ(u0.getPath(), "/foo.html"); - EXPECT_EQ(u0.getPathEtc(), "/foo.html?&q=123"); - - EXPECT_EQ(u1.getScheme(), "https"); - EXPECT_EQ(u1.getHost(), "localhost"); - EXPECT_EQ(u1.getPort(), 82); - EXPECT_EQ(u1.getPathEtc(), "/foo.html?&q=1"); - - EXPECT_EQ(u2.getScheme(), "ws"); - EXPECT_EQ(u2.getHost(), "localhost"); - EXPECT_EQ(u2.getPort(), 80); - EXPECT_EQ(u2.getPath(), "/foo"); - - EXPECT_EQ(u3.getScheme(), ""); - EXPECT_EQ(u3.getHost(), "localhost"); - EXPECT_EQ(u3.getPort(), 0); - EXPECT_EQ(u3.getPath(), "/foo"); - - EXPECT_EQ(u4.getScheme(), ""); - EXPECT_EQ(u4.getHost(), "localhost"); - EXPECT_EQ(u4.getPort(), 8080); - EXPECT_EQ(u4.getPath(), "/"); - EXPECT_EQ(u4.getPathEtc(), "/"); - - EXPECT_EQ(u5.getScheme(), "bb"); - EXPECT_EQ(u5.getHost(), "localhost"); - EXPECT_EQ(u5.getPort(), 0); - EXPECT_EQ(u5.getPath(), "/"); - EXPECT_EQ(u5.getPathEtc(), "/?&foo=12:4&ccc=13"); - EXPECT_EQ(u5.getQuery(), "&foo=12:4&ccc=13"); - - EXPECT_EQ(u6.getScheme(), "cc"); - EXPECT_EQ(u6.getHost(), "localhost"); - EXPECT_EQ(u6.getPort(), 91); - EXPECT_EQ(u6.getPath(), "/"); - EXPECT_EQ(u6.getPathEtc(), "/?&foo=321&bbb=1"); - EXPECT_EQ(u6.getQuery(), "&foo=321&bbb=1"); - } -} - -std::string ParseUriTest::subtitle() const -{ - return "Uri::parse Test"; -} - -// MathUtilTest - -namespace UnitTest -{ - -#ifdef INCLUDE_NEON32 -# include "math/MathUtilNeon.inl" -#endif - -#ifdef INCLUDE_NEON64 -# include "math/MathUtilNeon64.inl" -#endif - -#ifdef INCLUDE_SSE -// FIXME: #include "math/MathUtilSSE.inl" -#endif - -#include "math/MathUtil.inl" - -} // namespace UnitTest - -// I know the next line looks ugly, but it's a way to test MathUtil. :) -using namespace UnitTest::ax; - -static void __checkMathUtilResult(const char* description, const float* a1, const float* a2, int size) -{ - ax::print("-------------checking %s ----------------------------", description); - // Check whether the result of the optimized instruction is the same as which is implemented in C - for (int i = 0; i < size; ++i) - { - bool r = fabs(a1[i] - a2[i]) < 0.00001f; // FLT_EPSILON; - if (r) - { - ax::print("Correct: a1[%d]=%f, a2[%d]=%f", i, a1[i], i, a2[i]); - } - else - { - ax::print("Wrong: a1[%d]=%f, a2[%d]=%f", i, a1[i], i, a2[i]); - } - AXASSERT(r, "The optimized instruction is implemented in a wrong way, please check it!"); - } -} - -void MathUtilTest::onEnter() -{ - UnitTestDemo::onEnter(); - - const int MAT4_SIZE = 16; - const int VEC4_SIZE = 4; - - const float inMat41[MAT4_SIZE] = { - 0.234023f, 2.472349f, 1.984244f, 2.23348f, 0.634124f, 0.234975f, 6.384572f, 0.82368f, - 0.738028f, 1.845237f, 1.934721f, 1.62343f, 0.339023f, 3.472452f, 1.324714f, 4.23852f, - }; - - const float inMat42[MAT4_SIZE] = { - 1.640232f, 4.472349f, 0.983244f, 1.23343f, 2.834124f, 8.234975f, 0.082572f, 3.82464f, - 3.238028f, 2.845237f, 0.331721f, 4.62544f, 4.539023f, 9.472452f, 3.520714f, 2.23252f, - }; - - const float scalar = 1.323298f; - const float x = 0.432234f; - const float y = 1.333229f; - const float z = 2.535292f; - const float w = 4.632234f; - - const float inVec4[VEC4_SIZE] = {2.323478f, 0.238482f, 4.223783f, 7.238238f}; - const float inVec42[VEC4_SIZE] = {0.322374f, 8.258883f, 3.293683f, 2.838337f}; - - float outMat4Opt[MAT4_SIZE] = {0}; - float outMat4C[MAT4_SIZE] = {0}; - float outVec4Opt[VEC4_SIZE] = {0}; - float outVec4C[VEC4_SIZE] = {0}; - - // inline static void addMatrix(const float* m, float scalar, float* dst); - MathUtilC::addMatrix(inMat41, scalar, outMat4C); - -#ifdef INCLUDE_NEON32 - MathUtilNeon::addMatrix(inMat41, scalar, outMat4Opt); -#endif - -#ifdef INCLUDE_NEON64 - MathUtilNeon64::addMatrix(inMat41, scalar, outMat4Opt); -#endif - -#ifdef INCLUDE_SSE -// FIXME: -#endif - - __checkMathUtilResult("inline static void addMatrix(const float* m, float scalar, float* dst);", outMat4C, - outMat4Opt, MAT4_SIZE); - // Clean - memset(outMat4C, 0, sizeof(outMat4C)); - memset(outMat4Opt, 0, sizeof(outMat4Opt)); - - // inline static void addMatrix(const float* m1, const float* m2, float* dst); - MathUtilC::addMatrix(inMat41, inMat42, outMat4C); - -#ifdef INCLUDE_NEON32 - MathUtilNeon::addMatrix(inMat41, inMat42, outMat4Opt); -#endif - -#ifdef INCLUDE_NEON64 - MathUtilNeon64::addMatrix(inMat41, inMat42, outMat4Opt); -#endif - -#ifdef INCLUDE_SSE - // FIXME: -#endif - - __checkMathUtilResult("inline static void addMatrix(const float* m1, const float* m2, float* dst);", outMat4C, - outMat4Opt, MAT4_SIZE); - // Clean - memset(outMat4C, 0, sizeof(outMat4C)); - memset(outMat4Opt, 0, sizeof(outMat4Opt)); - - // inline static void subtractMatrix(const float* m1, const float* m2, float* dst); - MathUtilC::subtractMatrix(inMat41, inMat42, outMat4C); - -#ifdef INCLUDE_NEON32 - MathUtilNeon::subtractMatrix(inMat41, inMat42, outMat4Opt); -#endif - -#ifdef INCLUDE_NEON64 - MathUtilNeon64::subtractMatrix(inMat41, inMat42, outMat4Opt); -#endif - -#ifdef INCLUDE_SSE - // FIXME: -#endif - - __checkMathUtilResult("inline static void subtractMatrix(const float* m1, const float* m2, float* dst);", outMat4C, - outMat4Opt, MAT4_SIZE); - // Clean - memset(outMat4C, 0, sizeof(outMat4C)); - memset(outMat4Opt, 0, sizeof(outMat4Opt)); - - // inline static void multiplyMatrix(const float* m, float scalar, float* dst); - MathUtilC::multiplyMatrix(inMat41, scalar, outMat4C); - -#ifdef INCLUDE_NEON32 - MathUtilNeon::multiplyMatrix(inMat41, scalar, outMat4Opt); -#endif - -#ifdef INCLUDE_NEON64 - MathUtilNeon64::multiplyMatrix(inMat41, scalar, outMat4Opt); -#endif - -#ifdef INCLUDE_SSE - // FIXME: -#endif - - __checkMathUtilResult("inline static void multiplyMatrix(const float* m, float scalar, float* dst);", outMat4C, - outMat4Opt, MAT4_SIZE); - // Clean - memset(outMat4C, 0, sizeof(outMat4C)); - memset(outMat4Opt, 0, sizeof(outMat4Opt)); - - // inline static void multiplyMatrix(const float* m1, const float* m2, float* dst); - MathUtilC::multiplyMatrix(inMat41, inMat42, outMat4C); - -#ifdef INCLUDE_NEON32 - MathUtilNeon::multiplyMatrix(inMat41, inMat42, outMat4Opt); -#endif - -#ifdef INCLUDE_NEON64 - MathUtilNeon64::multiplyMatrix(inMat41, inMat42, outMat4Opt); -#endif - -#ifdef INCLUDE_SSE - // FIXME: -#endif - - __checkMathUtilResult("inline static void multiplyMatrix(const float* m1, const float* m2, float* dst);", outMat4C, - outMat4Opt, MAT4_SIZE); - // Clean - memset(outMat4C, 0, sizeof(outMat4C)); - memset(outMat4Opt, 0, sizeof(outMat4Opt)); - - // inline static void negateMatrix(const float* m, float* dst); - MathUtilC::negateMatrix(inMat41, outMat4C); - -#ifdef INCLUDE_NEON32 - MathUtilNeon::negateMatrix(inMat41, outMat4Opt); -#endif - -#ifdef INCLUDE_NEON64 - MathUtilNeon64::negateMatrix(inMat41, outMat4Opt); -#endif - -#ifdef INCLUDE_SSE - // FIXME: -#endif - - __checkMathUtilResult("inline static void negateMatrix(const float* m, float* dst);", outMat4C, outMat4Opt, - MAT4_SIZE); - // Clean - memset(outMat4C, 0, sizeof(outMat4C)); - memset(outMat4Opt, 0, sizeof(outMat4Opt)); - - // inline static void transposeMatrix(const float* m, float* dst); - MathUtilC::transposeMatrix(inMat41, outMat4C); - -#ifdef INCLUDE_NEON32 - MathUtilNeon::transposeMatrix(inMat41, outMat4Opt); -#endif - -#ifdef INCLUDE_NEON64 - MathUtilNeon64::transposeMatrix(inMat41, outMat4Opt); -#endif - -#ifdef INCLUDE_SSE - // FIXME: -#endif - - __checkMathUtilResult("inline static void transposeMatrix(const float* m, float* dst);", outMat4C, outMat4Opt, - MAT4_SIZE); - // Clean - memset(outMat4C, 0, sizeof(outMat4C)); - memset(outMat4Opt, 0, sizeof(outMat4Opt)); - - // inline static void transformVec4(const float* m, float x, float y, float z, float w, float* dst); - MathUtilC::transformVec4(inMat41, x, y, z, w, outVec4C); - -#ifdef INCLUDE_NEON32 - MathUtilNeon::transformVec4(inMat41, x, y, z, w, outVec4Opt); -#endif - -#ifdef INCLUDE_NEON64 - MathUtilNeon64::transformVec4(inMat41, x, y, z, w, outVec4Opt); -#endif - -#ifdef INCLUDE_SSE - // FIXME: -#endif - - __checkMathUtilResult( - "inline static void transformVec4(const float* m, float x, float y, float z, float w, float* dst);", outVec4C, - outVec4Opt, VEC4_SIZE); - // Clean - memset(outVec4C, 0, sizeof(outVec4C)); - memset(outVec4Opt, 0, sizeof(outVec4Opt)); - - // inline static void transformVec4(const float* m, const float* v, float* dst); - MathUtilC::transformVec4(inMat41, inVec4, outVec4C); - -#ifdef INCLUDE_NEON32 - MathUtilNeon::transformVec4(inMat41, inVec4, outVec4Opt); -#endif - -#ifdef INCLUDE_NEON64 - MathUtilNeon64::transformVec4(inMat41, inVec4, outVec4Opt); -#endif - -#ifdef INCLUDE_SSE - // FIXME: -#endif - - __checkMathUtilResult("inline static void transformVec4(const float* m, const float* v, float* dst);", outVec4C, - outVec4Opt, VEC4_SIZE); - // Clean - memset(outVec4C, 0, sizeof(outVec4C)); - memset(outVec4Opt, 0, sizeof(outVec4Opt)); - - // inline static void crossVec3(const float* v1, const float* v2, float* dst); - MathUtilC::crossVec3(inVec4, inVec42, outVec4C); - -#ifdef INCLUDE_NEON32 - MathUtilNeon::crossVec3(inVec4, inVec42, outVec4Opt); -#endif - -#ifdef INCLUDE_NEON64 - MathUtilNeon64::crossVec3(inVec4, inVec42, outVec4Opt); -#endif - -#ifdef INCLUDE_SSE - // FIXME: -#endif - - __checkMathUtilResult("inline static void crossVec3(const float* v1, const float* v2, float* dst);", outVec4C, - outVec4Opt, VEC4_SIZE); - // Clean - memset(outVec4C, 0, sizeof(outVec4C)); - memset(outVec4Opt, 0, sizeof(outVec4Opt)); -} - -std::string MathUtilTest::subtitle() const -{ - return "MathUtilTest"; -} - -// ResizableBufferAdapterTest - -void ResizableBufferAdapterTest::onEnter() -{ - UnitTestDemo::onEnter(); - - - yasio::byte_buffer buffer; - - FileUtils::getInstance()->getContents("effect1.wav", &buffer); - EXPECT_EQ(buffer.size(), 10026); - - FileUtils::getInstance()->getContents("effect2.ogg", &buffer); - EXPECT_EQ(buffer.size(), 4278); - - FileUtils::getInstance()->getContents("effect1.wav", &buffer); - EXPECT_EQ(buffer.size(), 10026); -} - -std::string ResizableBufferAdapterTest::subtitle() const -{ - return "ResiziableBufferAdapter Test"; -} diff --git a/tests/cpp-tests/Source/UnitTest/UnitTest.h b/tests/cpp-tests/Source/UnitTest/UnitTest.h deleted file mode 100644 index ef41d367ee22..000000000000 --- a/tests/cpp-tests/Source/UnitTest/UnitTest.h +++ /dev/null @@ -1,115 +0,0 @@ -/**************************************************************************** - Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. - - https://axmolengine.github.io/ - - Permission is hereby granted, free of charge, to any person obtaining a copy - of this software and associated documentation files (the "Software"), to deal - in the Software without restriction, including without limitation the rights - to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - copies of the Software, and to permit persons to whom the Software is - furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN - THE SOFTWARE. - ****************************************************************************/ - -#ifndef __UNIT_TEST__ -#define __UNIT_TEST__ - -#include "../BaseTest.h" - -DEFINE_TEST_SUITE(UnitTests); - -class UnitTestDemo : public TestCase -{ -public: - virtual std::string title() const override; -}; - -//------------------------------------- - -class TemplateVectorTest : public UnitTestDemo -{ -public: - CREATE_FUNC(TemplateVectorTest); - virtual void onEnter() override; - virtual std::string subtitle() const override; - void constFunc(const ax::Vector& vec) const; -}; - -class TemplateMapTest : public UnitTestDemo -{ -public: - CREATE_FUNC(TemplateMapTest); - virtual void onEnter() override; - virtual std::string subtitle() const override; - void constFunc(const ax::StringMap& map) const; -}; - -class ValueTest : public UnitTestDemo -{ -public: - CREATE_FUNC(ValueTest); - virtual void onEnter() override; - virtual std::string subtitle() const override; - void constFunc(const ax::Value& value) const; -}; - -class UTFConversionTest : public UnitTestDemo -{ -public: - CREATE_FUNC(UTFConversionTest); - virtual void onEnter() override; - virtual std::string subtitle() const override; -}; - -class UIHelperSubStringTest : public UnitTestDemo -{ -public: - CREATE_FUNC(UIHelperSubStringTest); - virtual void onEnter() override; - virtual std::string subtitle() const override; -}; - -class ParseIntegerListTest : public UnitTestDemo -{ -public: - CREATE_FUNC(ParseIntegerListTest); - virtual void onEnter() override; - virtual std::string subtitle() const override; -}; - -class ParseUriTest : public UnitTestDemo -{ -public: - CREATE_FUNC(ParseUriTest); - virtual void onEnter() override; - virtual std::string subtitle() const override; -}; - -class MathUtilTest : public UnitTestDemo -{ -public: - CREATE_FUNC(MathUtilTest); - virtual void onEnter() override; - virtual std::string subtitle() const override; -}; - -class ResizableBufferAdapterTest : public UnitTestDemo -{ -public: - CREATE_FUNC(ResizableBufferAdapterTest); - virtual void onEnter() override; - virtual std::string subtitle() const override; -}; - -#endif /* __UNIT_TEST__ */ diff --git a/tests/cpp-tests/Source/controller.cpp b/tests/cpp-tests/Source/controller.cpp index 4a7ebfe07f26..8d5521a3a513 100644 --- a/tests/cpp-tests/Source/controller.cpp +++ b/tests/cpp-tests/Source/controller.cpp @@ -84,7 +84,6 @@ class RootTests : public TestList addTest("Effects - Advanced", []() { return new EffectAdvanceTests(); }); addTest("Effects - Basic", []() { return new EffectTests(); }); addTest("Extensions", []() { return new ExtensionsTests(); }); - addTest("FileUtils", []() { return new FileUtilsTests(); }); addTest("Fonts", []() { return new FontTests(); }); addTest("Interval", []() { return new IntervalTests(); }); #if (AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID) @@ -131,7 +130,6 @@ class RootTests : public TestList addTest("TexturePacker Encryption", []() { return new TextureAtlasEncryptionTests(); }); addTest("Touches", []() { return new TouchesTests(); }); addTest("Transitions", []() { return new TransitionsTests(); }); - addTest("Unit Test", []() { return new UnitTests(); }); addTest("Unzip Test", []() { return new ZipTests(); }); addTest("URL Open Test", []() { return new OpenURLTests(); }); addTest("UserDefault", []() { return new UserDefaultTests(); }); diff --git a/tests/cpp-tests/Source/tests.h b/tests/cpp-tests/Source/tests.h index 09f02b47f2c4..e5b60bb8bd0d 100644 --- a/tests/cpp-tests/Source/tests.h +++ b/tests/cpp-tests/Source/tests.h @@ -81,7 +81,6 @@ #include "EffectsAdvancedTest/EffectsAdvancedTest.h" #include "EffectsTest/EffectsTest.h" #include "ExtensionsTest/ExtensionsTest.h" -#include "FileUtilsTest/FileUtilsTest.h" #include "FontTest/FontTest.h" #include "InputTest/MouseTest.h" #include "IntervalTest/IntervalTest.h" @@ -123,7 +122,6 @@ #include "TouchesTest/TouchesTest.h" #include "TransitionsTest/TransitionsTest.h" #include "UITest/UITest.h" -#include "UnitTest/UnitTest.h" #include "UserDefaultTest/UserDefaultTest.h" #include "VibrateTest/VibrateTest.h" #include "ZwoptexTest/ZwoptexTest.h" diff --git a/tests/unit-tests/CMakeLists.txt b/tests/unit-tests/CMakeLists.txt new file mode 100644 index 000000000000..6aac59208d82 --- /dev/null +++ b/tests/unit-tests/CMakeLists.txt @@ -0,0 +1,220 @@ +cmake_minimum_required(VERSION 3.10) + +set(APP_NAME unit-tests) + +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) + +set(AX_EXT_HINT OFF CACHE BOOL "" FORCE) + + +# "too large PDB" error often occurs in unit-tests when using default "/Zi" +if (MSVC) + string(REPLACE "/Zi" "/Z7" CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG}") + string(REPLACE "/Zi" "/Z7" CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG}") + string(REPLACE "/Zi" "/Z7" CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO}") + string(REPLACE "/Zi" "/Z7" CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO}") +endif() + +project(${APP_NAME}) + +if(NOT DEFINED BUILD_ENGINE_DONE) + if(XCODE) + set(CMAKE_XCODE_GENERATE_TOP_LEVEL_PROJECT_ONLY TRUE) + endif() + + set(_AX_ROOT "$ENV{AX_ROOT}") + if(NOT (_AX_ROOT STREQUAL "")) + file(TO_CMAKE_PATH ${_AX_ROOT} _AX_ROOT) + message(STATUS "Using system env var _AX_ROOT=${_AX_ROOT}") + else() + set(_AX_ROOT ${CMAKE_CURRENT_SOURCE_DIR}/../..) + endif() + + set(CMAKE_MODULE_PATH ${_AX_ROOT}/cmake/Modules/) + + include(AXBuildSet) + add_subdirectory(${_AX_ROOT}/core ${ENGINE_BINARY_PATH}/axmol/core) +endif() + +_1kfetch(sample-assets) +_1klink("${sample-assets_SOURCE_DIR}/unit-tests/Content" "${CMAKE_CURRENT_LIST_DIR}/Content") + +set(GAME_SOURCE + Source/AppDelegate.cpp + Source/doctest.cpp + + Source/core/base/MapTests.cpp + Source/core/base/UTF8Tests.cpp + Source/core/base/UtilsTests.cpp + Source/core/base/ValueTests.cpp + Source/core/base/VectorTests.cpp + + Source/core/math/MathUtilTests.cpp + + Source/core/network/UriTests.cpp + + Source/core/platform/FileUtilsTests.cpp + + Source/core/ui/UIHelperTests.cpp +) + + +set(GAME_INC_DIRS + "${CMAKE_CURRENT_SOURCE_DIR}/Source" +) + +set(content_folder + "${CMAKE_CURRENT_SOURCE_DIR}/Content" +) +if(APPLE) + ax_mark_multi_resources(common_content_files RES_TO "Resources" FOLDERS ${content_folder}) +elseif(WINDOWS) + ax_mark_multi_resources(common_content_files RES_TO "Content" FOLDERS ${content_folder}) +endif() + +if(ANDROID) + list(APPEND GAME_HEADER + Source/JNITest/JNITest.h + ) + list(APPEND GAME_SOURCE + Source/JNITest/JNITest.cpp + proj.android/app/jni/main.cpp + ) +elseif(LINUX) + list(APPEND GAME_SOURCE + proj.linux/main.cpp + ) + list(APPEND GAME_SOURCE ${common_content_files}) +elseif(WASM) + list(APPEND GAME_SOURCE + proj.wasm/main.cpp + ) + list(APPEND GAME_SOURCE ${common_content_files}) +elseif(WINDOWS) + if(NOT WINRT) + list(APPEND GAME_SOURCE + proj.win32/main.cpp + ${common_content_files} + ) + else() + ax_setup_winrt_sources() + endif() + list(APPEND GAME_SOURCE ${common_content_files}) +elseif(APPLE) + if(IOS) + list(APPEND GAME_HEADER + proj.ios/Source/testsAppDelegate.h + proj.ios/Source/RootViewController.h + ) + + if (TVOS) + set(APP_UI_RES + proj.ios/LaunchScreenBackground.png + proj.ios/targets/tvos/LaunchScreen.storyboard + proj.ios/targets/tvos/Images.xcassets + ) + else() + set(APP_UI_RES + proj.ios/LaunchScreenBackground.png + proj.ios/targets/ios/LaunchScreen.storyboard + proj.ios/targets/ios/Images.xcassets + ) + endif() + + list(APPEND GAME_SOURCE + proj.ios/main.m + proj.ios/Source/testsAppDelegate.mm + proj.ios/Source/RootViewController.mm + proj.ios/Prefix.pch + ${APP_UI_RES} + ) + elseif(MACOSX) + set(APP_UI_RES + proj.mac/Icon.icns + proj.mac/Info.plist + proj.mac/Prefix.pch + proj.mac/en.lproj/InfoPlist.strings + ) + list(APPEND GAME_SOURCE + proj.mac/main.cpp + ${APP_UI_RES} + ) + endif() + list(APPEND GAME_SOURCE ${common_content_files}) +endif() + + +# mark app complie info and libs info +set(all_code_files + ${GAME_HEADER} + ${GAME_SOURCE} +) + +if(NOT ANDROID) + add_executable(${APP_NAME} ${all_code_files}) +else() + add_library(${APP_NAME} SHARED ${all_code_files}) + + # whole archive for jni + target_link_libraries(${APP_NAME} -Wl,--whole-archive cpp_android_spec -Wl,--no-whole-archive) + + config_android_shared_libs("org.axmol.lib" "${CMAKE_CURRENT_SOURCE_DIR}/proj.android/app/src") +endif() + +target_include_directories(${APP_NAME} PRIVATE ${GAME_INC_DIRS}) + +if (AX_ENABLE_EXT_EFFEKSEER) + target_compile_definitions(${APP_NAME} PRIVATE AX_ENABLE_EXT_EFFEKSEER=1) +endif() + +if (AX_ENABLE_EXT_DRAWNODEEX) + target_compile_definitions(${APP_NAME} PRIVATE AX_ENABLE_EXT_DRAWNODE=1) +endif() + +# mark app resources +ax_setup_app_config(${APP_NAME} CONSOLE) +target_link_libraries(${APP_NAME} ${_AX_CORE_LIB}) + +if(APPLE) + set_target_properties(${APP_NAME} PROPERTIES RESOURCE "${APP_UI_RES}") + set_xcode_property(${APP_NAME} INSTALL_PATH "\$(LOCAL_APPS_DIR)") + set_xcode_property(${APP_NAME} PRODUCT_BUNDLE_IDENTIFIER "org.axmol.${APP_NAME}") + + if(MACOSX) + set_target_properties(${APP_NAME} PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/proj.mac/Info.plist") + elseif(TVOS) + set_target_properties(${APP_NAME} PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/proj.ios/targets/tvos/Info.plist") + set_xcode_property(${APP_NAME} ASSETCATALOG_COMPILER_APPICON_NAME "Brand Assets") + elseif(IOS) + set_target_properties(${APP_NAME} PROPERTIES MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/proj.ios/targets/ios/Info.plist") + set_xcode_property(${APP_NAME} ASSETCATALOG_COMPILER_APPICON_NAME "AppIcon") + endif() + + # For code-signing, set the DEVELOPMENT_TEAM: + #set_xcode_property(${APP_NAME} DEVELOPMENT_TEAM "GRLXXXX2K9") +elseif(WINDOWS AND NOT WINRT) + if(NOT _AX_USE_PREBUILT) + ax_sync_target_dlls(${APP_NAME}) + endif() +endif() + +if ((NOT APPLE) AND (NOT WINRT)) + ax_get_resource_path(APP_RES_DIR ${APP_NAME}) + ax_sync_target_res(${APP_NAME} LINK_TO ${APP_RES_DIR} FOLDERS ${content_folder} SYM_LINK 1) + #if(WINDOWS) + # set_property(TARGET ${APP_NAME} PROPERTY VS_DEBUGGER_WORKING_DIRECTORY "${content_folder}") + #endif() +elseif(WINRT) + if(NOT DEFINED BUILD_ENGINE_DONE) + set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT ${APP_NAME}) + endif() +endif() + +if((NOT IOS) AND (NOT WINRT)) + message("CMake ${APP_NAME} target_precompile_headers") + target_precompile_headers(${APP_NAME} PRIVATE + "$<$:axmol.h>" + ) +endif() + +ax_setup_app_props(${APP_NAME}) diff --git a/tests/unit-tests/README.md b/tests/unit-tests/README.md new file mode 100644 index 000000000000..752ab58b1b37 --- /dev/null +++ b/tests/unit-tests/README.md @@ -0,0 +1,103 @@ +# unit-tests + + +## Description + +`unit-tests` app is a console application that runs Axmol's automated unit tests. It can be used for +test driven development, checking for regressions during development, or running tests in a CI/CD +pipeline. + +One of the `unit-tests` goals is for it to be fast, so it can be run frequently during development. + + +## Setup + +The `unit-tests` app is a console app. For writting tests `unit-tests` uses +[doctest](https://github.com/doctest/doctest) library. It's pretty simple and easy to use. + + +## Usage + +Supported platforms: + +* Linux +* macOS +* Windows + +To run tests simply build the `unit-tests` app and run it. It will run all tests automatically and +print the results to the console. The app also returns error code 0 if all tests pass and non 0 +code if any test fails. + +Use `axmol build -d tests/unit-tests` for building the `unit-tests` app. Then use command line to +run the app. You can also run it with `unit-tests --help` to see all available options. + + +## Writing tests + + +### Adding new tests + +Let's say you want to write unit tests for `ax::Node` class. To add a new test follow these steps: + +1. Find or create a source file to hold your tests. For easier navigation test source files follow + the same layout and naming as the engine source files, and only add a `Tests` postfix. For + example `ax::Node` in engine is in `core/2d/Node.h`, so the test file should be in + `tests/unit-tests/Source/core/2d/NodeTests.cpp`. +2. If the file doesn't exist, then create a new file, in this case + `tests/unit-tests/Source/core/2d/NodeTests.cpp`. +3. Register new file in `tests/unit-tests/CMakeLists.txt`. + +4. For the test file use the following structure: + ```cpp + // + #include + #include "2d/Node.h" // Include the thing you're testing + + USING_NS_AX; + + // For suite name use the part of the source file path, in this case `2d` followed by the + // class name you will be testing, in this case `Node`. Separate the parts with a slash. + TEST_SUITE("2d/Node") { + } + ``` + +5. If you will be testing functions, methods or their groups, then use their names in the test + case like this: + ```cpp + TEST_SUITE("2d/Node") { + TEST_CASE("addChild") { + // addChild() tests go here + } + + + TEST_CASE("removeFromParent") { + // removeFromParent() tests go here + } + } + ``` + +6. If you will be testing some specific functionality, then name what you're testing like this: + ```cpp + TEST_SUITE("2d/Node") { + TEST_CASE("adding_child_clears_dirty_flag") { + // Test goes here + } + } + ``` + +7. `TestUtils.h` header contains some helpers for testing. + +8. For reference example see `FileUtils` tests in `tests\unit-tests\Source\core\platform\FileUtilsTests.cpp`. + + +### Writing tests + +For more information on how to write tests using `doctest`, see the +[doctest documentation](https://github.com/doctest/doctest/blob/master/doc/markdown/readme.md) + + +### Things to keep in mind + +* For suite, case or subcase names use only `a-zA-Z0-9_/[]` symbols for easier use in command line. +* Try to follow the established naming and structure for suites and cases. This is for easier + filtering when running tests. diff --git a/tests/unit-tests/Source/AppDelegate.cpp b/tests/unit-tests/Source/AppDelegate.cpp new file mode 100644 index 000000000000..0787326a498a --- /dev/null +++ b/tests/unit-tests/Source/AppDelegate.cpp @@ -0,0 +1,114 @@ +/**************************************************************************** + Copyright (c) 2013 cocos2d-x.org + Copyright (c) 2013-2016 Chukong Technologies Inc. + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include +#include "doctest.h" +#include "AppDelegate.h" + +USING_NS_AX; + +static Vec2 gWindowSize = Vec2(1024, 768); + + + +void AppDelegate::initGLContextAttrs() +{ + // set OpenGL context attributes: red,green,blue,alpha,depth,stencil + GLContextAttrs glContextAttrs = {8, 8, 8, 8, 24, 8, 0}; + + GLView::setGLContextAttrs(glContextAttrs); +} + + +bool AppDelegate::applicationDidFinishLaunching() +{ + // Enable logging output colored text style and prefix timestamp + ax::setLogFmtFlag(ax::LogFmtFlag::Full); + + // whether enable global SDF font render support, since axmol-2.0.1 + FontFreeType::setShareDistanceFieldEnabled(true); + + // initialize director + auto director = Director::getInstance(); + auto glView = director->getGLView(); + if (!glView) + { + std::string title = "Unit Tests"; + #ifdef AX_PLATFORM_PC + glView = GLViewImpl::createWithRect(title, Rect(0, 0, gWindowSize.x, gWindowSize.y), 1.0F, true); + #else + glView = GLViewImpl::createWithRect(title, Rect(0, 0, gWindowSize.x, gWindowSize.y)); + #endif + director->setGLView(glView); + } + + director->setStatsDisplay(true); + + #ifdef AX_PLATFORM_PC + director->setAnimationInterval(1.0f / glfwGetVideoMode(glfwGetPrimaryMonitor())->refreshRate); + #else + director->setAnimationInterval(1.0f / 60); + #endif + + auto screenSize = glView->getFrameSize(); + + glView->setDesignResolutionSize(gWindowSize.x, gWindowSize.y, ResolutionPolicy::SHOW_ALL); + + return true; +} + + +void AppDelegate::applicationDidEnterBackground() +{ + Director::getInstance()->stopAnimation(); +} + + +void AppDelegate::applicationWillEnterForeground() +{ + Director::getInstance()->startAnimation(); +} + + +int AppDelegate::run(int argc, char** argv) { + ax::Director::getInstance()->init(); + + doctest::Context context; + + //context.addFilter("test-case-exclude", "*math*"); // exclude test cases with "math" in their name + //context.setOption("abort-after", 5); // stop test execution after 5 failed assertions + + context.setOption("order-by", "name"); // sort the test cases by their name + + context.applyCommandLine(argc, argv); + + // overrides + context.setOption("no-breaks", true); // don't break in the debugger when assertions fail + + int res = context.run(); // run + return res; +} diff --git a/tests/unit-tests/Source/AppDelegate.h b/tests/unit-tests/Source/AppDelegate.h new file mode 100644 index 000000000000..0b1bcfe13de8 --- /dev/null +++ b/tests/unit-tests/Source/AppDelegate.h @@ -0,0 +1,45 @@ +/**************************************************************************** + Copyright (c) 2013 cocos2d-x.org + Copyright (c) 2013-2016 Chukong Technologies Inc. + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ +#pragma once + +#include "axmol.h" + + +class TestController; + + +class AppDelegate : private ax::Application +{ +public: + virtual void initGLContextAttrs(); + + virtual bool applicationDidFinishLaunching(); + virtual void applicationDidEnterBackground(); + virtual void applicationWillEnterForeground(); + + int run(int argc, char** argv); +}; diff --git a/tests/unit-tests/Source/TestUtils.h b/tests/unit-tests/Source/TestUtils.h new file mode 100644 index 000000000000..1631b13534e5 --- /dev/null +++ b/tests/unit-tests/Source/TestUtils.h @@ -0,0 +1,41 @@ +#pragma once + +#include +#include "base/Director.h" +#include "base/Scheduler.h" +#include "doctest_fwd.h" + + +/// A helper class for testing asynchronous functions. It waits while the function +/// is executing on another thread and in the meantime updates the scheduler so +/// async result queued by `runOnAxmolThread` will be executed. +/// +/// @code +/// auto run = AsyncRunner(); +/// fu->isFileExist("text/123.txt", [&](bool exists) { +/// run.finish(exists); // Set result +/// }); +/// auto result = run(); // Get result +/// CHECK(result); // Test result +/// @endcode +template +class AsyncRunner { + std::promise p; + +public: + void finish(const T& value) { p.set_value(value); } + void finish(T&& value) { p.set_value(value); } + + T operator()() { + auto scheduler = ax::Director::getInstance()->getScheduler(); + auto f = p.get_future(); + while (true) { + auto result = f.wait_for(std::chrono::seconds(0)); + if (result == std::future_status::ready) + break; + std::this_thread::yield(); + scheduler->update(0); + } + return f.get(); + } +}; diff --git a/tests/unit-tests/Source/core/base/MapTests.cpp b/tests/unit-tests/Source/core/base/MapTests.cpp new file mode 100644 index 000000000000..94bbd6641122 --- /dev/null +++ b/tests/unit-tests/Source/core/base/MapTests.cpp @@ -0,0 +1,216 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include +#include "2d/Node.h" +#include "base/Map.h" + +USING_NS_AX; + + +TEST_SUITE("base/Map") { + TEST_CASE("old_tests") { + auto createMap = []() { + StringMap ret; + for (int i = 0; i < 20; ++i) + { + auto node = Node::create(); + node->setTag(1000 + i); + ret.insert(StringUtils::toString(i), node); + } + + return ret; + }; + + // Default constructor + Map map1; + CHECK(map1.empty()); + CHECK(map1.size() == 0); + CHECK(map1.keys().empty()); + CHECK(map1.keys(Node::create()).empty()); + + // Move constructor + auto map2 = createMap(); + for (const auto& e : map2) + { + AX_UNUSED_PARAM(e); + CHECK(e.second->getReferenceCount() == 2); + } + + // Copy constructor + auto map3(map2); + for (const auto& e : map3) + { + AX_UNUSED_PARAM(e); + CHECK(e.second->getReferenceCount() == 3); + } + + // Move assignment operator + StringMap map4; + auto unusedNode = Node::create(); + map4.insert("unused", unusedNode); + map4 = createMap(); + CHECK(unusedNode->getReferenceCount() == 1); + for (const auto& e : map4) + { + AX_UNUSED_PARAM(e); + CHECK(e.second->getReferenceCount() == 2); + } + + // Copy assignment operator + StringMap map5; + map5 = map4; + for (const auto& e : map5) + { + AX_UNUSED_PARAM(e); + CHECK(e.second->getReferenceCount() == 3); + } + + // Check size + CHECK(map4.size() == map5.size()); + + for (const auto& e : map4) + { + AX_UNUSED_PARAM(e); + CHECK(e.second == map5.find(e.first)->second); + } + + // keys and at + auto keys = map4.keys(); + std::sort(keys.begin(), keys.end()); + CHECK(keys.size() == 20); + const char* keyValues[20] = {"0", "1", "10", "11", "12", "13", "14", "15", "16", "17", + "18", "19", "2", "3", "4", "5", "6", "7", "8", "9"}; + for (int i = 0; i < 20; ++i) + { + CHECK(keys[i] == keyValues[i]); + } + + auto node10Key = map4.at("10"); + map4.insert("100", node10Key); + map4.insert("101", node10Key); + map4.insert("102", node10Key); + + auto keysForObject = map4.keys(node10Key); + std::sort(keysForObject.begin(), keysForObject.end()); + const char* keyValues2[4] = {"10", "100", "101", "102"}; + for (int i = 0; i < 4; ++i) + { + CHECK(keysForObject[i] == keyValues2[i]); + } + + // at in const function + const auto& constMap = map4; + CHECK(constMap.at("0")->getTag() == 1000); + CHECK(constMap.find("1")->second->getTag() == 1001); + + // find + auto nodeToFind = map4.find("10"); + AX_UNUSED_PARAM(nodeToFind); + CHECK(nodeToFind->second->getTag() == 1010); + + // insert + Map map6; + auto node1 = Node::create(); + node1->setTag(101); + auto node2 = Node::create(); + node2->setTag(102); + auto node3 = Node::create(); + node3->setTag(103); + map6.insert("insert01", node1); + map6.insert("insert02", node2); + map6.insert("insert03", node3); + + CHECK(node1->getReferenceCount() == 2); + CHECK(node2->getReferenceCount() == 2); + CHECK(node3->getReferenceCount() == 2); + CHECK(map6.at("insert01") == node1); + CHECK(map6.at("insert02") == node2); + CHECK(map6.at("insert03") == node3); + + // erase + StringMap mapForErase = createMap(); + mapForErase.erase(mapForErase.find("9")); + CHECK(mapForErase.find("9") == mapForErase.end()); + CHECK(mapForErase.size() == 19); + + mapForErase.erase("7"); + CHECK(mapForErase.find("7") == mapForErase.end()); + CHECK(mapForErase.size() == 18); + + std::vector itemsToRemove; + itemsToRemove.emplace_back("2"); + itemsToRemove.emplace_back("3"); + itemsToRemove.emplace_back("4"); + mapForErase.erase(itemsToRemove); + CHECK(mapForErase.size() == 15); + + // clear + StringMap mapForClear = createMap(); + auto mapForClearCopy = mapForClear; + mapForClear.clear(); + + for (const auto& e : mapForClearCopy) + { + AX_UNUSED_PARAM(e); + CHECK(e.second->getReferenceCount() == 2); + } + + // get random object + // Set the seed by time + std::srand((unsigned)time(nullptr)); + StringMap mapForRandom = createMap(); + auto different = 0; + for (int i = 0; i < mapForRandom.size(); ++i) + { + auto a = mapForRandom.getRandomObject(); + auto b = mapForRandom.getRandomObject(); + if (a->getTag() != b->getTag()) + different++; + } + CHECK(different > 0); + CHECK(different > mapForRandom.size() * 3 / 4); // At least 75% different + + // Self assignment + StringMap mapForSelfAssign = createMap(); + mapForSelfAssign = mapForSelfAssign; + CHECK(mapForSelfAssign.size() == 20); + + for (const auto& e : mapForSelfAssign) + { + AX_UNUSED_PARAM(e); + CHECK(e.second->getReferenceCount() == 2); + } + + mapForSelfAssign = std::move(mapForSelfAssign); + CHECK(mapForSelfAssign.size() == 20); + + for (const auto& e : mapForSelfAssign) + { + AX_UNUSED_PARAM(e); + CHECK(e.second->getReferenceCount() == 2); + } + } +} diff --git a/tests/unit-tests/Source/core/base/UTF8Tests.cpp b/tests/unit-tests/Source/core/base/UTF8Tests.cpp new file mode 100644 index 000000000000..4b41de49be33 --- /dev/null +++ b/tests/unit-tests/Source/core/base/UTF8Tests.cpp @@ -0,0 +1,105 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include +#include "base/UTF8.h" + +USING_NS_AX; + + +constexpr int kUtf16TestStrLength = 11; + + +TEST_SUITE("base/UTF8") { + TEST_CASE("old_tests") { + static const char16_t __utf16Code[] = { + 0x3042, 0x3044, 0x3046, 0x3048, 0x304A, 0x3042, 0x3044, 0x3046, 0x3048, 0x304A, 0x0041, 0x0000, + }; + + // to avoid Xcode error, char => unsigned char + // If you use this table, please cast manually as (const char *). + static const unsigned char __utf8Code[] = { + 0xE3, 0x81, 0x82, 0xE3, 0x81, 0x84, 0xE3, 0x81, 0x86, 0xE3, 0x81, 0x88, 0xE3, 0x81, 0x8A, 0xE3, + 0x81, 0x82, 0xE3, 0x81, 0x84, 0xE3, 0x81, 0x86, 0xE3, 0x81, 0x88, 0xE3, 0x81, 0x8A, 0x41, 0x00, + }; + + static const char16_t WHITE_SPACE_CODE[] = {0x0009, 0x000A, 0x000B, 0x000C, 0x000D, 0x0020, 0x0085, 0x00A0, 0x1680, + 0x2000, 0x2001, 0x2002, 0x2003, 0x2004, 0x2005, 0x2006, 0x2007, 0x2008, + 0x2009, 0x200A, 0x2028, 0x2029, 0x202F, 0x205F, 0x3000}; + + std::string originalUTF8 = (const char*)__utf8Code; + std::u16string originalUTF16 = __utf16Code; + + //--------------------------- + std::string utf8Str; + CHECK(StringUtils::UTF16ToUTF8(originalUTF16, utf8Str)); + CHECK(memcmp(utf8Str.data(), originalUTF8.data(), originalUTF8.length() + 1) == 0); + + //--------------------------- + std::u16string utf16Str; + CHECK(StringUtils::UTF8ToUTF16(originalUTF8, utf16Str)); + CHECK(memcmp(utf16Str.data(), originalUTF16.data(), originalUTF16.length() + 1) == 0); + CHECK(utf16Str.length() == kUtf16TestStrLength); + + //--------------------------- + auto vec1 = StringUtils::getChar16VectorFromUTF16String(originalUTF16); + + CHECK(vec1.size() == originalUTF16.length()); + + //--------------------------- + std::vector vec2(vec1); + vec2.emplace_back(0x2009); + vec2.emplace_back(0x2009); + vec2.emplace_back(0x2009); + vec2.emplace_back(0x2009); + + std::vector vec3(vec2); + StringUtils::trimUTF16Vector(vec2); + + CHECK(vec1.size() == vec2.size()); + + for (size_t i = 0; i < vec2.size(); i++) + { + CHECK(vec1.at(i) == vec2.at(i)); + } + + CHECK(StringUtils::getCharacterCountInUTF8String(originalUTF8) == kUtf16TestStrLength); + + CHECK(StringUtils::getIndexOfLastNotChar16(vec3, 0x2009) == (vec1.size() - 1)); + + CHECK(originalUTF16.length() == kUtf16TestStrLength); + + size_t whiteCodeNum = sizeof(WHITE_SPACE_CODE) / sizeof(WHITE_SPACE_CODE[0]); + for (size_t i = 0; i < whiteCodeNum; i++) + { + CHECK(StringUtils::isUnicodeSpace(WHITE_SPACE_CODE[i])); + } + + CHECK(!StringUtils::isUnicodeSpace(0xFFFF)); + + CHECK(!StringUtils::isCJKUnicode(0xFFFF)); + CHECK(StringUtils::isCJKUnicode(0x3100)); + } +} diff --git a/tests/unit-tests/Source/core/base/UtilsTests.cpp b/tests/unit-tests/Source/core/base/UtilsTests.cpp new file mode 100644 index 000000000000..13ddcb63aba5 --- /dev/null +++ b/tests/unit-tests/Source/core/base/UtilsTests.cpp @@ -0,0 +1,51 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include +#include "base/Utils.h" + +USING_NS_AX; + + +TEST_SUITE("base/Utils") { + TEST_CASE("parseIntegerList") { + using ax::utils::parseIntegerList; + + std::vector res1{}; + CHECK_EQ(res1, parseIntegerList("")); + + std::vector res2{1}; + CHECK_EQ(res2, parseIntegerList("1")); + + std::vector res3{1, 2}; + CHECK_EQ(res3, parseIntegerList("1 2")); + + std::vector res4{2, 4, 3, 1, 4, 2, 0, 4, 1, 0, 4, 5}; + CHECK_EQ(res4, parseIntegerList("2 4 3 1 4 2 0 4 1 0 4 5")); + + std::vector res5{73, 48, 57, 117, 27, 117, 29, 77, 14, 62, 26, 7, 55, 2}; + CHECK_EQ(res5, parseIntegerList("73 48 57 117 27 117 29 77 14 62 26 7 55 2")); + } +} diff --git a/tests/unit-tests/Source/core/base/ValueTests.cpp b/tests/unit-tests/Source/core/base/ValueTests.cpp new file mode 100644 index 000000000000..11bc1c9d2779 --- /dev/null +++ b/tests/unit-tests/Source/core/base/ValueTests.cpp @@ -0,0 +1,103 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include +#include "base/Value.h" + +USING_NS_AX; + + +TEST_SUITE("base/Value") { + TEST_CASE("old_tests") { + Value v1; + CHECK(v1.getType() == Value::Type::NONE); + CHECK(v1.isNull()); + + Value v2(100); + CHECK(v2.getType() == Value::Type::INTEGER); + CHECK(!v2.isNull()); + + Value v3(101.4f); + CHECK(v3.getType() == Value::Type::FLOAT); + CHECK(!v3.isNull()); + + Value v4(106.1); + CHECK(v4.getType() == Value::Type::DOUBLE); + CHECK(!v4.isNull()); + + unsigned char byte = 50; + Value v5(byte); + CHECK(v5.getType() == Value::Type::INT_UI32); + CHECK(!v5.isNull()); + + Value v6(true); + CHECK(v6.getType() == Value::Type::BOOLEAN); + CHECK(!v6.isNull()); + + Value v7("string"); + CHECK(v7.getType() == Value::Type::STRING); + CHECK(!v7.isNull()); + + Value v8(std::string("string2")); + CHECK(v8.getType() == Value::Type::STRING); + CHECK(!v8.isNull()); + + auto createValueVector = [&]() { + ValueVector ret; + ret.emplace_back(v1); + ret.emplace_back(v2); + ret.emplace_back(v3); + return ret; + }; + + Value v9(createValueVector()); + CHECK(v9.getType() == Value::Type::VECTOR); + CHECK(!v9.isNull()); + + auto createValueMap = [&]() { + ValueMap ret; + ret["aaa"] = v1; + ret["bbb"] = v2; + ret["ccc"] = v3; + return ret; + }; + + Value v10(createValueMap()); + CHECK(v10.getType() == Value::Type::MAP); + CHECK(!v10.isNull()); + + auto createValueMapIntKey = [&]() { + ValueMapIntKey ret; + ret[111] = v1; + ret[222] = v2; + ret[333] = v3; + return ret; + }; + + Value v11(createValueMapIntKey()); + CHECK(v11.getType() == Value::Type::INT_KEY_MAP); + CHECK(!v11.isNull()); + } +} diff --git a/tests/unit-tests/Source/core/base/VectorTests.cpp b/tests/unit-tests/Source/core/base/VectorTests.cpp new file mode 100644 index 000000000000..2355a809c0d1 --- /dev/null +++ b/tests/unit-tests/Source/core/base/VectorTests.cpp @@ -0,0 +1,297 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include +#include "base/Vector.h" + +USING_NS_AX; + + +TEST_SUITE("base/Vector") { + TEST_CASE("old_tests") { + Vector vec; + CHECK(vec.empty()); + CHECK(vec.capacity() == 0); + CHECK(vec.size() == 0); + CHECK(vec.max_size() > 0); + + auto node1 = Node::create(); + node1->setTag(1); + vec.pushBack(node1); + CHECK(node1->getReferenceCount() == 2); + + auto node2 = Node::create(); + node2->setTag(2); + vec.pushBack(node2); + CHECK(vec.getIndex(node1) == 0); + CHECK(vec.getIndex(node2) == 1); + + auto node3 = Node::create(); + node3->setTag(3); + vec.insert(1, node3); + CHECK(vec.at(0)->getTag() == 1); + CHECK(vec.at(1)->getTag() == 3); + CHECK(vec.at(2)->getTag() == 2); + + // Test copy constructor + Vector vec2(vec); + CHECK(vec2.size() == vec.size()); + ssize_t size = vec.size(); + for (ssize_t i = 0; i < size; ++i) + { + CHECK(vec2.at(i) == vec.at(i)); + CHECK(vec.at(i)->getReferenceCount() == 3); + CHECK(vec2.at(i)->getReferenceCount() == 3); + } + + // Test copy assignment operator + Vector vec3; + vec3 = vec2; + CHECK(vec3.size() == vec2.size()); + size = vec3.size(); + for (ssize_t i = 0; i < size; ++i) + { + CHECK(vec3.at(i) == vec2.at(i)); + CHECK(vec3.at(i)->getReferenceCount() == 4); + CHECK(vec2.at(i)->getReferenceCount() == 4); + CHECK(vec.at(i)->getReferenceCount() == 4); + } + + // Test move constructor + + auto createVector = []() { + Vector ret; + + for (int i = 0; i < 20; i++) + { + ret.pushBack(Node::create()); + } + + int j = 1000; + for (auto&& child : ret) + { + child->setTag(j++); + } + + return ret; + }; + + Vector vec4(createVector()); + for (const auto& child : vec4) + { + AX_UNUSED_PARAM(child); + CHECK(child->getReferenceCount() == 2); + } + + // Test init Vector with capacity + Vector vec5(10); + CHECK(vec5.capacity() == 10); + vec5.reserve(20); + CHECK(vec5.capacity() == 20); + + CHECK(vec5.size() == 0); + CHECK(vec5.empty()); + + auto toRemovedNode = Node::create(); + vec5.pushBack(toRemovedNode); + CHECK(toRemovedNode->getReferenceCount() == 2); + + // Test move assignment operator + vec5 = createVector(); + CHECK(toRemovedNode->getReferenceCount() == 1); + CHECK(vec5.size() == 20); + + for (const auto& child : vec5) + { + AX_UNUSED_PARAM(child); + CHECK(child->getReferenceCount() == 2); + } + + // Test Vector::find + CHECK(vec.find(node3) == (vec.begin() + 1)); + CHECK(std::find(std::begin(vec), std::end(vec), node2) == (vec.begin() + 2)); + + CHECK(vec.front()->getTag() == 1); + CHECK(vec.back()->getTag() == 2); + + CHECK(vec.getRandomObject()); + CHECK(!vec.contains(Node::create())); + CHECK(vec.contains(node1)); + CHECK(vec.contains(node2)); + CHECK(vec.contains(node3)); + CHECK(vec.equals(vec2)); + CHECK(vec.equals(vec3)); + + // Insert + vec5.insert(2, node1); + CHECK(vec5.at(2)->getTag() == 1); + CHECK(vec5.size() == 21); + vec5.back()->setTag(100); + vec5.popBack(); + CHECK(vec5.size() == 20); + CHECK(vec5.back()->getTag() != 100); + + // Erase and clear + Vector vec6 = createVector(); + Vector vec7 = vec6; // Copy for check + + CHECK(vec6.size() == 20); + vec6.erase(vec6.begin() + 1); // + CHECK(vec6.size() == 19); + CHECK((*(vec6.begin() + 1))->getTag() == 1002); + vec6.erase(vec6.begin() + 2, vec6.begin() + 10); + CHECK(vec6.size() == 11); + CHECK(vec6.at(0)->getTag() == 1000); + CHECK(vec6.at(1)->getTag() == 1002); + CHECK(vec6.at(2)->getTag() == 1011); + CHECK(vec6.at(3)->getTag() == 1012); + vec6.erase(3); + CHECK(vec6.at(3)->getTag() == 1013); + vec6.eraseObject(vec6.at(2)); + CHECK(vec6.at(2)->getTag() == 1013); + vec6.clear(); + + auto objA = Node::create(); // retain count is 1 + auto objB = Node::create(); + auto objC = Node::create(); + { + Vector array1; + Vector array2; + + // push back objA 3 times + array1.pushBack(objA); // retain count is 2 + array1.pushBack(objA); // retain count is 3 + array1.pushBack(objA); // retain count is 4 + + array2.pushBack(objA); // retain count is 5 + array2.pushBack(objB); + array2.pushBack(objC); + + for (auto&& obj : array1) + { + array2.eraseObject(obj); + } + CHECK(objA->getReferenceCount() == 4); + } + CHECK(objA->getReferenceCount() == 1); + + { + Vector array1; + // push back objA 3 times + array1.pushBack(objA); // retain count is 2 + array1.pushBack(objA); // retain count is 3 + array1.pushBack(objA); // retain count is 4 + CHECK(objA->getReferenceCount() == 4); + array1.eraseObject(objA, true); // Remove all occurrences in the Vector. + CHECK(objA->getReferenceCount() == 1); + + array1.pushBack(objA); // retain count is 2 + array1.pushBack(objA); // retain count is 3 + array1.pushBack(objA); // retain count is 4 + + array1.eraseObject(objA, false); + CHECK(objA->getReferenceCount() == 3); // Only remove the first occurrence in the Vector. + } + + // Check the retain count in vec7 + CHECK(vec7.size() == 20); + for (const auto& child : vec7) + { + AX_UNUSED_PARAM(child); + CHECK(child->getReferenceCount() == 2); + } + + // Sort + Vector vecForSort = createVector(); + std::sort(vecForSort.begin(), vecForSort.end(), [](Node* a, Node* b) { return a->getTag() >= b->getTag(); }); + + for (int i = 0; i < 20; ++i) + { + CHECK(vecForSort.at(i)->getTag() - 1000 == (19 - i)); + } + + // Reverse + vecForSort.reverse(); + for (int i = 0; i < 20; ++i) + { + CHECK(vecForSort.at(i)->getTag() - 1000 == i); + } + + // Swap + Vector vecForSwap = createVector(); + vecForSwap.swap(2, 4); + CHECK(vecForSwap.at(2)->getTag() == 1004); + CHECK(vecForSwap.at(4)->getTag() == 1002); + vecForSwap.swap(vecForSwap.at(2), vecForSwap.at(4)); + CHECK(vecForSwap.at(2)->getTag() == 1002); + CHECK(vecForSwap.at(4)->getTag() == 1004); + + // shrinkToFit + Vector vecForShrink = createVector(); + vecForShrink.reserve(100); + CHECK(vecForShrink.capacity() == 100); + vecForShrink.pushBack(Node::create()); + vecForShrink.shrinkToFit(); + CHECK(vecForShrink.capacity() == 21); + + // get random object + // Set the seed by time + std::srand((unsigned)time(nullptr)); + Vector vecForRandom = createVector(); + auto different = 0; + for (int i = 0; i < vecForRandom.size(); ++i) { + auto a = vecForRandom.getRandomObject(); + auto b = vecForRandom.getRandomObject(); + if (a->getTag() != b->getTag()) + different++; + } + CHECK(different > 0); + CHECK(different > vecForRandom.size() * 3 / 4); // At least 75% different + + // Self assignment + Vector vecSelfAssign = createVector(); + vecSelfAssign = vecSelfAssign; + CHECK(vecSelfAssign.size() == 20); + + for (const auto& child : vecSelfAssign) + { + AX_UNUSED_PARAM(child); + CHECK(child->getReferenceCount() == 2); + } + + vecSelfAssign = std::move(vecSelfAssign); + CHECK(vecSelfAssign.size() == 20); + + for (const auto& child : vecSelfAssign) + { + AX_UNUSED_PARAM(child); + CHECK(child->getReferenceCount() == 2); + } + + // const at + const Vector vecConstAt = createVector(); + CHECK(vecConstAt.at(8)->getTag() == 1008); + } +} diff --git a/tests/unit-tests/Source/core/math/MathUtilTests.cpp b/tests/unit-tests/Source/core/math/MathUtilTests.cpp new file mode 100644 index 000000000000..3a664c5e8951 --- /dev/null +++ b/tests/unit-tests/Source/core/math/MathUtilTests.cpp @@ -0,0 +1,330 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include +#include "base/Config.h" + +#if (AX_TARGET_PLATFORM == AX_PLATFORM_IOS) + #if defined(__arm64__) + #define USE_NEON64 + #define INCLUDE_NEON64 + #elif defined(__ARM_NEON__) + #define USE_NEON32 + #define INCLUDE_NEON32 + #endif +#elif (AX_TARGET_PLATFORM == AX_PLATFORM_ANDROID) + #if defined(__arm64__) || defined(__aarch64__) + #define USE_NEON64 + #define INCLUDE_NEON64 + #elif defined(__ARM_NEON__) + #define INCLUDE_NEON32 + #endif +#elif defined(__SSE__) + #define USE_SSE + #define INCLUDE_SSE +#endif + +#if defined(USE_NEON32) || defined(USE_NEON64) || defined(USE_SSE) + #define SKIP_SIMD_TEST doctest::skip(false) +#else + #define SKIP_SIMD_TEST doctest::skip(true) +#endif + +USING_NS_AX; + +namespace UnitTest { + +#ifdef INCLUDE_NEON32 + #include "math/MathUtilNeon.inl" +#endif + +#ifdef INCLUDE_NEON64 + #include "math/MathUtilNeon64.inl" +#endif + +#ifdef INCLUDE_SSE + #include "math/MathUtilSSE.inl" +#endif + +#include "math/MathUtil.inl" + +} // namespace UnitTest + + +static void __checkMathUtilResult(std::string_view description, const float* a1, const float* a2, int size) +{ + // Check whether the result of the optimized instruction is the same as which is implemented in C + for (int i = 0; i < size; ++i) + { + bool r = fabs(a1[i] - a2[i]) < 0.00001f; // FLT_EPSILON; + CHECK_MESSAGE(r, description, " a1[", i, "]=", a1[i], " a2[", i, "]=", a2[i]); + } +} + + +TEST_SUITE("math/MathUtil" * SKIP_SIMD_TEST) { + TEST_CASE("old_tests") { + // I know the next line looks ugly, but it's a way to test MathUtil. :) + using namespace UnitTest::ax; + + const int MAT4_SIZE = 16; + const int VEC4_SIZE = 4; + + const float inMat41[MAT4_SIZE] = { + 0.234023f, 2.472349f, 1.984244f, 2.23348f, 0.634124f, 0.234975f, 6.384572f, 0.82368f, + 0.738028f, 1.845237f, 1.934721f, 1.62343f, 0.339023f, 3.472452f, 1.324714f, 4.23852f, + }; + + const float inMat42[MAT4_SIZE] = { + 1.640232f, 4.472349f, 0.983244f, 1.23343f, 2.834124f, 8.234975f, 0.082572f, 3.82464f, + 3.238028f, 2.845237f, 0.331721f, 4.62544f, 4.539023f, 9.472452f, 3.520714f, 2.23252f, + }; + + const float scalar = 1.323298f; + const float x = 0.432234f; + const float y = 1.333229f; + const float z = 2.535292f; + const float w = 4.632234f; + + const float inVec4[VEC4_SIZE] = {2.323478f, 0.238482f, 4.223783f, 7.238238f}; + const float inVec42[VEC4_SIZE] = {0.322374f, 8.258883f, 3.293683f, 2.838337f}; + + float outMat4Opt[MAT4_SIZE] = {0}; + float outMat4C[MAT4_SIZE] = {0}; + float outVec4Opt[VEC4_SIZE] = {0}; + float outVec4C[VEC4_SIZE] = {0}; + + // inline static void addMatrix(const float* m, float scalar, float* dst); + MathUtilC::addMatrix(inMat41, scalar, outMat4C); + + #ifdef INCLUDE_NEON32 + MathUtilNeon::addMatrix(inMat41, scalar, outMat4Opt); + #endif + + #ifdef INCLUDE_NEON64 + MathUtilNeon64::addMatrix(inMat41, scalar, outMat4Opt); + #endif + + #ifdef INCLUDE_SSE + // FIXME: + #endif + + __checkMathUtilResult("inline static void addMatrix(const float* m, float scalar, float* dst);", outMat4C, + outMat4Opt, MAT4_SIZE); + // Clean + memset(outMat4C, 0, sizeof(outMat4C)); + memset(outMat4Opt, 0, sizeof(outMat4Opt)); + + // inline static void addMatrix(const float* m1, const float* m2, float* dst); + MathUtilC::addMatrix(inMat41, inMat42, outMat4C); + + #ifdef INCLUDE_NEON32 + MathUtilNeon::addMatrix(inMat41, inMat42, outMat4Opt); + #endif + + #ifdef INCLUDE_NEON64 + MathUtilNeon64::addMatrix(inMat41, inMat42, outMat4Opt); + #endif + + #ifdef INCLUDE_SSE + // FIXME: + #endif + + __checkMathUtilResult("inline static void addMatrix(const float* m1, const float* m2, float* dst);", outMat4C, + outMat4Opt, MAT4_SIZE); + // Clean + memset(outMat4C, 0, sizeof(outMat4C)); + memset(outMat4Opt, 0, sizeof(outMat4Opt)); + + // inline static void subtractMatrix(const float* m1, const float* m2, float* dst); + MathUtilC::subtractMatrix(inMat41, inMat42, outMat4C); + + #ifdef INCLUDE_NEON32 + MathUtilNeon::subtractMatrix(inMat41, inMat42, outMat4Opt); + #endif + + #ifdef INCLUDE_NEON64 + MathUtilNeon64::subtractMatrix(inMat41, inMat42, outMat4Opt); + #endif + + #ifdef INCLUDE_SSE + // FIXME: + #endif + + __checkMathUtilResult("inline static void subtractMatrix(const float* m1, const float* m2, float* dst);", outMat4C, + outMat4Opt, MAT4_SIZE); + // Clean + memset(outMat4C, 0, sizeof(outMat4C)); + memset(outMat4Opt, 0, sizeof(outMat4Opt)); + + // inline static void multiplyMatrix(const float* m, float scalar, float* dst); + MathUtilC::multiplyMatrix(inMat41, scalar, outMat4C); + + #ifdef INCLUDE_NEON32 + MathUtilNeon::multiplyMatrix(inMat41, scalar, outMat4Opt); + #endif + + #ifdef INCLUDE_NEON64 + MathUtilNeon64::multiplyMatrix(inMat41, scalar, outMat4Opt); + #endif + + #ifdef INCLUDE_SSE + // FIXME: + #endif + + __checkMathUtilResult("inline static void multiplyMatrix(const float* m, float scalar, float* dst);", outMat4C, + outMat4Opt, MAT4_SIZE); + // Clean + memset(outMat4C, 0, sizeof(outMat4C)); + memset(outMat4Opt, 0, sizeof(outMat4Opt)); + + // inline static void multiplyMatrix(const float* m1, const float* m2, float* dst); + MathUtilC::multiplyMatrix(inMat41, inMat42, outMat4C); + + #ifdef INCLUDE_NEON32 + MathUtilNeon::multiplyMatrix(inMat41, inMat42, outMat4Opt); + #endif + + #ifdef INCLUDE_NEON64 + MathUtilNeon64::multiplyMatrix(inMat41, inMat42, outMat4Opt); + #endif + + #ifdef INCLUDE_SSE + // FIXME: + #endif + + __checkMathUtilResult("inline static void multiplyMatrix(const float* m1, const float* m2, float* dst);", outMat4C, + outMat4Opt, MAT4_SIZE); + // Clean + memset(outMat4C, 0, sizeof(outMat4C)); + memset(outMat4Opt, 0, sizeof(outMat4Opt)); + + // inline static void negateMatrix(const float* m, float* dst); + MathUtilC::negateMatrix(inMat41, outMat4C); + + #ifdef INCLUDE_NEON32 + MathUtilNeon::negateMatrix(inMat41, outMat4Opt); + #endif + + #ifdef INCLUDE_NEON64 + MathUtilNeon64::negateMatrix(inMat41, outMat4Opt); + #endif + + #ifdef INCLUDE_SSE + // FIXME: + #endif + + __checkMathUtilResult("inline static void negateMatrix(const float* m, float* dst);", outMat4C, outMat4Opt, + MAT4_SIZE); + // Clean + memset(outMat4C, 0, sizeof(outMat4C)); + memset(outMat4Opt, 0, sizeof(outMat4Opt)); + + // inline static void transposeMatrix(const float* m, float* dst); + MathUtilC::transposeMatrix(inMat41, outMat4C); + + #ifdef INCLUDE_NEON32 + MathUtilNeon::transposeMatrix(inMat41, outMat4Opt); + #endif + + #ifdef INCLUDE_NEON64 + MathUtilNeon64::transposeMatrix(inMat41, outMat4Opt); + #endif + + #ifdef INCLUDE_SSE + // FIXME: + #endif + + __checkMathUtilResult("inline static void transposeMatrix(const float* m, float* dst);", outMat4C, outMat4Opt, + MAT4_SIZE); + // Clean + memset(outMat4C, 0, sizeof(outMat4C)); + memset(outMat4Opt, 0, sizeof(outMat4Opt)); + + // inline static void transformVec4(const float* m, float x, float y, float z, float w, float* dst); + MathUtilC::transformVec4(inMat41, x, y, z, w, outVec4C); + + #ifdef INCLUDE_NEON32 + MathUtilNeon::transformVec4(inMat41, x, y, z, w, outVec4Opt); + #endif + + #ifdef INCLUDE_NEON64 + MathUtilNeon64::transformVec4(inMat41, x, y, z, w, outVec4Opt); + #endif + + #ifdef INCLUDE_SSE + // FIXME: + #endif + + __checkMathUtilResult( + "inline static void transformVec4(const float* m, float x, float y, float z, float w, float* dst);", outVec4C, + outVec4Opt, VEC4_SIZE); + // Clean + memset(outVec4C, 0, sizeof(outVec4C)); + memset(outVec4Opt, 0, sizeof(outVec4Opt)); + + // inline static void transformVec4(const float* m, const float* v, float* dst); + MathUtilC::transformVec4(inMat41, inVec4, outVec4C); + + #ifdef INCLUDE_NEON32 + MathUtilNeon::transformVec4(inMat41, inVec4, outVec4Opt); + #endif + + #ifdef INCLUDE_NEON64 + MathUtilNeon64::transformVec4(inMat41, inVec4, outVec4Opt); + #endif + + #ifdef INCLUDE_SSE + // FIXME: + #endif + + __checkMathUtilResult("inline static void transformVec4(const float* m, const float* v, float* dst);", outVec4C, + outVec4Opt, VEC4_SIZE); + // Clean + memset(outVec4C, 0, sizeof(outVec4C)); + memset(outVec4Opt, 0, sizeof(outVec4Opt)); + + // inline static void crossVec3(const float* v1, const float* v2, float* dst); + MathUtilC::crossVec3(inVec4, inVec42, outVec4C); + + #ifdef INCLUDE_NEON32 + MathUtilNeon::crossVec3(inVec4, inVec42, outVec4Opt); + #endif + + #ifdef INCLUDE_NEON64 + MathUtilNeon64::crossVec3(inVec4, inVec42, outVec4Opt); + #endif + + #ifdef INCLUDE_SSE + // FIXME: + #endif + + __checkMathUtilResult("inline static void crossVec3(const float* v1, const float* v2, float* dst);", outVec4C, + outVec4Opt, VEC4_SIZE); + // Clean + memset(outVec4C, 0, sizeof(outVec4C)); + memset(outVec4Opt, 0, sizeof(outVec4Opt)); + } +} diff --git a/tests/unit-tests/Source/core/network/UriTests.cpp b/tests/unit-tests/Source/core/network/UriTests.cpp new file mode 100644 index 000000000000..c6cda2d16cbf --- /dev/null +++ b/tests/unit-tests/Source/core/network/UriTests.cpp @@ -0,0 +1,521 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include +#include "network/Uri.h" + +USING_NS_AX; +using namespace ax::network; + + +TEST_SUITE("network/Uri") { + TEST_CASE("standard_url") { + std::string s("http://www.facebook.com/hello/world?query#fragment"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("www.facebook.com", u.getHost()); + CHECK_EQ(80, u.getPort()); + CHECK_EQ("www.facebook.com", u.getAuthority()); + CHECK_EQ("/hello/world", u.getPath()); + CHECK_EQ("query", u.getQuery()); + CHECK_EQ("fragment", u.getFragment()); + CHECK_EQ(s, u.toString()); // canonical + } + + TEST_CASE("url_with_port") { + std::string s("http://www.facebook.com:8080/hello/world?query#fragment"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("www.facebook.com", u.getHost()); + CHECK_EQ(8080, u.getPort()); + CHECK_EQ("www.facebook.com:8080", u.getAuthority()); + CHECK_EQ("/hello/world", u.getPath()); + CHECK_EQ("query", u.getQuery()); + CHECK_EQ("fragment", u.getFragment()); + CHECK_EQ(s, u.toString()); // canonical + } + + TEST_CASE("url_with_ip") { + std::string s("http://127.0.0.1:8080/hello/world?query#fragment"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("127.0.0.1", u.getHost()); + CHECK_EQ(8080, u.getPort()); + CHECK_EQ("127.0.0.1:8080", u.getAuthority()); + CHECK_EQ("/hello/world", u.getPath()); + CHECK_EQ("query", u.getQuery()); + CHECK_EQ("fragment", u.getFragment()); + CHECK_EQ(s, u.toString()); // canonical + } + + TEST_CASE("url_with_ipv6") { + std::string s("http://[::1]:8080/hello/world?query#fragment"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("[::1]", u.getHost()); + CHECK_EQ("::1", u.getHostName()); + CHECK_EQ(8080, u.getPort()); + CHECK_EQ("[::1]:8080", u.getAuthority()); + CHECK_EQ("/hello/world", u.getPath()); + CHECK_EQ("query", u.getQuery()); + CHECK_EQ("fragment", u.getFragment()); + CHECK_EQ(s, u.toString()); // canonical + } + + TEST_CASE("url_with_ipv6_port") { + std::string s("http://[2401:db00:20:7004:face:0:29:0]:8080/hello/world?query"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("[2401:db00:20:7004:face:0:29:0]", u.getHost()); + CHECK_EQ("2401:db00:20:7004:face:0:29:0", u.getHostName()); + CHECK_EQ(8080, u.getPort()); + CHECK_EQ("[2401:db00:20:7004:face:0:29:0]:8080", u.getAuthority()); + CHECK_EQ("/hello/world", u.getPath()); + CHECK_EQ("query", u.getQuery()); + CHECK_EQ("", u.getFragment()); + CHECK_EQ(s, u.toString()); // canonical + } + + TEST_CASE("url_with_ipv6") { + std::string s("http://[2401:db00:20:7004:face:0:29:0]/hello/world?query"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("[2401:db00:20:7004:face:0:29:0]", u.getHost()); + CHECK_EQ("2401:db00:20:7004:face:0:29:0", u.getHostName()); + CHECK_EQ(80, u.getPort()); + CHECK_EQ("[2401:db00:20:7004:face:0:29:0]", u.getAuthority()); + CHECK_EQ("/hello/world", u.getPath()); + CHECK_EQ("query", u.getQuery()); + CHECK_EQ("", u.getFragment()); + CHECK_EQ(s, u.toString()); // canonical + } + + TEST_CASE("user_password") { + std::string s("http://user:pass@host.com/"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("user", u.getUserName()); + CHECK_EQ("pass", u.getPassword()); + CHECK_EQ("host.com", u.getHost()); + CHECK_EQ(80, u.getPort()); + CHECK_EQ("user:pass@host.com", u.getAuthority()); + CHECK_EQ("/", u.getPath()); + CHECK_EQ("", u.getQuery()); + CHECK_EQ("", u.getFragment()); + CHECK_EQ(s, u.toString()); + } + + TEST_CASE("user") { + std::string s("http://user@host.com/"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("user", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("host.com", u.getHost()); + CHECK_EQ(80, u.getPort()); + CHECK_EQ("user@host.com", u.getAuthority()); + CHECK_EQ("/", u.getPath()); + CHECK_EQ("", u.getQuery()); + CHECK_EQ("", u.getFragment()); + CHECK_EQ(s, u.toString()); + } + + TEST_CASE("user_empty_password") { + std::string s("http://user:@host.com/"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("user", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("host.com", u.getHost()); + CHECK_EQ(80, u.getPort()); + CHECK_EQ("user@host.com", u.getAuthority()); + CHECK_EQ("/", u.getPath()); + CHECK_EQ("", u.getQuery()); + CHECK_EQ("", u.getFragment()); + CHECK_EQ("http://user@host.com/", u.toString()); + } + + TEST_CASE("empty_user_password") { + std::string s("http://:pass@host.com/"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("", u.getUserName()); + CHECK_EQ("pass", u.getPassword()); + CHECK_EQ("host.com", u.getHost()); + CHECK_EQ(80, u.getPort()); + CHECK_EQ(":pass@host.com", u.getAuthority()); + CHECK_EQ("/", u.getPath()); + CHECK_EQ("", u.getQuery()); + CHECK_EQ("", u.getFragment()); + CHECK_EQ(s, u.toString()); + } + + TEST_CASE("empty_user_empty_password") { + std::string s("http://@host.com/"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("host.com", u.getHost()); + CHECK_EQ(80, u.getPort()); + CHECK_EQ("host.com", u.getAuthority()); + CHECK_EQ("/", u.getPath()); + CHECK_EQ("", u.getQuery()); + CHECK_EQ("", u.getFragment()); + CHECK_EQ("http://host.com/", u.toString()); + } + + TEST_CASE("empty_user_empty_password") { + std::string s("http://:@host.com/"); + Uri u = Uri::parse(s); + CHECK_EQ("http", u.getScheme()); + CHECK_EQ("", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("host.com", u.getHost()); + CHECK_EQ(80, u.getPort()); + CHECK_EQ("host.com", u.getAuthority()); + CHECK_EQ("/", u.getPath()); + CHECK_EQ("", u.getQuery()); + CHECK_EQ("", u.getFragment()); + CHECK_EQ("http://host.com/", u.toString()); + } + + TEST_CASE("local_file_tripple_slash") { + std::string s("file:///etc/motd"); + Uri u = Uri::parse(s); + CHECK_EQ("file", u.getScheme()); + CHECK_EQ("", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("", u.getHost()); + CHECK_EQ(0, u.getPort()); + CHECK_EQ("", u.getAuthority()); + CHECK_EQ("/etc/motd", u.getPath()); + CHECK_EQ("", u.getQuery()); + CHECK_EQ("", u.getFragment()); + CHECK_EQ(s, u.toString()); + } + + TEST_CASE("local_file"){ + std::string s("file://etc/motd"); + Uri u = Uri::parse(s); + CHECK_EQ("file", u.getScheme()); + CHECK_EQ("", u.getUserName()); + CHECK_EQ("", u.getPassword()); + CHECK_EQ("etc", u.getHost()); + CHECK_EQ(0, u.getPort()); + CHECK_EQ("etc", u.getAuthority()); + CHECK_EQ("/motd", u.getPath()); + CHECK_EQ("", u.getQuery()); + CHECK_EQ("", u.getFragment()); + CHECK_EQ(s, u.toString()); + } + + TEST_CASE("query_parameters") { + // test query parameters + std::string s("http://localhost?&key1=foo&key2=&key3&=bar&=bar=&"); + Uri u = Uri::parse(s); + auto paramsList = u.getQueryParams(); + std::map params; + for (auto&¶m : paramsList) + { + params[param.first] = param.second; + } + CHECK_EQ(3, params.size()); + CHECK_EQ("foo", params["key1"]); + CHECK_NE(params.end(), params.find("key2")); + CHECK_EQ("", params["key2"]); + CHECK_NE(params.end(), params.find("key3")); + CHECK_EQ("", params["key3"]); + } + + TEST_CASE("invalid_parameters") { + // test query parameters + std::string s("http://localhost?&&&&&&&&&&&&&&&"); + Uri u = Uri::parse(s); + auto params = u.getQueryParams(); + CHECK(params.empty()); + } + + TEST_CASE("invalid_parameters_2") { + // test query parameters + std::string s("http://localhost?&=invalid_key&key2&key3=foo"); + Uri u = Uri::parse(s); + auto paramsList = u.getQueryParams(); + std::map params; + for (auto&¶m : paramsList) + { + params[param.first] = param.second; + } + CHECK_EQ(2, params.size()); + CHECK_NE(params.end(), params.find("key2")); + CHECK_EQ("", params["key2"]); + CHECK_EQ("foo", params["key3"]); + } + + TEST_CASE("invalid_parameters_3") { + // test query parameters + std::string s("http://localhost?&key1=====&&=key2&key3="); + Uri u = Uri::parse(s); + auto paramsList = u.getQueryParams(); + std::map params; + for (auto&¶m : paramsList) + { + params[param.first] = param.second; + } + CHECK_EQ(1, params.size()); + CHECK_NE(params.end(), params.find("key3")); + CHECK_EQ("", params["key3"]); + } + + TEST_CASE("various") { + // test query parameters + std::string s("ws://localhost:90?key1=foo=bar&key2=foobar&"); + Uri u = Uri::parse(s); + + SUBCASE("invalid_parameters_4") { + auto paramsList = u.getQueryParams(); + std::map params; + for (auto&& param : paramsList) + { + params[param.first] = param.second; + } + CHECK_EQ(1, params.size()); + CHECK_EQ("foobar", params["key2"]); + } + + SUBCASE("copy_constructor") { + Uri v(u); + u = v = u; + CHECK(v.isValid()); + CHECK_EQ("ws", v.getScheme()); + CHECK_EQ("localhost", v.getHost()); + CHECK_EQ("localhost", v.getHostName()); + CHECK_EQ("/", v.getPath()); + CHECK_EQ(90, v.getPort()); + CHECK_EQ("", v.getFragment()); + CHECK_EQ("key1=foo=bar&key2=foobar&", v.getQuery()); + CHECK_EQ(u, v); + } + + SUBCASE("copy_assign_operator") { + Uri v; + v = u; + CHECK(v.isValid()); + CHECK_EQ("ws", v.getScheme()); + CHECK_EQ("localhost", v.getHost()); + CHECK_EQ("localhost", v.getHostName()); + CHECK_EQ("/", v.getPath()); + CHECK_EQ(90, v.getPort()); + CHECK_EQ("", v.getFragment()); + CHECK_EQ("key1=foo=bar&key2=foobar&", v.getQuery()); + CHECK_EQ(u, v); + } + + SUBCASE("self_assignment") { + u = u; + CHECK(u.isValid()); + } + + SUBCASE("self_move_assignment") { + u = std::move(u); + CHECK(u.isValid()); + } + + SUBCASE("move_constructor"){ + Uri v = std::move(u); + CHECK_FALSE(u.isValid()); + CHECK(v.isValid()); + CHECK_EQ("ws", v.getScheme()); + CHECK_EQ("localhost", v.getHost()); + CHECK_EQ("localhost", v.getHostName()); + CHECK_EQ("/", v.getPath()); + CHECK_EQ(90, v.getPort()); + CHECK_EQ("", v.getFragment()); + CHECK_EQ("key1=foo=bar&key2=foobar&", v.getQuery()); + u = std::move(v); + } + + SUBCASE("copy_assign_operator") { + Uri v; + v = std::move(u); + CHECK_FALSE(u.isValid()); + CHECK(v.isValid()); + CHECK_EQ("ws", v.getScheme()); + CHECK_EQ("localhost", v.getHost()); + CHECK_EQ("localhost", v.getHostName()); + CHECK_EQ("/", v.getPath()); + CHECK_EQ(90, v.getPort()); + CHECK_EQ("", v.getFragment()); + CHECK_EQ("key1=foo=bar&key2=foobar&", v.getQuery()); + u = v; + } + } + + TEST_CASE("invalid_url") { + std::string s("2http://www.facebook.com"); + + Uri u = Uri::parse(s); + CHECK_FALSE(u.isValid()); + } + + TEST_CASE("invalid_url_2") { + std::string s("www[facebook]com"); + + Uri u = Uri::parse("http://" + s); + CHECK_FALSE(u.isValid()); + } + + TEST_CASE("invalid_url_3") { + std::string s("http://[::1:8080/hello/world?query#fragment"); + Uri u = Uri::parse(s); + CHECK_FALSE(u.isValid()); + } + + TEST_CASE("invalid_url_4") { + std::string s("http://::1]:8080/hello/world?query#fragment"); + + Uri u = Uri::parse(s); + CHECK_FALSE(u.isValid()); + } + + TEST_CASE("invalid_url_5") { + std::string s("http://::1:8080/hello/world?query#fragment"); + Uri u = Uri::parse(s); + CHECK_FALSE(u.isValid()); + } + + TEST_CASE("invalid_url_6") { + std::string s("http://2401:db00:20:7004:face:0:29:0/hello/world?query"); + Uri u = Uri::parse(s); + CHECK_FALSE(u.isValid()); + } + + TEST_CASE("various_checks") { + Uri http = Uri::parse("http://google.com"); + Uri https = Uri::parse("https://www.google.com:90"); + Uri query = Uri::parse("http://google.com:8080/foo/bar?foo=bar"); + Uri localhost = Uri::parse("http://localhost:8080"); + Uri ipv6 = Uri::parse("https://[2001:0db8:85a3:0042:1000:8a2e:0370:7334]"); + Uri ipv6short = Uri::parse("http://[2001:db8:85a3:42:1000:8a2e:370:7334]"); + Uri ipv6port = Uri::parse("http://[2001:db8:85a3:42:1000:8a2e:370:7334]:90"); + Uri ipv6abbrev = Uri::parse("http://[2001::7334:a:90]"); + Uri ipv6http = Uri::parse("http://[2001::7334:a]:90"); + Uri ipv6query = Uri::parse("http://[2001::7334:a]:90/foo/bar?foo=bar"); + + CHECK_EQ(http.getScheme(), "http"); + CHECK_EQ(http.getPort(), 80); + CHECK_EQ(http.getHost(), "google.com"); + CHECK_EQ(https.getScheme(), "https"); + CHECK_EQ(https.getPort(), 90); + CHECK_EQ(https.getHost(), "www.google.com"); + CHECK_EQ(query.getPort(), 8080); + CHECK_EQ(query.getPathEtc(), "/foo/bar?foo=bar"); + CHECK_EQ(localhost.getScheme(), "http"); + CHECK_EQ(localhost.getHost(), "localhost"); + CHECK_EQ(localhost.getPort(), 8080); + CHECK_EQ(ipv6.getScheme(), "https"); + CHECK_EQ(ipv6.getHostName(), "2001:0db8:85a3:0042:1000:8a2e:0370:7334"); + CHECK_EQ(ipv6.getPort(), 443); + CHECK_EQ(ipv6short.getScheme(), "http"); + CHECK_EQ(ipv6short.getHostName(), "2001:db8:85a3:42:1000:8a2e:370:7334"); + CHECK_EQ(ipv6short.getPort(), 80); + CHECK_EQ(ipv6port.getScheme(), "http"); + CHECK_EQ(ipv6port.getHostName(), "2001:db8:85a3:42:1000:8a2e:370:7334"); + CHECK_EQ(ipv6port.getPort(), 90); + CHECK_EQ(ipv6abbrev.getScheme(), "http"); + CHECK_EQ(ipv6abbrev.getHostName(), "2001::7334:a:90"); + CHECK_EQ(ipv6abbrev.getPort(), 80); + CHECK_EQ(ipv6http.getScheme(), "http"); + CHECK_EQ(ipv6http.getPort(), 90); + CHECK_EQ(ipv6http.getHostName(), "2001::7334:a"); + CHECK_EQ(ipv6query.getScheme(), "http"); + CHECK_EQ(ipv6query.getPort(), 90); + CHECK_EQ(ipv6query.getHostName(), "2001::7334:a"); + CHECK_EQ(ipv6query.getPathEtc(), "/foo/bar?foo=bar"); + } + + TEST_CASE("various_checks_2") { + Uri u0 = Uri::parse("http://localhost:84/foo.html?&q=123"); + Uri u1 = Uri::parse("https://localhost:82/foo.html?&q=1"); + Uri u2 = Uri::parse("ws://localhost/foo"); + Uri u3 = Uri::parse("localhost/foo"); + Uri u4 = Uri::parse("localhost:8080"); + Uri u5 = Uri::parse("bb://localhost?&foo=12:4&ccc=13"); + Uri u6 = Uri::parse("cc://localhost:91?&foo=321&bbb=1"); + + CHECK_EQ(u0.getScheme(), "http"); + CHECK_EQ(u0.getHost(), "localhost"); + CHECK_EQ(u0.getPort(), 84); + CHECK_EQ(u0.getPath(), "/foo.html"); + CHECK_EQ(u0.getPathEtc(), "/foo.html?&q=123"); + + CHECK_EQ(u1.getScheme(), "https"); + CHECK_EQ(u1.getHost(), "localhost"); + CHECK_EQ(u1.getPort(), 82); + CHECK_EQ(u1.getPathEtc(), "/foo.html?&q=1"); + + CHECK_EQ(u2.getScheme(), "ws"); + CHECK_EQ(u2.getHost(), "localhost"); + CHECK_EQ(u2.getPort(), 80); + CHECK_EQ(u2.getPath(), "/foo"); + + CHECK_EQ(u3.getScheme(), ""); + CHECK_EQ(u3.getHost(), "localhost"); + CHECK_EQ(u3.getPort(), 0); + CHECK_EQ(u3.getPath(), "/foo"); + + CHECK_EQ(u4.getScheme(), ""); + CHECK_EQ(u4.getHost(), "localhost"); + CHECK_EQ(u4.getPort(), 8080); + CHECK_EQ(u4.getPath(), "/"); + CHECK_EQ(u4.getPathEtc(), "/"); + + CHECK_EQ(u5.getScheme(), "bb"); + CHECK_EQ(u5.getHost(), "localhost"); + CHECK_EQ(u5.getPort(), 0); + CHECK_EQ(u5.getPath(), "/"); + CHECK_EQ(u5.getPathEtc(), "/?&foo=12:4&ccc=13"); + CHECK_EQ(u5.getQuery(), "&foo=12:4&ccc=13"); + + CHECK_EQ(u6.getScheme(), "cc"); + CHECK_EQ(u6.getHost(), "localhost"); + CHECK_EQ(u6.getPort(), 91); + CHECK_EQ(u6.getPath(), "/"); + CHECK_EQ(u6.getPathEtc(), "/?&foo=321&bbb=1"); + CHECK_EQ(u6.getQuery(), "&foo=321&bbb=1"); + } +} diff --git a/tests/unit-tests/Source/core/platform/FileUtilsTests.cpp b/tests/unit-tests/Source/core/platform/FileUtilsTests.cpp new file mode 100644 index 000000000000..ec919b33ba7a --- /dev/null +++ b/tests/unit-tests/Source/core/platform/FileUtilsTests.cpp @@ -0,0 +1,539 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include +#include "TestUtils.h" +#include "platform/FileUtils.h" + +USING_NS_AX; + + +TEST_SUITE("platform/FileUtils") { + auto fu = FileUtils::getInstance(); + + + TEST_CASE("getWritablePath") { + REQUIRE(not fu->getWritablePath().empty()); + REQUIRE(fu->getWritablePath().back() == '/'); + } + + + TEST_CASE("getDefaultResourceRootPath") { + REQUIRE(not fu->getDefaultResourceRootPath().empty()); + REQUIRE(fu->getDefaultResourceRootPath().back() == '/'); + } + + + TEST_CASE("fullPathForDirectory") { + CHECK(fu->fullPathForDirectory("") == ""); + + CHECK(fu->fullPathForDirectory("doesnt_exist") == ""); + CHECK(fu->fullPathForDirectory("/doesnt_exist") == "/doesnt_exist/"); + + auto path = fu->fullPathForDirectory("text"); + REQUIRE(not path.empty()); + CHECK(path.back() == '/'); + CHECK(fu->isAbsolutePath(path)); + + CHECK(fu->fullPathForDirectory(path) == path); + } + + + TEST_CASE("search_paths") { + fu->purgeCachedEntries(); + + SUBCASE("addSearchPath") { + auto originalSearchPaths = fu->getOriginalSearchPaths(); + + CHECK(fu->fullPathForFilename("123.txt") == ""); + + auto path = fu->fullPathForDirectory("text"); + REQUIRE(not path.empty()); + + fu->addSearchPath(path); + CHECK(fu->fullPathForFilename("123.txt") == path + "123.txt"); + + fu->setSearchPaths(originalSearchPaths); + CHECK(fu->fullPathForFilename("123.txt") == ""); + } + + + SUBCASE("setDefaultResourceRootPath") { + auto originalDefaultResourceRootPath = fu->getDefaultResourceRootPath(); + + REQUIRE(not originalDefaultResourceRootPath.empty()); + + CHECK(fu->fullPathForFilename("123.txt") == ""); + + fu->setDefaultResourceRootPath(originalDefaultResourceRootPath + "text"); + CHECK(fu->fullPathForFilename("123.txt") == originalDefaultResourceRootPath + "text/123.txt"); + + fu->setDefaultResourceRootPath(originalDefaultResourceRootPath); + CHECK(fu->fullPathForFilename("123.txt") == ""); + } + } + + + TEST_CASE("isFileExist" * doctest::timeout(10)) { + CHECK(fu->isFileExist("text/123.txt")); + CHECK(fu->isFileExist(fu->fullPathForFilename("text/123.txt"))); + CHECK(not fu->isFileExist("text/doesnt_exist.txt")); + CHECK(not fu->isFileExist("/text/doesnt_exist")); + CHECK(not fu->isFileExist("text")); + CHECK(not fu->isFileExist(fu->fullPathForDirectory("text"))); + + auto run = AsyncRunner(); + fu->isFileExist("text/123.txt", [&](bool exists) { + run.finish(exists); + }); + CHECK(run()); + } + + + TEST_CASE("isDirectoryExist") { + CHECK(fu->isDirectoryExist("text")); + CHECK(fu->isDirectoryExist(fu->fullPathForDirectory("text"))); + CHECK(not fu->isDirectoryExist("doesnt_exist")); + CHECK(not fu->isDirectoryExist("/doesnt_exist")); + CHECK(not fu->isDirectoryExist("text/123.txt")); + CHECK(not fu->isDirectoryExist(fu->fullPathForFilename("text/123.txt"))); + + auto run = AsyncRunner(); + fu->isDirectoryExist(fu->fullPathForDirectory("text"), [&](bool exists) { + run.finish(exists); + }); + CHECK(run()); + } + + + TEST_CASE("getFileSize") { + CHECK(fu->getFileSize(fu->fullPathForFilename("text/123.txt")) == 3); + CHECK(fu->getFileSize(fu->fullPathForFilename("text/hello.txt")) == 12); + CHECK(fu->getFileSize("text/doesnt_exist.txt") == -1); + + auto run = AsyncRunner(); + fu->getFileSize("text/123.txt", [&](int size) { + run.finish(size); + }); + CHECK(run() == 3); + } + + + TEST_CASE("renameFile") { + auto file1 = fu->getWritablePath() + "__test1.txt"; + auto file2 = fu->getWritablePath() + "__test2.txt"; + + if (fu->isFileExist(file1)) + REQUIRE(fu->removeFile(file1)); + if (fu->isFileExist(file2)) + REQUIRE(fu->removeFile(file2)); + + REQUIRE(fu->writeStringToFile("Hello!", file1)); + REQUIRE(fu->isFileExist(file1)); + + REQUIRE(fu->renameFile(fu->getWritablePath(), "__test1.txt", "__test2.txt")); + CHECK(not fu->isFileExist(file1)); + CHECK(fu->isFileExist(file2)); + + auto run = AsyncRunner(); + fu->renameFile(fu->getWritablePath(), "__test2.txt", "__test1.txt", [&](bool success) { + run.finish(success); + }); + CHECK(run()); + CHECK(fu->isFileExist(file1)); + + CHECK(fu->removeFile(file1)); + } + + + TEST_CASE("removeFile") { + auto file = fu->getWritablePath() + "__test.txt"; + + if (fu->isFileExist(file)) + REQUIRE(fu->removeFile(file)); + + REQUIRE(not fu->isFileExist(file)); + REQUIRE(fu->writeStringToFile("Hello!", file)); + REQUIRE(fu->isFileExist(file)); + + SUBCASE("normal") { + CHECK(fu->removeFile(file)); + CHECK(not fu->isFileExist(file)); + CHECK(not fu->removeFile(file)); + } + + + SUBCASE("async") { + auto run = AsyncRunner(); + fu->removeFile(file, [&](bool success) { + run.finish(success); + }); + CHECK(run()); + CHECK(not fu->isFileExist(file)); + } + } + + + TEST_CASE("file_ops") { + auto file1 = fu->getWritablePath() + "__test1.txt"; + auto file2 = fu->getWritablePath() + "__test2.txt"; + + if (fu->isFileExist(file1)) + REQUIRE(fu->removeFile(file1)); + if (fu->isFileExist(file2)) + REQUIRE(fu->removeFile(file2)); + + REQUIRE(not fu->isFileExist(file1)); + REQUIRE(not fu->isFileExist(file2)); + + SUBCASE("writeStringToFile,getStringFromFile") { + REQUIRE(fu->writeStringToFile("Hello!", file1)); + CHECK(fu->getStringFromFile(file1) == "Hello!"); + REQUIRE(fu->removeFile(file1)); + + auto run = AsyncRunner(); + fu->writeStringToFile("Hello!", file1, [&](bool success) { + run.finish(success); + }); + REQUIRE(run()); + + auto run2 = AsyncRunner(); + fu->getStringFromFile(file1, [&](std::string_view value) { + run2.finish(std::string(value)); + }); + CHECK(run2() == "Hello!"); + + CHECK(fu->removeFile(file1)); + } + } + + + TEST_CASE("dir_ops") { + auto dir = fu->getWritablePath() + "__test_dir/"; + auto subdirs = dir + "dir1/dir2/"; + + if (fu->isDirectoryExist(dir)) + REQUIRE(fu->removeDirectory(dir)); + + SUBCASE("createDirectory,removeDirectory,isDirectoryExist") { + REQUIRE(not fu->isDirectoryExist(dir)); + REQUIRE(fu->createDirectory(subdirs)); + REQUIRE(fu->isDirectoryExist(dir)); + REQUIRE(fu->isDirectoryExist(subdirs)); + REQUIRE(fu->removeDirectory(dir)); + CHECK(not fu->isDirectoryExist(dir)); + } + } + + + TEST_CASE("ResizableBufferAdapter") { + yasio::byte_buffer buffer; + + fu->getContents("text/123.txt", &buffer); + REQUIRE(buffer.size() == 3); + CHECK(buffer[0] == '1'); + CHECK(buffer[1] == '2'); + CHECK(buffer[2] == '3'); + + fu->getContents("text/hello.txt", &buffer); + REQUIRE(buffer.size() == 12); + auto expected = std::string_view("Hello world!"); + for (size_t i = 0; i < expected.size(); ++i) + CHECK(buffer[i] == expected[i]); + } + + + TEST_CASE("getContents") { + static const std::string FileErrors[] = { "OK", "NotExists", "OpenFailed", "ReadFailed", "NotInitialized", "TooLarge", "ObtainSizeFailed", }; + + auto file = "text/binary.bin"; + std::vector binary = {'\r', '\n', '\r', '\n', '\0', '\0', '\r', '\n'}; + std::string text(binary.begin(), binary.end()); + + + SUBCASE("requirements") { + REQUIRE(fu->isFileExist(file)); + } + + + SUBCASE("string") { + std::string bs; + REQUIRE(fu->getContents(file, &bs) == FileUtils::Status::OK); + CHECK(bs.size() == binary.size()); + CHECK(bs == text); + } + + + SUBCASE("getStringFromFile") { + std::string ts = fu->getStringFromFile(file); + CHECK(ts.size() == binary.size()); + CHECK(ts == text); + } + + + SUBCASE("vector") { + std::vector vbuf; + REQUIRE(fu->getContents(file, &vbuf) == FileUtils::Status::OK); + CHECK(vbuf.size() == binary.size() / sizeof(int)); + CHECK(memcmp(vbuf.data(), binary.data(), binary.size()) == 0); + } + + + SUBCASE("Data") { + Data dbuf; + REQUIRE(fu->getContents(file, &dbuf) == FileUtils::Status::OK); + CHECK(dbuf.getSize() == binary.size()); + CHECK(std::equal(dbuf.getBytes(), dbuf.getBytes() + dbuf.getSize(), binary.begin())); + } + } + + + TEST_CASE("write_data") { + auto file = fu->getWritablePath() + "__test.txt"; + + if (fu->isFileExist(file)) + REQUIRE(fu->removeFile(file)); + + + SUBCASE("writeDataToFile") { + std::string writeDataStr = "Hello World!"; + Data writeData; + writeData.copy((unsigned char*)writeDataStr.c_str(), writeDataStr.size()); + + REQUIRE(fu->writeDataToFile(writeData, file)); + REQUIRE(fu->isFileExist(file)); + CHECK(fu->getStringFromFile(file) == writeDataStr); + fu->removeFile(file); + + auto run = AsyncRunner(); + fu->writeDataToFile(writeData, file, [&](bool success) { + run.finish(success); + }); + REQUIRE(run()); + CHECK(fu->getStringFromFile(file) == writeDataStr); + fu->removeFile(file); + } + + + SUBCASE("getDataFromFile") { + Data readData = FileUtils::getInstance()->getDataFromFile("text/hello.txt"); + REQUIRE(not readData.isNull()); + CHECK(readData.getSize() == 12); + CHECK(std::equal(readData.getBytes(), readData.getBytes() + readData.getSize(), "Hello world!")); + + readData.clear(); + auto run = AsyncRunner(); + fu->getDataFromFile("text/hello.txt", [&](const Data& readData) { + run.finish(readData); + }); + auto result = run(); + REQUIRE(not result.isNull()); + CHECK(result.getSize() == 12); + CHECK(std::equal(result.getBytes(), result.getBytes() + result.getSize(), "Hello world!")); + } + } + + + TEST_CASE("ValueMap") { + auto file = fu->getWritablePath() + "__test.txt"; + + if (fu->isFileExist(file)) + REQUIRE(fu->removeFile(file)); + + ValueMap valueMap; + { + ValueMap mapInValueMap; + mapInValueMap["string1"] = "string in dictInMap key 0"; + mapInValueMap["string2"] = "string in dictInMap key 1"; + mapInValueMap["none"].getType(); + + valueMap["data0"] = Value(mapInValueMap); + + valueMap["data1"] = Value("string in array"); + + ValueVector arrayInMap; + arrayInMap.emplace_back(Value("string 0 in arrayInMap")); + arrayInMap.emplace_back(Value("string 1 in arrayInMap")); + valueMap["data2"] = arrayInMap; + + // add boolean to the plist + auto booleanObject = Value(true); + valueMap["data3"] = booleanObject; + + // add integer to the plist + auto intObject = Value(1024); + valueMap["data4"] = intObject; + + // add float to the plist + auto floatObject = Value(1024.125f); + valueMap["data5"] = floatObject; + + // add double to the plist + auto doubleObject = Value(1024.5); + valueMap["data6"] = doubleObject; + } + + REQUIRE(fu->writeValueMapToFile(valueMap, file)); + + ValueMap readValueMap = FileUtils::getInstance()->getValueMapFromFile(file); + REQUIRE(not readValueMap.empty()); + + CHECK(readValueMap.size() == 7); + CHECK(readValueMap["data0"].getType() == Value::Type::MAP); + CHECK(readValueMap["data1"].getType() == Value::Type::STRING); + CHECK(readValueMap["data2"].getType() == Value::Type::VECTOR); + CHECK(readValueMap["data3"].getType() == Value::Type::BOOLEAN); + CHECK(readValueMap["data4"].getType() == Value::Type::INTEGER); + CHECK(readValueMap["data5"].getType() == Value::Type::DOUBLE); + CHECK(readValueMap["data6"].getType() == Value::Type::DOUBLE); + + auto mapInMap = readValueMap["data0"].asValueMap(); + CHECK(mapInMap["string1"].asString() == "string in dictInMap key 0"); + CHECK(mapInMap["string2"].asString() == "string in dictInMap key 1"); + + CHECK(readValueMap["data1"].asString() == "string in array"); + + auto arrayInMap = readValueMap["data2"].asValueVector(); + CHECK(arrayInMap.at(0).asString() == "string 0 in arrayInMap"); + CHECK(arrayInMap.at(1).asString() == "string 1 in arrayInMap"); + + CHECK(readValueMap["data3"].asBool() == true); + CHECK(readValueMap["data4"].asInt() == 1024); + CHECK(readValueMap["data5"].asFloat() == 1024.125f); + CHECK(readValueMap["data6"].asDouble() == 1024.5); + + CHECK(fu->removeFile(file)); + } + + + TEST_CASE("ValueVector") { + auto file = fu->getWritablePath() + "__test.txt"; + + if (fu->isFileExist(file)) + REQUIRE(fu->removeFile(file)); + + ValueVector valueVector; + { + ValueMap mapInArray; + mapInArray["string1"] = "string in dictInArray key 0"; + mapInArray["string2"] = "string in dictInArray key 1"; + valueVector.emplace_back(Value(mapInArray)); + + valueVector.emplace_back(Value("string in array")); + + ValueVector arrayInArray; + arrayInArray.emplace_back(Value("string 0 in arrayInArray")); + arrayInArray.emplace_back(Value("string 1 in arrayInArray")); + valueVector.emplace_back(Value(arrayInArray)); + + // add boolean to the plist + auto booleanObject = Value(true); + valueVector.emplace_back(booleanObject); + + // add integer to the plist + auto intObject = Value(1024); + valueVector.emplace_back(intObject); + + // add float to the plist + auto floatObject = Value(1024.125f); + valueVector.emplace_back(floatObject); + + // add double to the plist + auto doubleObject = Value(1024.5); + valueVector.emplace_back(doubleObject); + } + + REQUIRE(fu->writeValueVectorToFile(valueVector, file)); + + ValueVector readValueVector = FileUtils::getInstance()->getValueVectorFromFile(file); + REQUIRE(not readValueVector.empty()); + + CHECK(readValueVector.size() == 7); + CHECK(readValueVector.at(0).getType() == Value::Type::MAP); + CHECK(readValueVector.at(1).getType() == Value::Type::STRING); + CHECK(readValueVector.at(2).getType() == Value::Type::VECTOR); + CHECK(readValueVector.at(3).getType() == Value::Type::BOOLEAN); + CHECK(readValueVector.at(4).getType() == Value::Type::INTEGER); + CHECK(readValueVector.at(5).getType() == Value::Type::DOUBLE); + CHECK(readValueVector.at(6).getType() == Value::Type::DOUBLE); + + auto mapInArray = readValueVector.at(0).asValueMap(); + CHECK(mapInArray["string1"].asString() == "string in dictInArray key 0"); + CHECK(mapInArray["string2"].asString() == "string in dictInArray key 1"); + + CHECK(readValueVector.at(1).asString() == "string in array"); + + auto arrayInArray = readValueVector.at(2).asValueVector(); + CHECK(arrayInArray.at(0).asString() == "string 0 in arrayInArray"); + CHECK(arrayInArray.at(1).asString() == "string 1 in arrayInArray"); + + CHECK(readValueVector.at(3).asBool() == true); + CHECK(readValueVector.at(4).asInt() == 1024); + CHECK(readValueVector.at(5).asFloat() == 1024.125f); + CHECK(readValueVector.at(6).asDouble() == 1024.5); + + REQUIRE(fu->removeFile(file)); + } + + + TEST_CASE("unicode") { + auto dir = fu->getWritablePath() + "中文路径/"; + auto filename = dir + "测试文件.test"; + + if (fu->isDirectoryExist(dir)) + REQUIRE(fu->removeDirectory(dir)); + if (fu->isFileExist(filename)) + REQUIRE(fu->removeFile(filename)); + + REQUIRE(not fu->isDirectoryExist(dir)); + REQUIRE(fu->createDirectory(dir)); + REQUIRE(fu->isDirectoryExist(dir)); + + std::string writeDataStr = " 测试字符串."; + + REQUIRE(not fu->isFileExist(filename)); + REQUIRE(fu->writeStringToFile(writeDataStr, filename)); + REQUIRE(fu->isFileExist(filename)); + CHECK(fu->getStringFromFile(filename) == writeDataStr); + + REQUIRE(fu->removeFile(filename)); + CHECK(not fu->isFileExist(filename)); + + REQUIRE(fu->removeDirectory(dir)); + CHECK(not fu->isDirectoryExist(dir)); + } + + + TEST_CASE("listFiles") { + auto list = fu->listFiles("text"); + std::sort(list.begin(), list.end()); + auto path = fu->fullPathForDirectory("text"); + + CHECK(list.size() == 3); + CHECK(list[0] == path + "123.txt"); + CHECK(list[1] == path + "binary.bin"); + CHECK(list[2] == path + "hello.txt"); + } +} diff --git a/tests/unit-tests/Source/core/ui/UIHelperTests.cpp b/tests/unit-tests/Source/core/ui/UIHelperTests.cpp new file mode 100644 index 000000000000..3a00051dac50 --- /dev/null +++ b/tests/unit-tests/Source/core/ui/UIHelperTests.cpp @@ -0,0 +1,135 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include +#include "ui/UIHelper.h" + +USING_NS_AX; +using ax::ui::Helper; + + +TEST_SUITE("ui/Helper") { + TEST_CASE("getSubStringOfUTF8String") { + SUBCASE("normal_cases") { + std::string source = "abcdefghij"; + CHECK(Helper::getSubStringOfUTF8String(source, 0, 2) == "ab"); + CHECK(Helper::getSubStringOfUTF8String(source, 2, 2) == "cd"); + CHECK(Helper::getSubStringOfUTF8String(source, 4, 2) == "ef"); + } + + SUBCASE("empty_string") { + std::string source = ""; + + // OK + CHECK(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 1) == ""); + + // Error: These cases cause "out of range" error + CHECK(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 1, 1) == ""); + } + + SUBCASE("ascii") { + std::string source = "abc"; + + // OK + CHECK(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 2, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 3, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 3) == "abc"); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 4) == "abc"); + CHECK(Helper::getSubStringOfUTF8String(source, 1, 2) == "bc"); + CHECK(Helper::getSubStringOfUTF8String(source, 1, 3) == "bc"); + CHECK(Helper::getSubStringOfUTF8String(source, 2, 1) == "c"); + CHECK(Helper::getSubStringOfUTF8String(source, 2, 2) == "c"); + CHECK(Helper::getSubStringOfUTF8String(source, 3, 1) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 3, 2) == ""); + + // Error: These cases cause "out of range" error + CHECK(Helper::getSubStringOfUTF8String(source, 4, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 4, 1) == ""); + } + + SUBCASE("CJK") { + std::string source = "这里是中文测试例"; + + // OK + CHECK(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 7, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 8, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 8, 1) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 1) == "\xe8\xbf\x99"); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 4) == "\xe8\xbf\x99\xe9\x87\x8c\xe6\x98\xaf\xe4\xb8\xad"); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 8) == + "\xe8\xbf\x99\xe9\x87\x8c\xe6\x98\xaf\xe4\xb8\xad\xe6\x96\x87\xe6\xb5\x8b\xe8\xaf\x95\xe4\xbe\x8b"); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 100) == + "\xe8\xbf\x99\xe9\x87\x8c\xe6\x98\xaf\xe4\xb8\xad\xe6\x96\x87\xe6\xb5\x8b\xe8\xaf\x95\xe4\xbe\x8b"); + CHECK(Helper::getSubStringOfUTF8String(source, 2, 5) == + "\xe6\x98\xaf\xe4\xb8\xad\xe6\x96\x87\xe6\xb5\x8b\xe8\xaf\x95"); + CHECK(Helper::getSubStringOfUTF8String(source, 6, 2) == "\xe8\xaf\x95\xe4\xbe\x8b"); + CHECK(Helper::getSubStringOfUTF8String(source, 6, 100) == "\xe8\xaf\x95\xe4\xbe\x8b"); + + // Error: These cases cause "out of range" error + CHECK(Helper::getSubStringOfUTF8String(source, 9, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 9, 1) == ""); + } + + SUBCASE("redundant_utf8_sequence_for_directory_traversal_attack") { + // Redundant UTF-8 sequence for Directory traversal attack (1) + std::string source = "\xC0\xAF"; + + // Error: Can't convert string to correct encoding such as UTF-32 + CHECK(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 1) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 1, 1) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 2) == ""); + } + + SUBCASE("redundant_utf8_sequence_for_directory_traversal_attack_2") { + std::string source = "\xE0\x80\xAF"; + + // Error: Can't convert string to correct encoding such as UTF-32 + CHECK(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 1) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 1, 1) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 3) == ""); + } + + SUBCASE("redundant_utf8_sequence_for_directory_traversal_attack_3") { + std::string source = "\xF0\x80\x80\xAF"; + + // Error: Can't convert string to correct encoding such as UTF-32 + CHECK(Helper::getSubStringOfUTF8String(source, 0, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 1) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 1, 0) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 1, 1) == ""); + CHECK(Helper::getSubStringOfUTF8String(source, 0, 4) == ""); + } + } +} diff --git a/tests/unit-tests/Source/doctest.cpp b/tests/unit-tests/Source/doctest.cpp new file mode 100644 index 000000000000..5a2dd45994d4 --- /dev/null +++ b/tests/unit-tests/Source/doctest.cpp @@ -0,0 +1,4016 @@ +#if defined(DOCTEST_CONFIG_IMPLEMENT) || !defined(DOCTEST_SINGLE_HEADER) + +#ifndef DOCTEST_SINGLE_HEADER +#include "doctest_fwd.h" +#endif // DOCTEST_SINGLE_HEADER + +DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wunused-macros") + +#ifndef DOCTEST_LIBRARY_IMPLEMENTATION +#define DOCTEST_LIBRARY_IMPLEMENTATION + +DOCTEST_CLANG_SUPPRESS_WARNING_POP + +DOCTEST_SUPPRESS_COMMON_WARNINGS_PUSH + +DOCTEST_CLANG_SUPPRESS_WARNING_PUSH +DOCTEST_CLANG_SUPPRESS_WARNING("-Wglobal-constructors") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wexit-time-destructors") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wsign-conversion") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wshorten-64-to-32") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wmissing-variable-declarations") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wswitch") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wswitch-enum") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wcovered-switch-default") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wmissing-noreturn") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wdisabled-macro-expansion") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wmissing-braces") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wmissing-field-initializers") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wunused-member-function") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wnonportable-system-include-path") + +DOCTEST_GCC_SUPPRESS_WARNING_PUSH +DOCTEST_GCC_SUPPRESS_WARNING("-Wconversion") +DOCTEST_GCC_SUPPRESS_WARNING("-Wsign-conversion") +DOCTEST_GCC_SUPPRESS_WARNING("-Wmissing-field-initializers") +DOCTEST_GCC_SUPPRESS_WARNING("-Wmissing-braces") +DOCTEST_GCC_SUPPRESS_WARNING("-Wswitch") +DOCTEST_GCC_SUPPRESS_WARNING("-Wswitch-enum") +DOCTEST_GCC_SUPPRESS_WARNING("-Wswitch-default") +DOCTEST_GCC_SUPPRESS_WARNING("-Wunsafe-loop-optimizations") +DOCTEST_GCC_SUPPRESS_WARNING("-Wold-style-cast") +DOCTEST_GCC_SUPPRESS_WARNING("-Wunused-function") +DOCTEST_GCC_SUPPRESS_WARNING("-Wmultiple-inheritance") +DOCTEST_GCC_SUPPRESS_WARNING("-Wsuggest-attribute") + +DOCTEST_MSVC_SUPPRESS_WARNING_PUSH +DOCTEST_MSVC_SUPPRESS_WARNING(4267) // 'var' : conversion from 'x' to 'y', possible loss of data +DOCTEST_MSVC_SUPPRESS_WARNING(4530) // C++ exception handler used, but unwind semantics not enabled +DOCTEST_MSVC_SUPPRESS_WARNING(4577) // 'noexcept' used with no exception handling mode specified +DOCTEST_MSVC_SUPPRESS_WARNING(4774) // format string expected in argument is not a string literal +DOCTEST_MSVC_SUPPRESS_WARNING(4365) // conversion from 'int' to 'unsigned', signed/unsigned mismatch +DOCTEST_MSVC_SUPPRESS_WARNING(5039) // pointer to potentially throwing function passed to extern C +DOCTEST_MSVC_SUPPRESS_WARNING(4800) // forcing value to bool 'true' or 'false' (performance warning) +DOCTEST_MSVC_SUPPRESS_WARNING(5245) // unreferenced function with internal linkage has been removed + +DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN + +// required includes - will go only in one translation unit! +#include +#include +#include +// borland (Embarcadero) compiler requires math.h and not cmath - https://github.com/doctest/doctest/pull/37 +#ifdef __BORLANDC__ +#include +#endif // __BORLANDC__ +#include +#include +#include +#include +#include +#include +#include +#include +#ifndef DOCTEST_CONFIG_NO_INCLUDE_IOSTREAM +#include +#endif // DOCTEST_CONFIG_NO_INCLUDE_IOSTREAM +#include +#include +#include +#ifndef DOCTEST_CONFIG_NO_MULTITHREADING +#include +#include +#define DOCTEST_DECLARE_MUTEX(name) std::mutex name; +#define DOCTEST_DECLARE_STATIC_MUTEX(name) static DOCTEST_DECLARE_MUTEX(name) +#define DOCTEST_LOCK_MUTEX(name) std::lock_guard DOCTEST_ANONYMOUS(DOCTEST_ANON_LOCK_)(name); +#else // DOCTEST_CONFIG_NO_MULTITHREADING +#define DOCTEST_DECLARE_MUTEX(name) +#define DOCTEST_DECLARE_STATIC_MUTEX(name) +#define DOCTEST_LOCK_MUTEX(name) +#endif // DOCTEST_CONFIG_NO_MULTITHREADING +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#ifdef DOCTEST_PLATFORM_MAC +#include +#include +#include +#endif // DOCTEST_PLATFORM_MAC + +#ifdef DOCTEST_PLATFORM_WINDOWS + +// defines for a leaner windows.h +#ifndef WIN32_LEAN_AND_MEAN +#define WIN32_LEAN_AND_MEAN +#define DOCTEST_UNDEF_WIN32_LEAN_AND_MEAN +#endif // WIN32_LEAN_AND_MEAN +#ifndef NOMINMAX +#define NOMINMAX +#define DOCTEST_UNDEF_NOMINMAX +#endif // NOMINMAX + +// not sure what AfxWin.h is for - here I do what Catch does +#ifdef __AFXDLL +#include +#else +#include +#endif +#include + +#else // DOCTEST_PLATFORM_WINDOWS + +#include +#include + +#endif // DOCTEST_PLATFORM_WINDOWS + +// this is a fix for https://github.com/doctest/doctest/issues/348 +// https://mail.gnome.org/archives/xml/2012-January/msg00000.html +#if !defined(HAVE_UNISTD_H) && !defined(STDOUT_FILENO) +#define STDOUT_FILENO fileno(stdout) +#endif // HAVE_UNISTD_H + +DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END + +// counts the number of elements in a C array +#define DOCTEST_COUNTOF(x) (sizeof(x) / sizeof(x[0])) + +#ifdef DOCTEST_CONFIG_DISABLE +#define DOCTEST_BRANCH_ON_DISABLED(if_disabled, if_not_disabled) if_disabled +#else // DOCTEST_CONFIG_DISABLE +#define DOCTEST_BRANCH_ON_DISABLED(if_disabled, if_not_disabled) if_not_disabled +#endif // DOCTEST_CONFIG_DISABLE + +#ifndef DOCTEST_CONFIG_OPTIONS_PREFIX +#define DOCTEST_CONFIG_OPTIONS_PREFIX "dt-" +#endif + +#ifndef DOCTEST_THREAD_LOCAL +#if defined(DOCTEST_CONFIG_NO_MULTITHREADING) || DOCTEST_MSVC && (DOCTEST_MSVC < DOCTEST_COMPILER(19, 0, 0)) +#define DOCTEST_THREAD_LOCAL +#else // DOCTEST_MSVC +#define DOCTEST_THREAD_LOCAL thread_local +#endif // DOCTEST_MSVC +#endif // DOCTEST_THREAD_LOCAL + +#ifndef DOCTEST_MULTI_LANE_ATOMICS_THREAD_LANES +#define DOCTEST_MULTI_LANE_ATOMICS_THREAD_LANES 32 +#endif + +#ifndef DOCTEST_MULTI_LANE_ATOMICS_CACHE_LINE_SIZE +#define DOCTEST_MULTI_LANE_ATOMICS_CACHE_LINE_SIZE 64 +#endif + +#ifdef DOCTEST_CONFIG_NO_UNPREFIXED_OPTIONS +#define DOCTEST_OPTIONS_PREFIX_DISPLAY DOCTEST_CONFIG_OPTIONS_PREFIX +#else +#define DOCTEST_OPTIONS_PREFIX_DISPLAY "" +#endif + +#if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP) +#define DOCTEST_CONFIG_NO_MULTI_LANE_ATOMICS +#endif + +#ifndef DOCTEST_CDECL +#define DOCTEST_CDECL __cdecl +#endif + +namespace doctest { + +bool is_running_in_test = false; + +namespace { + using namespace detail; + + template + DOCTEST_NORETURN void throw_exception(Ex const& e) { +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS + throw e; +#else // DOCTEST_CONFIG_NO_EXCEPTIONS +#ifdef DOCTEST_CONFIG_HANDLE_EXCEPTION + DOCTEST_CONFIG_HANDLE_EXCEPTION(e); +#else // DOCTEST_CONFIG_HANDLE_EXCEPTION +#ifndef DOCTEST_CONFIG_NO_INCLUDE_IOSTREAM + std::cerr << "doctest will terminate because it needed to throw an exception.\n" + << "The message was: " << e.what() << '\n'; +#endif // DOCTEST_CONFIG_NO_INCLUDE_IOSTREAM +#endif // DOCTEST_CONFIG_HANDLE_EXCEPTION + std::terminate(); +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS + } + +#ifndef DOCTEST_INTERNAL_ERROR +#define DOCTEST_INTERNAL_ERROR(msg) \ + throw_exception(std::logic_error( \ + __FILE__ ":" DOCTEST_TOSTR(__LINE__) ": Internal doctest error: " msg)) +#endif // DOCTEST_INTERNAL_ERROR + + // case insensitive strcmp + int stricmp(const char* a, const char* b) { + for(;; a++, b++) { + const int d = tolower(*a) - tolower(*b); + if(d != 0 || !*a) + return d; + } + } + + struct Endianness + { + enum Arch + { + Big, + Little + }; + + static Arch which() { + int x = 1; + // casting any data pointer to char* is allowed + auto ptr = reinterpret_cast(&x); + if(*ptr) + return Little; + return Big; + } + }; +} // namespace + +namespace detail { + DOCTEST_THREAD_LOCAL class + { + std::vector stack; + std::stringstream ss; + + public: + std::ostream* push() { + stack.push_back(ss.tellp()); + return &ss; + } + + String pop() { + if (stack.empty()) + DOCTEST_INTERNAL_ERROR("TLSS was empty when trying to pop!"); + + std::streampos pos = stack.back(); + stack.pop_back(); + unsigned sz = static_cast(ss.tellp() - pos); + ss.rdbuf()->pubseekpos(pos, std::ios::in | std::ios::out); + return String(ss, sz); + } + } g_oss; + + std::ostream* tlssPush() { + return g_oss.push(); + } + + String tlssPop() { + return g_oss.pop(); + } + +#ifndef DOCTEST_CONFIG_DISABLE + +namespace timer_large_integer +{ + +#if defined(DOCTEST_PLATFORM_WINDOWS) + using type = ULONGLONG; +#else // DOCTEST_PLATFORM_WINDOWS + using type = std::uint64_t; +#endif // DOCTEST_PLATFORM_WINDOWS +} + +using ticks_t = timer_large_integer::type; + +#ifdef DOCTEST_CONFIG_GETCURRENTTICKS + ticks_t getCurrentTicks() { return DOCTEST_CONFIG_GETCURRENTTICKS(); } +#elif defined(DOCTEST_PLATFORM_WINDOWS) + ticks_t getCurrentTicks() { + static LARGE_INTEGER hz = { {0} }, hzo = { {0} }; + if(!hz.QuadPart) { + QueryPerformanceFrequency(&hz); + QueryPerformanceCounter(&hzo); + } + LARGE_INTEGER t; + QueryPerformanceCounter(&t); + return ((t.QuadPart - hzo.QuadPart) * LONGLONG(1000000)) / hz.QuadPart; + } +#else // DOCTEST_PLATFORM_WINDOWS + ticks_t getCurrentTicks() { + timeval t; + gettimeofday(&t, nullptr); + return static_cast(t.tv_sec) * 1000000 + static_cast(t.tv_usec); + } +#endif // DOCTEST_PLATFORM_WINDOWS + + struct Timer + { + void start() { m_ticks = getCurrentTicks(); } + unsigned int getElapsedMicroseconds() const { + return static_cast(getCurrentTicks() - m_ticks); + } + //unsigned int getElapsedMilliseconds() const { + // return static_cast(getElapsedMicroseconds() / 1000); + //} + double getElapsedSeconds() const { return static_cast(getCurrentTicks() - m_ticks) / 1000000.0; } + + private: + ticks_t m_ticks = 0; + }; + +#ifdef DOCTEST_CONFIG_NO_MULTITHREADING + template + using Atomic = T; +#else // DOCTEST_CONFIG_NO_MULTITHREADING + template + using Atomic = std::atomic; +#endif // DOCTEST_CONFIG_NO_MULTITHREADING + +#if defined(DOCTEST_CONFIG_NO_MULTI_LANE_ATOMICS) || defined(DOCTEST_CONFIG_NO_MULTITHREADING) + template + using MultiLaneAtomic = Atomic; +#else // DOCTEST_CONFIG_NO_MULTI_LANE_ATOMICS + // Provides a multilane implementation of an atomic variable that supports add, sub, load, + // store. Instead of using a single atomic variable, this splits up into multiple ones, + // each sitting on a separate cache line. The goal is to provide a speedup when most + // operations are modifying. It achieves this with two properties: + // + // * Multiple atomics are used, so chance of congestion from the same atomic is reduced. + // * Each atomic sits on a separate cache line, so false sharing is reduced. + // + // The disadvantage is that there is a small overhead due to the use of TLS, and load/store + // is slower because all atomics have to be accessed. + template + class MultiLaneAtomic + { + struct CacheLineAlignedAtomic + { + Atomic atomic{}; + char padding[DOCTEST_MULTI_LANE_ATOMICS_CACHE_LINE_SIZE - sizeof(Atomic)]; + }; + CacheLineAlignedAtomic m_atomics[DOCTEST_MULTI_LANE_ATOMICS_THREAD_LANES]; + + static_assert(sizeof(CacheLineAlignedAtomic) == DOCTEST_MULTI_LANE_ATOMICS_CACHE_LINE_SIZE, + "guarantee one atomic takes exactly one cache line"); + + public: + T operator++() DOCTEST_NOEXCEPT { return fetch_add(1) + 1; } + + T operator++(int) DOCTEST_NOEXCEPT { return fetch_add(1); } + + T fetch_add(T arg, std::memory_order order = std::memory_order_seq_cst) DOCTEST_NOEXCEPT { + return myAtomic().fetch_add(arg, order); + } + + T fetch_sub(T arg, std::memory_order order = std::memory_order_seq_cst) DOCTEST_NOEXCEPT { + return myAtomic().fetch_sub(arg, order); + } + + operator T() const DOCTEST_NOEXCEPT { return load(); } + + T load(std::memory_order order = std::memory_order_seq_cst) const DOCTEST_NOEXCEPT { + auto result = T(); + for(auto const& c : m_atomics) { + result += c.atomic.load(order); + } + return result; + } + + T operator=(T desired) DOCTEST_NOEXCEPT { // lgtm [cpp/assignment-does-not-return-this] + store(desired); + return desired; + } + + void store(T desired, std::memory_order order = std::memory_order_seq_cst) DOCTEST_NOEXCEPT { + // first value becomes desired", all others become 0. + for(auto& c : m_atomics) { + c.atomic.store(desired, order); + desired = {}; + } + } + + private: + // Each thread has a different atomic that it operates on. If more than NumLanes threads + // use this, some will use the same atomic. So performance will degrade a bit, but still + // everything will work. + // + // The logic here is a bit tricky. The call should be as fast as possible, so that there + // is minimal to no overhead in determining the correct atomic for the current thread. + // + // 1. A global static counter laneCounter counts continuously up. + // 2. Each successive thread will use modulo operation of that counter so it gets an atomic + // assigned in a round-robin fashion. + // 3. This tlsLaneIdx is stored in the thread local data, so it is directly available with + // little overhead. + Atomic& myAtomic() DOCTEST_NOEXCEPT { + static Atomic laneCounter; + DOCTEST_THREAD_LOCAL size_t tlsLaneIdx = + laneCounter++ % DOCTEST_MULTI_LANE_ATOMICS_THREAD_LANES; + + return m_atomics[tlsLaneIdx].atomic; + } + }; +#endif // DOCTEST_CONFIG_NO_MULTI_LANE_ATOMICS + + // this holds both parameters from the command line and runtime data for tests + struct ContextState : ContextOptions, TestRunStats, CurrentTestCaseStats + { + MultiLaneAtomic numAssertsCurrentTest_atomic; + MultiLaneAtomic numAssertsFailedCurrentTest_atomic; + + std::vector> filters = decltype(filters)(9); // 9 different filters + + std::vector reporters_currently_used; + + assert_handler ah = nullptr; + + Timer timer; + + std::vector stringifiedContexts; // logging from INFO() due to an exception + + // stuff for subcases + bool reachedLeaf; + std::vector subcaseStack; + std::vector nextSubcaseStack; + std::unordered_set fullyTraversedSubcases; + size_t currentSubcaseDepth; + Atomic shouldLogCurrentException; + + void resetRunData() { + numTestCases = 0; + numTestCasesPassingFilters = 0; + numTestSuitesPassingFilters = 0; + numTestCasesFailed = 0; + numAsserts = 0; + numAssertsFailed = 0; + numAssertsCurrentTest = 0; + numAssertsFailedCurrentTest = 0; + } + + void finalizeTestCaseData() { + seconds = timer.getElapsedSeconds(); + + // update the non-atomic counters + numAsserts += numAssertsCurrentTest_atomic; + numAssertsFailed += numAssertsFailedCurrentTest_atomic; + numAssertsCurrentTest = numAssertsCurrentTest_atomic; + numAssertsFailedCurrentTest = numAssertsFailedCurrentTest_atomic; + + if(numAssertsFailedCurrentTest) + failure_flags |= TestCaseFailureReason::AssertFailure; + + if(Approx(currentTest->m_timeout).epsilon(DBL_EPSILON) != 0 && + Approx(seconds).epsilon(DBL_EPSILON) > currentTest->m_timeout) + failure_flags |= TestCaseFailureReason::Timeout; + + if(currentTest->m_should_fail) { + if(failure_flags) { + failure_flags |= TestCaseFailureReason::ShouldHaveFailedAndDid; + } else { + failure_flags |= TestCaseFailureReason::ShouldHaveFailedButDidnt; + } + } else if(failure_flags && currentTest->m_may_fail) { + failure_flags |= TestCaseFailureReason::CouldHaveFailedAndDid; + } else if(currentTest->m_expected_failures > 0) { + if(numAssertsFailedCurrentTest == currentTest->m_expected_failures) { + failure_flags |= TestCaseFailureReason::FailedExactlyNumTimes; + } else { + failure_flags |= TestCaseFailureReason::DidntFailExactlyNumTimes; + } + } + + bool ok_to_fail = (TestCaseFailureReason::ShouldHaveFailedAndDid & failure_flags) || + (TestCaseFailureReason::CouldHaveFailedAndDid & failure_flags) || + (TestCaseFailureReason::FailedExactlyNumTimes & failure_flags); + + // if any subcase has failed - the whole test case has failed + testCaseSuccess = !(failure_flags && !ok_to_fail); + if(!testCaseSuccess) + numTestCasesFailed++; + } + }; + + ContextState* g_cs = nullptr; + + // used to avoid locks for the debug output + // TODO: figure out if this is indeed necessary/correct - seems like either there still + // could be a race or that there wouldn't be a race even if using the context directly + DOCTEST_THREAD_LOCAL bool g_no_colors; + +#endif // DOCTEST_CONFIG_DISABLE +} // namespace detail + +char* String::allocate(size_type sz) { + if (sz <= last) { + buf[sz] = '\0'; + setLast(last - sz); + return buf; + } else { + setOnHeap(); + data.size = sz; + data.capacity = data.size + 1; + data.ptr = new char[data.capacity]; + data.ptr[sz] = '\0'; + return data.ptr; + } +} + +void String::setOnHeap() noexcept { *reinterpret_cast(&buf[last]) = 128; } +void String::setLast(size_type in) noexcept { buf[last] = char(in); } +void String::setSize(size_type sz) noexcept { + if (isOnStack()) { buf[sz] = '\0'; setLast(last - sz); } + else { data.ptr[sz] = '\0'; data.size = sz; } +} + +void String::copy(const String& other) { + if(other.isOnStack()) { + memcpy(buf, other.buf, len); + } else { + memcpy(allocate(other.data.size), other.data.ptr, other.data.size); + } +} + +String::String() noexcept { + buf[0] = '\0'; + setLast(); +} + +String::~String() { + if(!isOnStack()) + delete[] data.ptr; +} // NOLINT(clang-analyzer-cplusplus.NewDeleteLeaks) + +String::String(const char* in) + : String(in, strlen(in)) {} + +String::String(const char* in, size_type in_size) { + memcpy(allocate(in_size), in, in_size); +} + +String::String(std::istream& in, size_type in_size) { + in.read(allocate(in_size), in_size); +} + +String::String(const String& other) { copy(other); } + +String& String::operator=(const String& other) { + if(this != &other) { + if(!isOnStack()) + delete[] data.ptr; + + copy(other); + } + + return *this; +} + +String& String::operator+=(const String& other) { + const size_type my_old_size = size(); + const size_type other_size = other.size(); + const size_type total_size = my_old_size + other_size; + if(isOnStack()) { + if(total_size < len) { + // append to the current stack space + memcpy(buf + my_old_size, other.c_str(), other_size + 1); + // NOLINTNEXTLINE(clang-analyzer-cplusplus.NewDeleteLeaks) + setLast(last - total_size); + } else { + // alloc new chunk + char* temp = new char[total_size + 1]; + // copy current data to new location before writing in the union + memcpy(temp, buf, my_old_size); // skip the +1 ('\0') for speed + // update data in union + setOnHeap(); + data.size = total_size; + data.capacity = data.size + 1; + data.ptr = temp; + // transfer the rest of the data + memcpy(data.ptr + my_old_size, other.c_str(), other_size + 1); + } + } else { + if(data.capacity > total_size) { + // append to the current heap block + data.size = total_size; + memcpy(data.ptr + my_old_size, other.c_str(), other_size + 1); + } else { + // resize + data.capacity *= 2; + if(data.capacity <= total_size) + data.capacity = total_size + 1; + // alloc new chunk + char* temp = new char[data.capacity]; + // copy current data to new location before releasing it + memcpy(temp, data.ptr, my_old_size); // skip the +1 ('\0') for speed + // release old chunk + delete[] data.ptr; + // update the rest of the union members + data.size = total_size; + data.ptr = temp; + // transfer the rest of the data + memcpy(data.ptr + my_old_size, other.c_str(), other_size + 1); + } + } + + return *this; +} + +String::String(String&& other) noexcept { + memcpy(buf, other.buf, len); + other.buf[0] = '\0'; + other.setLast(); +} + +String& String::operator=(String&& other) noexcept { + if(this != &other) { + if(!isOnStack()) + delete[] data.ptr; + memcpy(buf, other.buf, len); + other.buf[0] = '\0'; + other.setLast(); + } + return *this; +} + +char String::operator[](size_type i) const { + return const_cast(this)->operator[](i); +} + +char& String::operator[](size_type i) { + if(isOnStack()) + return reinterpret_cast(buf)[i]; + return data.ptr[i]; +} + +DOCTEST_GCC_SUPPRESS_WARNING_WITH_PUSH("-Wmaybe-uninitialized") +String::size_type String::size() const { + if(isOnStack()) + return last - (size_type(buf[last]) & 31); // using "last" would work only if "len" is 32 + return data.size; +} +DOCTEST_GCC_SUPPRESS_WARNING_POP + +String::size_type String::capacity() const { + if(isOnStack()) + return len; + return data.capacity; +} + +String String::substr(size_type pos, size_type cnt) && { + cnt = std::min(cnt, size() - 1 - pos); + char* cptr = c_str(); + memmove(cptr, cptr + pos, cnt); + setSize(cnt); + return std::move(*this); +} + +String String::substr(size_type pos, size_type cnt) const & { + cnt = std::min(cnt, size() - 1 - pos); + return String{ c_str() + pos, cnt }; +} + +String::size_type String::find(char ch, size_type pos) const { + const char* begin = c_str(); + const char* end = begin + size(); + const char* it = begin + pos; + for (; it < end && *it != ch; it++); + if (it < end) { return static_cast(it - begin); } + else { return npos; } +} + +String::size_type String::rfind(char ch, size_type pos) const { + const char* begin = c_str(); + const char* it = begin + std::min(pos, size() - 1); + for (; it >= begin && *it != ch; it--); + if (it >= begin) { return static_cast(it - begin); } + else { return npos; } +} + +int String::compare(const char* other, bool no_case) const { + if(no_case) + return doctest::stricmp(c_str(), other); + return std::strcmp(c_str(), other); +} + +int String::compare(const String& other, bool no_case) const { + return compare(other.c_str(), no_case); +} + +String operator+(const String& lhs, const String& rhs) { return String(lhs) += rhs; } + +bool operator==(const String& lhs, const String& rhs) { return lhs.compare(rhs) == 0; } +bool operator!=(const String& lhs, const String& rhs) { return lhs.compare(rhs) != 0; } +bool operator< (const String& lhs, const String& rhs) { return lhs.compare(rhs) < 0; } +bool operator> (const String& lhs, const String& rhs) { return lhs.compare(rhs) > 0; } +bool operator<=(const String& lhs, const String& rhs) { return (lhs != rhs) ? lhs.compare(rhs) < 0 : true; } +bool operator>=(const String& lhs, const String& rhs) { return (lhs != rhs) ? lhs.compare(rhs) > 0 : true; } + +std::ostream& operator<<(std::ostream& s, const String& in) { return s << in.c_str(); } + +Contains::Contains(const String& str) : string(str) { } + +bool Contains::checkWith(const String& other) const { + return strstr(other.c_str(), string.c_str()) != nullptr; +} + +String toString(const Contains& in) { + return "Contains( " + in.string + " )"; +} + +bool operator==(const String& lhs, const Contains& rhs) { return rhs.checkWith(lhs); } +bool operator==(const Contains& lhs, const String& rhs) { return lhs.checkWith(rhs); } +bool operator!=(const String& lhs, const Contains& rhs) { return !rhs.checkWith(lhs); } +bool operator!=(const Contains& lhs, const String& rhs) { return !lhs.checkWith(rhs); } + +namespace { + void color_to_stream(std::ostream&, Color::Enum) DOCTEST_BRANCH_ON_DISABLED({}, ;) +} // namespace + +namespace Color { + std::ostream& operator<<(std::ostream& s, Color::Enum code) { + color_to_stream(s, code); + return s; + } +} // namespace Color + +// clang-format off +const char* assertString(assertType::Enum at) { + DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4061) // enum 'x' in switch of enum 'y' is not explicitly handled + #define DOCTEST_GENERATE_ASSERT_TYPE_CASE(assert_type) case assertType::DT_ ## assert_type: return #assert_type + #define DOCTEST_GENERATE_ASSERT_TYPE_CASES(assert_type) \ + DOCTEST_GENERATE_ASSERT_TYPE_CASE(WARN_ ## assert_type); \ + DOCTEST_GENERATE_ASSERT_TYPE_CASE(CHECK_ ## assert_type); \ + DOCTEST_GENERATE_ASSERT_TYPE_CASE(REQUIRE_ ## assert_type) + switch(at) { + DOCTEST_GENERATE_ASSERT_TYPE_CASE(WARN); + DOCTEST_GENERATE_ASSERT_TYPE_CASE(CHECK); + DOCTEST_GENERATE_ASSERT_TYPE_CASE(REQUIRE); + + DOCTEST_GENERATE_ASSERT_TYPE_CASES(FALSE); + + DOCTEST_GENERATE_ASSERT_TYPE_CASES(THROWS); + + DOCTEST_GENERATE_ASSERT_TYPE_CASES(THROWS_AS); + + DOCTEST_GENERATE_ASSERT_TYPE_CASES(THROWS_WITH); + + DOCTEST_GENERATE_ASSERT_TYPE_CASES(THROWS_WITH_AS); + + DOCTEST_GENERATE_ASSERT_TYPE_CASES(NOTHROW); + + DOCTEST_GENERATE_ASSERT_TYPE_CASES(EQ); + DOCTEST_GENERATE_ASSERT_TYPE_CASES(NE); + DOCTEST_GENERATE_ASSERT_TYPE_CASES(GT); + DOCTEST_GENERATE_ASSERT_TYPE_CASES(LT); + DOCTEST_GENERATE_ASSERT_TYPE_CASES(GE); + DOCTEST_GENERATE_ASSERT_TYPE_CASES(LE); + + DOCTEST_GENERATE_ASSERT_TYPE_CASES(UNARY); + DOCTEST_GENERATE_ASSERT_TYPE_CASES(UNARY_FALSE); + + default: DOCTEST_INTERNAL_ERROR("Tried stringifying invalid assert type!"); + } + DOCTEST_MSVC_SUPPRESS_WARNING_POP +} +// clang-format on + +const char* failureString(assertType::Enum at) { + if(at & assertType::is_warn) //!OCLINT bitwise operator in conditional + return "WARNING"; + if(at & assertType::is_check) //!OCLINT bitwise operator in conditional + return "ERROR"; + if(at & assertType::is_require) //!OCLINT bitwise operator in conditional + return "FATAL ERROR"; + return ""; +} + +DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wnull-dereference") +DOCTEST_GCC_SUPPRESS_WARNING_WITH_PUSH("-Wnull-dereference") +// depending on the current options this will remove the path of filenames +const char* skipPathFromFilename(const char* file) { +#ifndef DOCTEST_CONFIG_DISABLE + if(getContextOptions()->no_path_in_filenames) { + auto back = std::strrchr(file, '\\'); + auto forward = std::strrchr(file, '/'); + if(back || forward) { + if(back > forward) + forward = back; + return forward + 1; + } + } +#endif // DOCTEST_CONFIG_DISABLE + return file; +} +DOCTEST_CLANG_SUPPRESS_WARNING_POP +DOCTEST_GCC_SUPPRESS_WARNING_POP + +bool SubcaseSignature::operator==(const SubcaseSignature& other) const { + return m_line == other.m_line + && std::strcmp(m_file, other.m_file) == 0 + && m_name == other.m_name; +} + +bool SubcaseSignature::operator<(const SubcaseSignature& other) const { + if(m_line != other.m_line) + return m_line < other.m_line; + if(std::strcmp(m_file, other.m_file) != 0) + return std::strcmp(m_file, other.m_file) < 0; + return m_name.compare(other.m_name) < 0; +} + +DOCTEST_DEFINE_INTERFACE(IContextScope) + +namespace detail { + void filldata::fill(std::ostream* stream, const void* in) { + if (in) { *stream << in; } + else { *stream << "nullptr"; } + } + + template + String toStreamLit(T t) { + std::ostream* os = tlssPush(); + os->operator<<(t); + return tlssPop(); + } +} + +#ifdef DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING +String toString(const char* in) { return String("\"") + (in ? in : "{null string}") + "\""; } +#endif // DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING + +#if DOCTEST_MSVC >= DOCTEST_COMPILER(19, 20, 0) +// see this issue on why this is needed: https://github.com/doctest/doctest/issues/183 +String toString(const std::string& in) { return in.c_str(); } +#endif // VS 2019 + +String toString(String in) { return in; } + +String toString(std::nullptr_t) { return "nullptr"; } + +String toString(bool in) { return in ? "true" : "false"; } + +String toString(float in) { return toStreamLit(in); } +String toString(double in) { return toStreamLit(in); } +String toString(double long in) { return toStreamLit(in); } + +String toString(char in) { return toStreamLit(static_cast(in)); } +String toString(char signed in) { return toStreamLit(static_cast(in)); } +String toString(char unsigned in) { return toStreamLit(static_cast(in)); } +String toString(short in) { return toStreamLit(in); } +String toString(short unsigned in) { return toStreamLit(in); } +String toString(signed in) { return toStreamLit(in); } +String toString(unsigned in) { return toStreamLit(in); } +String toString(long in) { return toStreamLit(in); } +String toString(long unsigned in) { return toStreamLit(in); } +String toString(long long in) { return toStreamLit(in); } +String toString(long long unsigned in) { return toStreamLit(in); } + +Approx::Approx(double value) + : m_epsilon(static_cast(std::numeric_limits::epsilon()) * 100) + , m_scale(1.0) + , m_value(value) {} + +Approx Approx::operator()(double value) const { + Approx approx(value); + approx.epsilon(m_epsilon); + approx.scale(m_scale); + return approx; +} + +Approx& Approx::epsilon(double newEpsilon) { + m_epsilon = newEpsilon; + return *this; +} +Approx& Approx::scale(double newScale) { + m_scale = newScale; + return *this; +} + +bool operator==(double lhs, const Approx& rhs) { + // Thanks to Richard Harris for his help refining this formula + return std::fabs(lhs - rhs.m_value) < + rhs.m_epsilon * (rhs.m_scale + std::max(std::fabs(lhs), std::fabs(rhs.m_value))); +} +bool operator==(const Approx& lhs, double rhs) { return operator==(rhs, lhs); } +bool operator!=(double lhs, const Approx& rhs) { return !operator==(lhs, rhs); } +bool operator!=(const Approx& lhs, double rhs) { return !operator==(rhs, lhs); } +bool operator<=(double lhs, const Approx& rhs) { return lhs < rhs.m_value || lhs == rhs; } +bool operator<=(const Approx& lhs, double rhs) { return lhs.m_value < rhs || lhs == rhs; } +bool operator>=(double lhs, const Approx& rhs) { return lhs > rhs.m_value || lhs == rhs; } +bool operator>=(const Approx& lhs, double rhs) { return lhs.m_value > rhs || lhs == rhs; } +bool operator<(double lhs, const Approx& rhs) { return lhs < rhs.m_value && lhs != rhs; } +bool operator<(const Approx& lhs, double rhs) { return lhs.m_value < rhs && lhs != rhs; } +bool operator>(double lhs, const Approx& rhs) { return lhs > rhs.m_value && lhs != rhs; } +bool operator>(const Approx& lhs, double rhs) { return lhs.m_value > rhs && lhs != rhs; } + +String toString(const Approx& in) { + return "Approx( " + doctest::toString(in.m_value) + " )"; +} +const ContextOptions* getContextOptions() { return DOCTEST_BRANCH_ON_DISABLED(nullptr, g_cs); } + +DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4738) +template +IsNaN::operator bool() const { + return std::isnan(value) ^ flipped; +} +DOCTEST_MSVC_SUPPRESS_WARNING_POP +template struct DOCTEST_INTERFACE_DEF IsNaN; +template struct DOCTEST_INTERFACE_DEF IsNaN; +template struct DOCTEST_INTERFACE_DEF IsNaN; +template +String toString(IsNaN in) { return String(in.flipped ? "! " : "") + "IsNaN( " + doctest::toString(in.value) + " )"; } +String toString(IsNaN in) { return toString(in); } +String toString(IsNaN in) { return toString(in); } +String toString(IsNaN in) { return toString(in); } + +} // namespace doctest + +#ifdef DOCTEST_CONFIG_DISABLE +namespace doctest { +Context::Context(int, const char* const*) {} +Context::~Context() = default; +void Context::applyCommandLine(int, const char* const*) {} +void Context::addFilter(const char*, const char*) {} +void Context::clearFilters() {} +void Context::setOption(const char*, bool) {} +void Context::setOption(const char*, int) {} +void Context::setOption(const char*, const char*) {} +bool Context::shouldExit() { return false; } +void Context::setAsDefaultForAssertsOutOfTestCases() {} +void Context::setAssertHandler(detail::assert_handler) {} +void Context::setCout(std::ostream*) {} +int Context::run() { return 0; } + +int IReporter::get_num_active_contexts() { return 0; } +const IContextScope* const* IReporter::get_active_contexts() { return nullptr; } +int IReporter::get_num_stringified_contexts() { return 0; } +const String* IReporter::get_stringified_contexts() { return nullptr; } + +int registerReporter(const char*, int, IReporter*) { return 0; } + +} // namespace doctest +#else // DOCTEST_CONFIG_DISABLE + +#if !defined(DOCTEST_CONFIG_COLORS_NONE) +#if !defined(DOCTEST_CONFIG_COLORS_WINDOWS) && !defined(DOCTEST_CONFIG_COLORS_ANSI) +#ifdef DOCTEST_PLATFORM_WINDOWS +#define DOCTEST_CONFIG_COLORS_WINDOWS +#else // linux +#define DOCTEST_CONFIG_COLORS_ANSI +#endif // platform +#endif // DOCTEST_CONFIG_COLORS_WINDOWS && DOCTEST_CONFIG_COLORS_ANSI +#endif // DOCTEST_CONFIG_COLORS_NONE + +namespace doctest_detail_test_suite_ns { +// holds the current test suite +doctest::detail::TestSuite& getCurrentTestSuite() { + static doctest::detail::TestSuite data{}; + return data; +} +} // namespace doctest_detail_test_suite_ns + +namespace doctest { +namespace { + // the int (priority) is part of the key for automatic sorting - sadly one can register a + // reporter with a duplicate name and a different priority but hopefully that won't happen often :| + using reporterMap = std::map, reporterCreatorFunc>; + + reporterMap& getReporters() { + static reporterMap data; + return data; + } + reporterMap& getListeners() { + static reporterMap data; + return data; + } +} // namespace +namespace detail { +#define DOCTEST_ITERATE_THROUGH_REPORTERS(function, ...) \ + for(auto& curr_rep : g_cs->reporters_currently_used) \ + curr_rep->function(__VA_ARGS__) + + bool checkIfShouldThrow(assertType::Enum at) { + if(at & assertType::is_require) //!OCLINT bitwise operator in conditional + return true; + + if((at & assertType::is_check) //!OCLINT bitwise operator in conditional + && getContextOptions()->abort_after > 0 && + (g_cs->numAssertsFailed + g_cs->numAssertsFailedCurrentTest_atomic) >= + getContextOptions()->abort_after) + return true; + + return false; + } + +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS + DOCTEST_NORETURN void throwException() { + g_cs->shouldLogCurrentException = false; + throw TestFailureException(); // NOLINT(hicpp-exception-baseclass) + } +#else // DOCTEST_CONFIG_NO_EXCEPTIONS + void throwException() {} +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS +} // namespace detail + +namespace { + using namespace detail; + // matching of a string against a wildcard mask (case sensitivity configurable) taken from + // https://www.codeproject.com/Articles/1088/Wildcard-string-compare-globbing + int wildcmp(const char* str, const char* wild, bool caseSensitive) { + const char* cp = str; + const char* mp = wild; + + while((*str) && (*wild != '*')) { + if((caseSensitive ? (*wild != *str) : (tolower(*wild) != tolower(*str))) && + (*wild != '?')) { + return 0; + } + wild++; + str++; + } + + while(*str) { + if(*wild == '*') { + if(!*++wild) { + return 1; + } + mp = wild; + cp = str + 1; + } else if((caseSensitive ? (*wild == *str) : (tolower(*wild) == tolower(*str))) || + (*wild == '?')) { + wild++; + str++; + } else { + wild = mp; //!OCLINT parameter reassignment + str = cp++; //!OCLINT parameter reassignment + } + } + + while(*wild == '*') { + wild++; + } + return !*wild; + } + + // checks if the name matches any of the filters (and can be configured what to do when empty) + bool matchesAny(const char* name, const std::vector& filters, bool matchEmpty, + bool caseSensitive) { + if (filters.empty() && matchEmpty) + return true; + for (auto& curr : filters) + if (wildcmp(name, curr.c_str(), caseSensitive)) + return true; + return false; + } + + DOCTEST_NO_SANITIZE_INTEGER + unsigned long long hash(unsigned long long a, unsigned long long b) { + return (a << 5) + b; + } + + // C string hash function (djb2) - taken from http://www.cse.yorku.ca/~oz/hash.html + DOCTEST_NO_SANITIZE_INTEGER + unsigned long long hash(const char* str) { + unsigned long long hash = 5381; + char c; + while ((c = *str++)) + hash = ((hash << 5) + hash) + c; // hash * 33 + c + return hash; + } + + unsigned long long hash(const SubcaseSignature& sig) { + return hash(hash(hash(sig.m_file), hash(sig.m_name.c_str())), sig.m_line); + } + + unsigned long long hash(const std::vector& sigs, size_t count) { + unsigned long long running = 0; + auto end = sigs.begin() + count; + for (auto it = sigs.begin(); it != end; it++) { + running = hash(running, hash(*it)); + } + return running; + } + + unsigned long long hash(const std::vector& sigs) { + unsigned long long running = 0; + for (const SubcaseSignature& sig : sigs) { + running = hash(running, hash(sig)); + } + return running; + } +} // namespace +namespace detail { + bool Subcase::checkFilters() { + if (g_cs->subcaseStack.size() < size_t(g_cs->subcase_filter_levels)) { + if (!matchesAny(m_signature.m_name.c_str(), g_cs->filters[6], true, g_cs->case_sensitive)) + return true; + if (matchesAny(m_signature.m_name.c_str(), g_cs->filters[7], false, g_cs->case_sensitive)) + return true; + } + return false; + } + + Subcase::Subcase(const String& name, const char* file, int line) + : m_signature({name, file, line}) { + if (!g_cs->reachedLeaf) { + if (g_cs->nextSubcaseStack.size() <= g_cs->subcaseStack.size() + || g_cs->nextSubcaseStack[g_cs->subcaseStack.size()] == m_signature) { + // Going down. + if (checkFilters()) { return; } + + g_cs->subcaseStack.push_back(m_signature); + g_cs->currentSubcaseDepth++; + m_entered = true; + DOCTEST_ITERATE_THROUGH_REPORTERS(subcase_start, m_signature); + } + } else { + if (g_cs->subcaseStack[g_cs->currentSubcaseDepth] == m_signature) { + // This subcase is reentered via control flow. + g_cs->currentSubcaseDepth++; + m_entered = true; + DOCTEST_ITERATE_THROUGH_REPORTERS(subcase_start, m_signature); + } else if (g_cs->nextSubcaseStack.size() <= g_cs->currentSubcaseDepth + && g_cs->fullyTraversedSubcases.find(hash(hash(g_cs->subcaseStack, g_cs->currentSubcaseDepth), hash(m_signature))) + == g_cs->fullyTraversedSubcases.end()) { + if (checkFilters()) { return; } + // This subcase is part of the one to be executed next. + g_cs->nextSubcaseStack.clear(); + g_cs->nextSubcaseStack.insert(g_cs->nextSubcaseStack.end(), + g_cs->subcaseStack.begin(), g_cs->subcaseStack.begin() + g_cs->currentSubcaseDepth); + g_cs->nextSubcaseStack.push_back(m_signature); + } + } + } + + DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4996) // std::uncaught_exception is deprecated in C++17 + DOCTEST_GCC_SUPPRESS_WARNING_WITH_PUSH("-Wdeprecated-declarations") + DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wdeprecated-declarations") + + Subcase::~Subcase() { + if (m_entered) { + g_cs->currentSubcaseDepth--; + + if (!g_cs->reachedLeaf) { + // Leaf. + g_cs->fullyTraversedSubcases.insert(hash(g_cs->subcaseStack)); + g_cs->nextSubcaseStack.clear(); + g_cs->reachedLeaf = true; + } else if (g_cs->nextSubcaseStack.empty()) { + // All children are finished. + g_cs->fullyTraversedSubcases.insert(hash(g_cs->subcaseStack)); + } + +#if defined(__cpp_lib_uncaught_exceptions) && __cpp_lib_uncaught_exceptions >= 201411L && (!defined(__MAC_OS_X_VERSION_MIN_REQUIRED) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200) + if(std::uncaught_exceptions() > 0 +#else + if(std::uncaught_exception() +#endif + && g_cs->shouldLogCurrentException) { + DOCTEST_ITERATE_THROUGH_REPORTERS( + test_case_exception, {"exception thrown in subcase - will translate later " + "when the whole test case has been exited (cannot " + "translate while there is an active exception)", + false}); + g_cs->shouldLogCurrentException = false; + } + + DOCTEST_ITERATE_THROUGH_REPORTERS(subcase_end, DOCTEST_EMPTY); + } + } + + DOCTEST_CLANG_SUPPRESS_WARNING_POP + DOCTEST_GCC_SUPPRESS_WARNING_POP + DOCTEST_MSVC_SUPPRESS_WARNING_POP + + Subcase::operator bool() const { return m_entered; } + + Result::Result(bool passed, const String& decomposition) + : m_passed(passed) + , m_decomp(decomposition) {} + + ExpressionDecomposer::ExpressionDecomposer(assertType::Enum at) + : m_at(at) {} + + TestSuite& TestSuite::operator*(const char* in) { + m_test_suite = in; + return *this; + } + + TestCase::TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite, + const String& type, int template_id) { + m_file = file; + m_line = line; + m_name = nullptr; // will be later overridden in operator* + m_test_suite = test_suite.m_test_suite; + m_description = test_suite.m_description; + m_skip = test_suite.m_skip; + m_no_breaks = test_suite.m_no_breaks; + m_no_output = test_suite.m_no_output; + m_may_fail = test_suite.m_may_fail; + m_should_fail = test_suite.m_should_fail; + m_expected_failures = test_suite.m_expected_failures; + m_timeout = test_suite.m_timeout; + + m_test = test; + m_type = type; + m_template_id = template_id; + } + + TestCase::TestCase(const TestCase& other) + : TestCaseData() { + *this = other; + } + + DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(26434) // hides a non-virtual function + TestCase& TestCase::operator=(const TestCase& other) { + TestCaseData::operator=(other); + m_test = other.m_test; + m_type = other.m_type; + m_template_id = other.m_template_id; + m_full_name = other.m_full_name; + + if(m_template_id != -1) + m_name = m_full_name.c_str(); + return *this; + } + DOCTEST_MSVC_SUPPRESS_WARNING_POP + + TestCase& TestCase::operator*(const char* in) { + m_name = in; + // make a new name with an appended type for templated test case + if(m_template_id != -1) { + m_full_name = String(m_name) + "<" + m_type + ">"; + // redirect the name to point to the newly constructed full name + m_name = m_full_name.c_str(); + } + return *this; + } + + bool TestCase::operator<(const TestCase& other) const { + // this will be used only to differentiate between test cases - not relevant for sorting + if(m_line != other.m_line) + return m_line < other.m_line; + const int name_cmp = strcmp(m_name, other.m_name); + if(name_cmp != 0) + return name_cmp < 0; + const int file_cmp = m_file.compare(other.m_file); + if(file_cmp != 0) + return file_cmp < 0; + return m_template_id < other.m_template_id; + } + + // all the registered tests + std::set& getRegisteredTests() { + static std::set data; + return data; + } +} // namespace detail +namespace { + using namespace detail; + // for sorting tests by file/line + bool fileOrderComparator(const TestCase* lhs, const TestCase* rhs) { + // this is needed because MSVC gives different case for drive letters + // for __FILE__ when evaluated in a header and a source file + const int res = lhs->m_file.compare(rhs->m_file, bool(DOCTEST_MSVC)); + if(res != 0) + return res < 0; + if(lhs->m_line != rhs->m_line) + return lhs->m_line < rhs->m_line; + return lhs->m_template_id < rhs->m_template_id; + } + + // for sorting tests by suite/file/line + bool suiteOrderComparator(const TestCase* lhs, const TestCase* rhs) { + const int res = std::strcmp(lhs->m_test_suite, rhs->m_test_suite); + if(res != 0) + return res < 0; + return fileOrderComparator(lhs, rhs); + } + + // for sorting tests by name/suite/file/line + bool nameOrderComparator(const TestCase* lhs, const TestCase* rhs) { + const int res = std::strcmp(lhs->m_name, rhs->m_name); + if(res != 0) + return res < 0; + return suiteOrderComparator(lhs, rhs); + } + + DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wdeprecated-declarations") + void color_to_stream(std::ostream& s, Color::Enum code) { + static_cast(s); // for DOCTEST_CONFIG_COLORS_NONE or DOCTEST_CONFIG_COLORS_WINDOWS + static_cast(code); // for DOCTEST_CONFIG_COLORS_NONE +#ifdef DOCTEST_CONFIG_COLORS_ANSI + if(g_no_colors || + (isatty(STDOUT_FILENO) == false && getContextOptions()->force_colors == false)) + return; + + auto col = ""; + // clang-format off + switch(code) { //!OCLINT missing break in switch statement / unnecessary default statement in covered switch statement + case Color::Red: col = "[0;31m"; break; + case Color::Green: col = "[0;32m"; break; + case Color::Blue: col = "[0;34m"; break; + case Color::Cyan: col = "[0;36m"; break; + case Color::Yellow: col = "[0;33m"; break; + case Color::Grey: col = "[1;30m"; break; + case Color::LightGrey: col = "[0;37m"; break; + case Color::BrightRed: col = "[1;31m"; break; + case Color::BrightGreen: col = "[1;32m"; break; + case Color::BrightWhite: col = "[1;37m"; break; + case Color::Bright: // invalid + case Color::None: + case Color::White: + default: col = "[0m"; + } + // clang-format on + s << "\033" << col; +#endif // DOCTEST_CONFIG_COLORS_ANSI + +#ifdef DOCTEST_CONFIG_COLORS_WINDOWS + if(g_no_colors || + (_isatty(_fileno(stdout)) == false && getContextOptions()->force_colors == false)) + return; + + static struct ConsoleHelper { + HANDLE stdoutHandle; + WORD origFgAttrs; + WORD origBgAttrs; + + ConsoleHelper() { + stdoutHandle = GetStdHandle(STD_OUTPUT_HANDLE); + CONSOLE_SCREEN_BUFFER_INFO csbiInfo; + GetConsoleScreenBufferInfo(stdoutHandle, &csbiInfo); + origFgAttrs = csbiInfo.wAttributes & ~(BACKGROUND_GREEN | BACKGROUND_RED | + BACKGROUND_BLUE | BACKGROUND_INTENSITY); + origBgAttrs = csbiInfo.wAttributes & ~(FOREGROUND_GREEN | FOREGROUND_RED | + FOREGROUND_BLUE | FOREGROUND_INTENSITY); + } + } ch; + +#define DOCTEST_SET_ATTR(x) SetConsoleTextAttribute(ch.stdoutHandle, x | ch.origBgAttrs) + + // clang-format off + switch (code) { + case Color::White: DOCTEST_SET_ATTR(FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_BLUE); break; + case Color::Red: DOCTEST_SET_ATTR(FOREGROUND_RED); break; + case Color::Green: DOCTEST_SET_ATTR(FOREGROUND_GREEN); break; + case Color::Blue: DOCTEST_SET_ATTR(FOREGROUND_BLUE); break; + case Color::Cyan: DOCTEST_SET_ATTR(FOREGROUND_BLUE | FOREGROUND_GREEN); break; + case Color::Yellow: DOCTEST_SET_ATTR(FOREGROUND_RED | FOREGROUND_GREEN); break; + case Color::Grey: DOCTEST_SET_ATTR(0); break; + case Color::LightGrey: DOCTEST_SET_ATTR(FOREGROUND_INTENSITY); break; + case Color::BrightRed: DOCTEST_SET_ATTR(FOREGROUND_INTENSITY | FOREGROUND_RED); break; + case Color::BrightGreen: DOCTEST_SET_ATTR(FOREGROUND_INTENSITY | FOREGROUND_GREEN); break; + case Color::BrightWhite: DOCTEST_SET_ATTR(FOREGROUND_INTENSITY | FOREGROUND_GREEN | FOREGROUND_RED | FOREGROUND_BLUE); break; + case Color::None: + case Color::Bright: // invalid + default: DOCTEST_SET_ATTR(ch.origFgAttrs); + } + // clang-format on +#endif // DOCTEST_CONFIG_COLORS_WINDOWS + } + DOCTEST_CLANG_SUPPRESS_WARNING_POP + + std::vector& getExceptionTranslators() { + static std::vector data; + return data; + } + + String translateActiveException() { +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS + String res; + auto& translators = getExceptionTranslators(); + for(auto& curr : translators) + if(curr->translate(res)) + return res; + // clang-format off + DOCTEST_GCC_SUPPRESS_WARNING_WITH_PUSH("-Wcatch-value") + try { + throw; + } catch(std::exception& ex) { + return ex.what(); + } catch(std::string& msg) { + return msg.c_str(); + } catch(const char* msg) { + return msg; + } catch(...) { + return "unknown exception"; + } + DOCTEST_GCC_SUPPRESS_WARNING_POP +// clang-format on +#else // DOCTEST_CONFIG_NO_EXCEPTIONS + return ""; +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS + } +} // namespace + +namespace detail { + // used by the macros for registering tests + int regTest(const TestCase& tc) { + getRegisteredTests().insert(tc); + return 0; + } + + // sets the current test suite + int setTestSuite(const TestSuite& ts) { + doctest_detail_test_suite_ns::getCurrentTestSuite() = ts; + return 0; + } + +#ifdef DOCTEST_IS_DEBUGGER_ACTIVE + bool isDebuggerActive() { return DOCTEST_IS_DEBUGGER_ACTIVE(); } +#else // DOCTEST_IS_DEBUGGER_ACTIVE +#ifdef DOCTEST_PLATFORM_LINUX + class ErrnoGuard { + public: + ErrnoGuard() : m_oldErrno(errno) {} + ~ErrnoGuard() { errno = m_oldErrno; } + private: + int m_oldErrno; + }; + // See the comments in Catch2 for the reasoning behind this implementation: + // https://github.com/catchorg/Catch2/blob/v2.13.1/include/internal/catch_debugger.cpp#L79-L102 + bool isDebuggerActive() { + ErrnoGuard guard; + std::ifstream in("/proc/self/status"); + for(std::string line; std::getline(in, line);) { + static const int PREFIX_LEN = 11; + if(line.compare(0, PREFIX_LEN, "TracerPid:\t") == 0) { + return line.length() > PREFIX_LEN && line[PREFIX_LEN] != '0'; + } + } + return false; + } +#elif defined(DOCTEST_PLATFORM_MAC) + // The following function is taken directly from the following technical note: + // https://developer.apple.com/library/archive/qa/qa1361/_index.html + // Returns true if the current process is being debugged (either + // running under the debugger or has a debugger attached post facto). + bool isDebuggerActive() { + int mib[4]; + kinfo_proc info; + size_t size; + // Initialize the flags so that, if sysctl fails for some bizarre + // reason, we get a predictable result. + info.kp_proc.p_flag = 0; + // Initialize mib, which tells sysctl the info we want, in this case + // we're looking for information about a specific process ID. + mib[0] = CTL_KERN; + mib[1] = KERN_PROC; + mib[2] = KERN_PROC_PID; + mib[3] = getpid(); + // Call sysctl. + size = sizeof(info); + if(sysctl(mib, DOCTEST_COUNTOF(mib), &info, &size, 0, 0) != 0) { + std::cerr << "\nCall to sysctl failed - unable to determine if debugger is active **\n"; + return false; + } + // We're being debugged if the P_TRACED flag is set. + return ((info.kp_proc.p_flag & P_TRACED) != 0); + } +#elif DOCTEST_MSVC || defined(__MINGW32__) || defined(__MINGW64__) + bool isDebuggerActive() { return ::IsDebuggerPresent() != 0; } +#else + bool isDebuggerActive() { return false; } +#endif // Platform +#endif // DOCTEST_IS_DEBUGGER_ACTIVE + + void registerExceptionTranslatorImpl(const IExceptionTranslator* et) { + if(std::find(getExceptionTranslators().begin(), getExceptionTranslators().end(), et) == + getExceptionTranslators().end()) + getExceptionTranslators().push_back(et); + } + + DOCTEST_THREAD_LOCAL std::vector g_infoContexts; // for logging with INFO() + + ContextScopeBase::ContextScopeBase() { + g_infoContexts.push_back(this); + } + + ContextScopeBase::ContextScopeBase(ContextScopeBase&& other) noexcept { + if (other.need_to_destroy) { + other.destroy(); + } + other.need_to_destroy = false; + g_infoContexts.push_back(this); + } + + DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4996) // std::uncaught_exception is deprecated in C++17 + DOCTEST_GCC_SUPPRESS_WARNING_WITH_PUSH("-Wdeprecated-declarations") + DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wdeprecated-declarations") + + // destroy cannot be inlined into the destructor because that would mean calling stringify after + // ContextScope has been destroyed (base class destructors run after derived class destructors). + // Instead, ContextScope calls this method directly from its destructor. + void ContextScopeBase::destroy() { +#if defined(__cpp_lib_uncaught_exceptions) && __cpp_lib_uncaught_exceptions >= 201411L && (!defined(__MAC_OS_X_VERSION_MIN_REQUIRED) || __MAC_OS_X_VERSION_MIN_REQUIRED >= 101200) + if(std::uncaught_exceptions() > 0) { +#else + if(std::uncaught_exception()) { +#endif + std::ostringstream s; + this->stringify(&s); + g_cs->stringifiedContexts.push_back(s.str().c_str()); + } + g_infoContexts.pop_back(); + } + + DOCTEST_CLANG_SUPPRESS_WARNING_POP + DOCTEST_GCC_SUPPRESS_WARNING_POP + DOCTEST_MSVC_SUPPRESS_WARNING_POP +} // namespace detail +namespace { + using namespace detail; + +#if !defined(DOCTEST_CONFIG_POSIX_SIGNALS) && !defined(DOCTEST_CONFIG_WINDOWS_SEH) + struct FatalConditionHandler + { + static void reset() {} + static void allocateAltStackMem() {} + static void freeAltStackMem() {} + }; +#else // DOCTEST_CONFIG_POSIX_SIGNALS || DOCTEST_CONFIG_WINDOWS_SEH + + void reportFatal(const std::string&); + +#ifdef DOCTEST_PLATFORM_WINDOWS + + struct SignalDefs + { + DWORD id; + const char* name; + }; + // There is no 1-1 mapping between signals and windows exceptions. + // Windows can easily distinguish between SO and SigSegV, + // but SigInt, SigTerm, etc are handled differently. + SignalDefs signalDefs[] = { + {static_cast(EXCEPTION_ILLEGAL_INSTRUCTION), + "SIGILL - Illegal instruction signal"}, + {static_cast(EXCEPTION_STACK_OVERFLOW), "SIGSEGV - Stack overflow"}, + {static_cast(EXCEPTION_ACCESS_VIOLATION), + "SIGSEGV - Segmentation violation signal"}, + {static_cast(EXCEPTION_INT_DIVIDE_BY_ZERO), "Divide by zero error"}, + }; + + struct FatalConditionHandler + { + static LONG CALLBACK handleException(PEXCEPTION_POINTERS ExceptionInfo) { + // Multiple threads may enter this filter/handler at once. We want the error message to be printed on the + // console just once no matter how many threads have crashed. + DOCTEST_DECLARE_STATIC_MUTEX(mutex) + static bool execute = true; + { + DOCTEST_LOCK_MUTEX(mutex) + if(execute) { + bool reported = false; + for(size_t i = 0; i < DOCTEST_COUNTOF(signalDefs); ++i) { + if(ExceptionInfo->ExceptionRecord->ExceptionCode == signalDefs[i].id) { + reportFatal(signalDefs[i].name); + reported = true; + break; + } + } + if(reported == false) + reportFatal("Unhandled SEH exception caught"); + if(isDebuggerActive() && !g_cs->no_breaks) + DOCTEST_BREAK_INTO_DEBUGGER(); + } + execute = false; + } + std::exit(EXIT_FAILURE); + } + + static void allocateAltStackMem() {} + static void freeAltStackMem() {} + + FatalConditionHandler() { + isSet = true; + // 32k seems enough for doctest to handle stack overflow, + // but the value was found experimentally, so there is no strong guarantee + guaranteeSize = 32 * 1024; + // Register an unhandled exception filter + previousTop = SetUnhandledExceptionFilter(handleException); + // Pass in guarantee size to be filled + SetThreadStackGuarantee(&guaranteeSize); + + // On Windows uncaught exceptions from another thread, exceptions from + // destructors, or calls to std::terminate are not a SEH exception + + // The terminal handler gets called when: + // - std::terminate is called FROM THE TEST RUNNER THREAD + // - an exception is thrown from a destructor FROM THE TEST RUNNER THREAD + original_terminate_handler = std::get_terminate(); + std::set_terminate([]() DOCTEST_NOEXCEPT { + reportFatal("Terminate handler called"); + if(isDebuggerActive() && !g_cs->no_breaks) + DOCTEST_BREAK_INTO_DEBUGGER(); + std::exit(EXIT_FAILURE); // explicitly exit - otherwise the SIGABRT handler may be called as well + }); + + // SIGABRT is raised when: + // - std::terminate is called FROM A DIFFERENT THREAD + // - an exception is thrown from a destructor FROM A DIFFERENT THREAD + // - an uncaught exception is thrown FROM A DIFFERENT THREAD + prev_sigabrt_handler = std::signal(SIGABRT, [](int signal) DOCTEST_NOEXCEPT { + if(signal == SIGABRT) { + reportFatal("SIGABRT - Abort (abnormal termination) signal"); + if(isDebuggerActive() && !g_cs->no_breaks) + DOCTEST_BREAK_INTO_DEBUGGER(); + std::exit(EXIT_FAILURE); + } + }); + + // The following settings are taken from google test, and more + // specifically from UnitTest::Run() inside of gtest.cc + + // the user does not want to see pop-up dialogs about crashes + prev_error_mode_1 = SetErrorMode(SEM_FAILCRITICALERRORS | SEM_NOALIGNMENTFAULTEXCEPT | + SEM_NOGPFAULTERRORBOX | SEM_NOOPENFILEERRORBOX); + // This forces the abort message to go to stderr in all circumstances. + prev_error_mode_2 = _set_error_mode(_OUT_TO_STDERR); + // In the debug version, Visual Studio pops up a separate dialog + // offering a choice to debug the aborted program - we want to disable that. + prev_abort_behavior = _set_abort_behavior(0x0, _WRITE_ABORT_MSG | _CALL_REPORTFAULT); + // In debug mode, the Windows CRT can crash with an assertion over invalid + // input (e.g. passing an invalid file descriptor). The default handling + // for these assertions is to pop up a dialog and wait for user input. + // Instead ask the CRT to dump such assertions to stderr non-interactively. + prev_report_mode = _CrtSetReportMode(_CRT_ASSERT, _CRTDBG_MODE_FILE | _CRTDBG_MODE_DEBUG); + prev_report_file = _CrtSetReportFile(_CRT_ASSERT, _CRTDBG_FILE_STDERR); + } + + static void reset() { + if(isSet) { + // Unregister handler and restore the old guarantee + SetUnhandledExceptionFilter(previousTop); + SetThreadStackGuarantee(&guaranteeSize); + std::set_terminate(original_terminate_handler); + std::signal(SIGABRT, prev_sigabrt_handler); + SetErrorMode(prev_error_mode_1); + _set_error_mode(prev_error_mode_2); + _set_abort_behavior(prev_abort_behavior, _WRITE_ABORT_MSG | _CALL_REPORTFAULT); + static_cast(_CrtSetReportMode(_CRT_ASSERT, prev_report_mode)); + static_cast(_CrtSetReportFile(_CRT_ASSERT, prev_report_file)); + isSet = false; + } + } + + ~FatalConditionHandler() { reset(); } + + private: + static UINT prev_error_mode_1; + static int prev_error_mode_2; + static unsigned int prev_abort_behavior; + static int prev_report_mode; + static _HFILE prev_report_file; + static void (DOCTEST_CDECL *prev_sigabrt_handler)(int); + static std::terminate_handler original_terminate_handler; + static bool isSet; + static ULONG guaranteeSize; + static LPTOP_LEVEL_EXCEPTION_FILTER previousTop; + }; + + UINT FatalConditionHandler::prev_error_mode_1; + int FatalConditionHandler::prev_error_mode_2; + unsigned int FatalConditionHandler::prev_abort_behavior; + int FatalConditionHandler::prev_report_mode; + _HFILE FatalConditionHandler::prev_report_file; + void (DOCTEST_CDECL *FatalConditionHandler::prev_sigabrt_handler)(int); + std::terminate_handler FatalConditionHandler::original_terminate_handler; + bool FatalConditionHandler::isSet = false; + ULONG FatalConditionHandler::guaranteeSize = 0; + LPTOP_LEVEL_EXCEPTION_FILTER FatalConditionHandler::previousTop = nullptr; + +#else // DOCTEST_PLATFORM_WINDOWS + + struct SignalDefs + { + int id; + const char* name; + }; + SignalDefs signalDefs[] = {{SIGINT, "SIGINT - Terminal interrupt signal"}, + {SIGILL, "SIGILL - Illegal instruction signal"}, + {SIGFPE, "SIGFPE - Floating point error signal"}, + {SIGSEGV, "SIGSEGV - Segmentation violation signal"}, + {SIGTERM, "SIGTERM - Termination request signal"}, + {SIGABRT, "SIGABRT - Abort (abnormal termination) signal"}}; + + struct FatalConditionHandler + { + static bool isSet; + static struct sigaction oldSigActions[DOCTEST_COUNTOF(signalDefs)]; + static stack_t oldSigStack; + static size_t altStackSize; + static char* altStackMem; + + static void handleSignal(int sig) { + const char* name = ""; + for(std::size_t i = 0; i < DOCTEST_COUNTOF(signalDefs); ++i) { + SignalDefs& def = signalDefs[i]; + if(sig == def.id) { + name = def.name; + break; + } + } + reset(); + reportFatal(name); + raise(sig); + } + + static void allocateAltStackMem() { + altStackMem = new char[altStackSize]; + } + + static void freeAltStackMem() { + delete[] altStackMem; + } + + FatalConditionHandler() { + isSet = true; + stack_t sigStack; + sigStack.ss_sp = altStackMem; + sigStack.ss_size = altStackSize; + sigStack.ss_flags = 0; + sigaltstack(&sigStack, &oldSigStack); + struct sigaction sa = {}; + sa.sa_handler = handleSignal; + sa.sa_flags = SA_ONSTACK; + for(std::size_t i = 0; i < DOCTEST_COUNTOF(signalDefs); ++i) { + sigaction(signalDefs[i].id, &sa, &oldSigActions[i]); + } + } + + ~FatalConditionHandler() { reset(); } + static void reset() { + if(isSet) { + // Set signals back to previous values -- hopefully nobody overwrote them in the meantime + for(std::size_t i = 0; i < DOCTEST_COUNTOF(signalDefs); ++i) { + sigaction(signalDefs[i].id, &oldSigActions[i], nullptr); + } + // Return the old stack + sigaltstack(&oldSigStack, nullptr); + isSet = false; + } + } + }; + + bool FatalConditionHandler::isSet = false; + struct sigaction FatalConditionHandler::oldSigActions[DOCTEST_COUNTOF(signalDefs)] = {}; + stack_t FatalConditionHandler::oldSigStack = {}; + size_t FatalConditionHandler::altStackSize = 4 * SIGSTKSZ; + char* FatalConditionHandler::altStackMem = nullptr; + +#endif // DOCTEST_PLATFORM_WINDOWS +#endif // DOCTEST_CONFIG_POSIX_SIGNALS || DOCTEST_CONFIG_WINDOWS_SEH + +} // namespace + +namespace { + using namespace detail; + +#ifdef DOCTEST_PLATFORM_WINDOWS +#define DOCTEST_OUTPUT_DEBUG_STRING(text) ::OutputDebugStringA(text) +#else + // TODO: integration with XCode and other IDEs +#define DOCTEST_OUTPUT_DEBUG_STRING(text) +#endif // Platform + + void addAssert(assertType::Enum at) { + if((at & assertType::is_warn) == 0) //!OCLINT bitwise operator in conditional + g_cs->numAssertsCurrentTest_atomic++; + } + + void addFailedAssert(assertType::Enum at) { + if((at & assertType::is_warn) == 0) //!OCLINT bitwise operator in conditional + g_cs->numAssertsFailedCurrentTest_atomic++; + } + +#if defined(DOCTEST_CONFIG_POSIX_SIGNALS) || defined(DOCTEST_CONFIG_WINDOWS_SEH) + void reportFatal(const std::string& message) { + g_cs->failure_flags |= TestCaseFailureReason::Crash; + + DOCTEST_ITERATE_THROUGH_REPORTERS(test_case_exception, {message.c_str(), true}); + + while (g_cs->subcaseStack.size()) { + g_cs->subcaseStack.pop_back(); + DOCTEST_ITERATE_THROUGH_REPORTERS(subcase_end, DOCTEST_EMPTY); + } + + g_cs->finalizeTestCaseData(); + + DOCTEST_ITERATE_THROUGH_REPORTERS(test_case_end, *g_cs); + + DOCTEST_ITERATE_THROUGH_REPORTERS(test_run_end, *g_cs); + } +#endif // DOCTEST_CONFIG_POSIX_SIGNALS || DOCTEST_CONFIG_WINDOWS_SEH +} // namespace + +AssertData::AssertData(assertType::Enum at, const char* file, int line, const char* expr, + const char* exception_type, const StringContains& exception_string) + : m_test_case(g_cs->currentTest), m_at(at), m_file(file), m_line(line), m_expr(expr), + m_failed(true), m_threw(false), m_threw_as(false), m_exception_type(exception_type), + m_exception_string(exception_string) { +#if DOCTEST_MSVC + if (m_expr[0] == ' ') // this happens when variadic macros are disabled under MSVC + ++m_expr; +#endif // MSVC +} + +namespace detail { + ResultBuilder::ResultBuilder(assertType::Enum at, const char* file, int line, const char* expr, + const char* exception_type, const String& exception_string) + : AssertData(at, file, line, expr, exception_type, exception_string) { } + + ResultBuilder::ResultBuilder(assertType::Enum at, const char* file, int line, const char* expr, + const char* exception_type, const Contains& exception_string) + : AssertData(at, file, line, expr, exception_type, exception_string) { } + + void ResultBuilder::setResult(const Result& res) { + m_decomp = res.m_decomp; + m_failed = !res.m_passed; + } + + void ResultBuilder::translateException() { + m_threw = true; + m_exception = translateActiveException(); + } + + bool ResultBuilder::log() { + if(m_at & assertType::is_throws) { //!OCLINT bitwise operator in conditional + m_failed = !m_threw; + } else if((m_at & assertType::is_throws_as) && (m_at & assertType::is_throws_with)) { //!OCLINT + m_failed = !m_threw_as || !m_exception_string.check(m_exception); + } else if(m_at & assertType::is_throws_as) { //!OCLINT bitwise operator in conditional + m_failed = !m_threw_as; + } else if(m_at & assertType::is_throws_with) { //!OCLINT bitwise operator in conditional + m_failed = !m_exception_string.check(m_exception); + } else if(m_at & assertType::is_nothrow) { //!OCLINT bitwise operator in conditional + m_failed = m_threw; + } + + if(m_exception.size()) + m_exception = "\"" + m_exception + "\""; + + if(is_running_in_test) { + addAssert(m_at); + DOCTEST_ITERATE_THROUGH_REPORTERS(log_assert, *this); + + if(m_failed) + addFailedAssert(m_at); + } else if(m_failed) { + failed_out_of_a_testing_context(*this); + } + + return m_failed && isDebuggerActive() && !getContextOptions()->no_breaks && + (g_cs->currentTest == nullptr || !g_cs->currentTest->m_no_breaks); // break into debugger + } + + void ResultBuilder::react() const { + if(m_failed && checkIfShouldThrow(m_at)) + throwException(); + } + + void failed_out_of_a_testing_context(const AssertData& ad) { + if(g_cs->ah) + g_cs->ah(ad); + else + std::abort(); + } + + bool decomp_assert(assertType::Enum at, const char* file, int line, const char* expr, + const Result& result) { + bool failed = !result.m_passed; + + // ################################################################################### + // IF THE DEBUGGER BREAKS HERE - GO 1 LEVEL UP IN THE CALLSTACK FOR THE FAILING ASSERT + // THIS IS THE EFFECT OF HAVING 'DOCTEST_CONFIG_SUPER_FAST_ASSERTS' DEFINED + // ################################################################################### + DOCTEST_ASSERT_OUT_OF_TESTS(result.m_decomp); + DOCTEST_ASSERT_IN_TESTS(result.m_decomp); + return !failed; + } + + MessageBuilder::MessageBuilder(const char* file, int line, assertType::Enum severity) { + m_stream = tlssPush(); + m_file = file; + m_line = line; + m_severity = severity; + } + + MessageBuilder::~MessageBuilder() { + if (!logged) + tlssPop(); + } + + DOCTEST_DEFINE_INTERFACE(IExceptionTranslator) + + bool MessageBuilder::log() { + if (!logged) { + m_string = tlssPop(); + logged = true; + } + + DOCTEST_ITERATE_THROUGH_REPORTERS(log_message, *this); + + const bool isWarn = m_severity & assertType::is_warn; + + // warn is just a message in this context so we don't treat it as an assert + if(!isWarn) { + addAssert(m_severity); + addFailedAssert(m_severity); + } + + return isDebuggerActive() && !getContextOptions()->no_breaks && !isWarn && + (g_cs->currentTest == nullptr || !g_cs->currentTest->m_no_breaks); // break into debugger + } + + void MessageBuilder::react() { + if(m_severity & assertType::is_require) //!OCLINT bitwise operator in conditional + throwException(); + } +} // namespace detail +namespace { + using namespace detail; + + // clang-format off + +// ================================================================================================= +// The following code has been taken verbatim from Catch2/include/internal/catch_xmlwriter.h/cpp +// This is done so cherry-picking bug fixes is trivial - even the style/formatting is untouched. +// ================================================================================================= + + class XmlEncode { + public: + enum ForWhat { ForTextNodes, ForAttributes }; + + XmlEncode( std::string const& str, ForWhat forWhat = ForTextNodes ); + + void encodeTo( std::ostream& os ) const; + + friend std::ostream& operator << ( std::ostream& os, XmlEncode const& xmlEncode ); + + private: + std::string m_str; + ForWhat m_forWhat; + }; + + class XmlWriter { + public: + + class ScopedElement { + public: + ScopedElement( XmlWriter* writer ); + + ScopedElement( ScopedElement&& other ) DOCTEST_NOEXCEPT; + ScopedElement& operator=( ScopedElement&& other ) DOCTEST_NOEXCEPT; + + ~ScopedElement(); + + ScopedElement& writeText( std::string const& text, bool indent = true ); + + template + ScopedElement& writeAttribute( std::string const& name, T const& attribute ) { + m_writer->writeAttribute( name, attribute ); + return *this; + } + + private: + mutable XmlWriter* m_writer = nullptr; + }; + +#ifndef DOCTEST_CONFIG_NO_INCLUDE_IOSTREAM + XmlWriter( std::ostream& os = std::cout ); +#else // DOCTEST_CONFIG_NO_INCLUDE_IOSTREAM + XmlWriter( std::ostream& os ); +#endif // DOCTEST_CONFIG_NO_INCLUDE_IOSTREAM + ~XmlWriter(); + + XmlWriter( XmlWriter const& ) = delete; + XmlWriter& operator=( XmlWriter const& ) = delete; + + XmlWriter& startElement( std::string const& name ); + + ScopedElement scopedElement( std::string const& name ); + + XmlWriter& endElement(); + + XmlWriter& writeAttribute( std::string const& name, std::string const& attribute ); + + XmlWriter& writeAttribute( std::string const& name, const char* attribute ); + + XmlWriter& writeAttribute( std::string const& name, bool attribute ); + + template + XmlWriter& writeAttribute( std::string const& name, T const& attribute ) { + std::stringstream rss; + rss << attribute; + return writeAttribute( name, rss.str() ); + } + + XmlWriter& writeText( std::string const& text, bool indent = true ); + + //XmlWriter& writeComment( std::string const& text ); + + //void writeStylesheetRef( std::string const& url ); + + //XmlWriter& writeBlankLine(); + + void ensureTagClosed(); + + void writeDeclaration(); + + private: + + void newlineIfNecessary(); + + bool m_tagIsOpen = false; + bool m_needsNewline = false; + std::vector m_tags; + std::string m_indent; + std::ostream& m_os; + }; + +// ================================================================================================= +// The following code has been taken verbatim from Catch2/include/internal/catch_xmlwriter.h/cpp +// This is done so cherry-picking bug fixes is trivial - even the style/formatting is untouched. +// ================================================================================================= + +using uchar = unsigned char; + +namespace { + + size_t trailingBytes(unsigned char c) { + if ((c & 0xE0) == 0xC0) { + return 2; + } + if ((c & 0xF0) == 0xE0) { + return 3; + } + if ((c & 0xF8) == 0xF0) { + return 4; + } + DOCTEST_INTERNAL_ERROR("Invalid multibyte utf-8 start byte encountered"); + } + + uint32_t headerValue(unsigned char c) { + if ((c & 0xE0) == 0xC0) { + return c & 0x1F; + } + if ((c & 0xF0) == 0xE0) { + return c & 0x0F; + } + if ((c & 0xF8) == 0xF0) { + return c & 0x07; + } + DOCTEST_INTERNAL_ERROR("Invalid multibyte utf-8 start byte encountered"); + } + + void hexEscapeChar(std::ostream& os, unsigned char c) { + std::ios_base::fmtflags f(os.flags()); + os << "\\x" + << std::uppercase << std::hex << std::setfill('0') << std::setw(2) + << static_cast(c); + os.flags(f); + } + +} // anonymous namespace + + XmlEncode::XmlEncode( std::string const& str, ForWhat forWhat ) + : m_str( str ), + m_forWhat( forWhat ) + {} + + void XmlEncode::encodeTo( std::ostream& os ) const { + // Apostrophe escaping not necessary if we always use " to write attributes + // (see: https://www.w3.org/TR/xml/#syntax) + + for( std::size_t idx = 0; idx < m_str.size(); ++ idx ) { + uchar c = m_str[idx]; + switch (c) { + case '<': os << "<"; break; + case '&': os << "&"; break; + + case '>': + // See: https://www.w3.org/TR/xml/#syntax + if (idx > 2 && m_str[idx - 1] == ']' && m_str[idx - 2] == ']') + os << ">"; + else + os << c; + break; + + case '\"': + if (m_forWhat == ForAttributes) + os << """; + else + os << c; + break; + + default: + // Check for control characters and invalid utf-8 + + // Escape control characters in standard ascii + // see https://stackoverflow.com/questions/404107/why-are-control-characters-illegal-in-xml-1-0 + if (c < 0x09 || (c > 0x0D && c < 0x20) || c == 0x7F) { + hexEscapeChar(os, c); + break; + } + + // Plain ASCII: Write it to stream + if (c < 0x7F) { + os << c; + break; + } + + // UTF-8 territory + // Check if the encoding is valid and if it is not, hex escape bytes. + // Important: We do not check the exact decoded values for validity, only the encoding format + // First check that this bytes is a valid lead byte: + // This means that it is not encoded as 1111 1XXX + // Or as 10XX XXXX + if (c < 0xC0 || + c >= 0xF8) { + hexEscapeChar(os, c); + break; + } + + auto encBytes = trailingBytes(c); + // Are there enough bytes left to avoid accessing out-of-bounds memory? + if (idx + encBytes - 1 >= m_str.size()) { + hexEscapeChar(os, c); + break; + } + // The header is valid, check data + // The next encBytes bytes must together be a valid utf-8 + // This means: bitpattern 10XX XXXX and the extracted value is sane (ish) + bool valid = true; + uint32_t value = headerValue(c); + for (std::size_t n = 1; n < encBytes; ++n) { + uchar nc = m_str[idx + n]; + valid &= ((nc & 0xC0) == 0x80); + value = (value << 6) | (nc & 0x3F); + } + + if ( + // Wrong bit pattern of following bytes + (!valid) || + // Overlong encodings + (value < 0x80) || + ( value < 0x800 && encBytes > 2) || // removed "0x80 <= value &&" because redundant + (0x800 < value && value < 0x10000 && encBytes > 3) || + // Encoded value out of range + (value >= 0x110000) + ) { + hexEscapeChar(os, c); + break; + } + + // If we got here, this is in fact a valid(ish) utf-8 sequence + for (std::size_t n = 0; n < encBytes; ++n) { + os << m_str[idx + n]; + } + idx += encBytes - 1; + break; + } + } + } + + std::ostream& operator << ( std::ostream& os, XmlEncode const& xmlEncode ) { + xmlEncode.encodeTo( os ); + return os; + } + + XmlWriter::ScopedElement::ScopedElement( XmlWriter* writer ) + : m_writer( writer ) + {} + + XmlWriter::ScopedElement::ScopedElement( ScopedElement&& other ) DOCTEST_NOEXCEPT + : m_writer( other.m_writer ){ + other.m_writer = nullptr; + } + XmlWriter::ScopedElement& XmlWriter::ScopedElement::operator=( ScopedElement&& other ) DOCTEST_NOEXCEPT { + if ( m_writer ) { + m_writer->endElement(); + } + m_writer = other.m_writer; + other.m_writer = nullptr; + return *this; + } + + + XmlWriter::ScopedElement::~ScopedElement() { + if( m_writer ) + m_writer->endElement(); + } + + XmlWriter::ScopedElement& XmlWriter::ScopedElement::writeText( std::string const& text, bool indent ) { + m_writer->writeText( text, indent ); + return *this; + } + + XmlWriter::XmlWriter( std::ostream& os ) : m_os( os ) + { + // writeDeclaration(); // called explicitly by the reporters that use the writer class - see issue #627 + } + + XmlWriter::~XmlWriter() { + while( !m_tags.empty() ) + endElement(); + } + + XmlWriter& XmlWriter::startElement( std::string const& name ) { + ensureTagClosed(); + newlineIfNecessary(); + m_os << m_indent << '<' << name; + m_tags.push_back( name ); + m_indent += " "; + m_tagIsOpen = true; + return *this; + } + + XmlWriter::ScopedElement XmlWriter::scopedElement( std::string const& name ) { + ScopedElement scoped( this ); + startElement( name ); + return scoped; + } + + XmlWriter& XmlWriter::endElement() { + newlineIfNecessary(); + m_indent = m_indent.substr( 0, m_indent.size()-2 ); + if( m_tagIsOpen ) { + m_os << "/>"; + m_tagIsOpen = false; + } + else { + m_os << m_indent << ""; + } + m_os << std::endl; + m_tags.pop_back(); + return *this; + } + + XmlWriter& XmlWriter::writeAttribute( std::string const& name, std::string const& attribute ) { + if( !name.empty() && !attribute.empty() ) + m_os << ' ' << name << "=\"" << XmlEncode( attribute, XmlEncode::ForAttributes ) << '"'; + return *this; + } + + XmlWriter& XmlWriter::writeAttribute( std::string const& name, const char* attribute ) { + if( !name.empty() && attribute && attribute[0] != '\0' ) + m_os << ' ' << name << "=\"" << XmlEncode( attribute, XmlEncode::ForAttributes ) << '"'; + return *this; + } + + XmlWriter& XmlWriter::writeAttribute( std::string const& name, bool attribute ) { + m_os << ' ' << name << "=\"" << ( attribute ? "true" : "false" ) << '"'; + return *this; + } + + XmlWriter& XmlWriter::writeText( std::string const& text, bool indent ) { + if( !text.empty() ){ + bool tagWasOpen = m_tagIsOpen; + ensureTagClosed(); + if( tagWasOpen && indent ) + m_os << m_indent; + m_os << XmlEncode( text ); + m_needsNewline = true; + } + return *this; + } + + //XmlWriter& XmlWriter::writeComment( std::string const& text ) { + // ensureTagClosed(); + // m_os << m_indent << ""; + // m_needsNewline = true; + // return *this; + //} + + //void XmlWriter::writeStylesheetRef( std::string const& url ) { + // m_os << "\n"; + //} + + //XmlWriter& XmlWriter::writeBlankLine() { + // ensureTagClosed(); + // m_os << '\n'; + // return *this; + //} + + void XmlWriter::ensureTagClosed() { + if( m_tagIsOpen ) { + m_os << ">" << std::endl; + m_tagIsOpen = false; + } + } + + void XmlWriter::writeDeclaration() { + m_os << "\n"; + } + + void XmlWriter::newlineIfNecessary() { + if( m_needsNewline ) { + m_os << std::endl; + m_needsNewline = false; + } + } + +// ================================================================================================= +// End of copy-pasted code from Catch +// ================================================================================================= + + // clang-format on + + struct XmlReporter : public IReporter + { + XmlWriter xml; + DOCTEST_DECLARE_MUTEX(mutex) + + // caching pointers/references to objects of these types - safe to do + const ContextOptions& opt; + const TestCaseData* tc = nullptr; + + XmlReporter(const ContextOptions& co) + : xml(*co.cout) + , opt(co) {} + + void log_contexts() { + int num_contexts = get_num_active_contexts(); + if(num_contexts) { + auto contexts = get_active_contexts(); + std::stringstream ss; + for(int i = 0; i < num_contexts; ++i) { + contexts[i]->stringify(&ss); + xml.scopedElement("Info").writeText(ss.str()); + ss.str(""); + } + } + } + + unsigned line(unsigned l) const { return opt.no_line_numbers ? 0 : l; } + + void test_case_start_impl(const TestCaseData& in) { + bool open_ts_tag = false; + if(tc != nullptr) { // we have already opened a test suite + if(std::strcmp(tc->m_test_suite, in.m_test_suite) != 0) { + xml.endElement(); + open_ts_tag = true; + } + } + else { + open_ts_tag = true; // first test case ==> first test suite + } + + if(open_ts_tag) { + xml.startElement("TestSuite"); + xml.writeAttribute("name", in.m_test_suite); + } + + tc = ∈ + xml.startElement("TestCase") + .writeAttribute("name", in.m_name) + .writeAttribute("filename", skipPathFromFilename(in.m_file.c_str())) + .writeAttribute("line", line(in.m_line)) + .writeAttribute("description", in.m_description); + + if(Approx(in.m_timeout) != 0) + xml.writeAttribute("timeout", in.m_timeout); + if(in.m_may_fail) + xml.writeAttribute("may_fail", true); + if(in.m_should_fail) + xml.writeAttribute("should_fail", true); + } + + // ========================================================================================= + // WHAT FOLLOWS ARE OVERRIDES OF THE VIRTUAL METHODS OF THE REPORTER INTERFACE + // ========================================================================================= + + void report_query(const QueryData& in) override { + test_run_start(); + if(opt.list_reporters) { + for(auto& curr : getListeners()) + xml.scopedElement("Listener") + .writeAttribute("priority", curr.first.first) + .writeAttribute("name", curr.first.second); + for(auto& curr : getReporters()) + xml.scopedElement("Reporter") + .writeAttribute("priority", curr.first.first) + .writeAttribute("name", curr.first.second); + } else if(opt.count || opt.list_test_cases) { + for(unsigned i = 0; i < in.num_data; ++i) { + xml.scopedElement("TestCase").writeAttribute("name", in.data[i]->m_name) + .writeAttribute("testsuite", in.data[i]->m_test_suite) + .writeAttribute("filename", skipPathFromFilename(in.data[i]->m_file.c_str())) + .writeAttribute("line", line(in.data[i]->m_line)) + .writeAttribute("skipped", in.data[i]->m_skip); + } + xml.scopedElement("OverallResultsTestCases") + .writeAttribute("unskipped", in.run_stats->numTestCasesPassingFilters); + } else if(opt.list_test_suites) { + for(unsigned i = 0; i < in.num_data; ++i) + xml.scopedElement("TestSuite").writeAttribute("name", in.data[i]->m_test_suite); + xml.scopedElement("OverallResultsTestCases") + .writeAttribute("unskipped", in.run_stats->numTestCasesPassingFilters); + xml.scopedElement("OverallResultsTestSuites") + .writeAttribute("unskipped", in.run_stats->numTestSuitesPassingFilters); + } + xml.endElement(); + } + + void test_run_start() override { + xml.writeDeclaration(); + + // remove .exe extension - mainly to have the same output on UNIX and Windows + std::string binary_name = skipPathFromFilename(opt.binary_name.c_str()); +#ifdef DOCTEST_PLATFORM_WINDOWS + if(binary_name.rfind(".exe") != std::string::npos) + binary_name = binary_name.substr(0, binary_name.length() - 4); +#endif // DOCTEST_PLATFORM_WINDOWS + + xml.startElement("doctest").writeAttribute("binary", binary_name); + if(opt.no_version == false) + xml.writeAttribute("version", DOCTEST_VERSION_STR); + + // only the consequential ones (TODO: filters) + xml.scopedElement("Options") + .writeAttribute("order_by", opt.order_by.c_str()) + .writeAttribute("rand_seed", opt.rand_seed) + .writeAttribute("first", opt.first) + .writeAttribute("last", opt.last) + .writeAttribute("abort_after", opt.abort_after) + .writeAttribute("subcase_filter_levels", opt.subcase_filter_levels) + .writeAttribute("case_sensitive", opt.case_sensitive) + .writeAttribute("no_throw", opt.no_throw) + .writeAttribute("no_skip", opt.no_skip); + } + + void test_run_end(const TestRunStats& p) override { + if(tc) // the TestSuite tag - only if there has been at least 1 test case + xml.endElement(); + + xml.scopedElement("OverallResultsAsserts") + .writeAttribute("successes", p.numAsserts - p.numAssertsFailed) + .writeAttribute("failures", p.numAssertsFailed); + + xml.startElement("OverallResultsTestCases") + .writeAttribute("successes", + p.numTestCasesPassingFilters - p.numTestCasesFailed) + .writeAttribute("failures", p.numTestCasesFailed); + if(opt.no_skipped_summary == false) + xml.writeAttribute("skipped", p.numTestCases - p.numTestCasesPassingFilters); + xml.endElement(); + + xml.endElement(); + } + + void test_case_start(const TestCaseData& in) override { + test_case_start_impl(in); + xml.ensureTagClosed(); + } + + void test_case_reenter(const TestCaseData&) override {} + + void test_case_end(const CurrentTestCaseStats& st) override { + xml.startElement("OverallResultsAsserts") + .writeAttribute("successes", + st.numAssertsCurrentTest - st.numAssertsFailedCurrentTest) + .writeAttribute("failures", st.numAssertsFailedCurrentTest) + .writeAttribute("test_case_success", st.testCaseSuccess); + if(opt.duration) + xml.writeAttribute("duration", st.seconds); + if(tc->m_expected_failures) + xml.writeAttribute("expected_failures", tc->m_expected_failures); + xml.endElement(); + + xml.endElement(); + } + + void test_case_exception(const TestCaseException& e) override { + DOCTEST_LOCK_MUTEX(mutex) + + xml.scopedElement("Exception") + .writeAttribute("crash", e.is_crash) + .writeText(e.error_string.c_str()); + } + + void subcase_start(const SubcaseSignature& in) override { + xml.startElement("SubCase") + .writeAttribute("name", in.m_name) + .writeAttribute("filename", skipPathFromFilename(in.m_file)) + .writeAttribute("line", line(in.m_line)); + xml.ensureTagClosed(); + } + + void subcase_end() override { xml.endElement(); } + + void log_assert(const AssertData& rb) override { + if(!rb.m_failed && !opt.success) + return; + + DOCTEST_LOCK_MUTEX(mutex) + + xml.startElement("Expression") + .writeAttribute("success", !rb.m_failed) + .writeAttribute("type", assertString(rb.m_at)) + .writeAttribute("filename", skipPathFromFilename(rb.m_file)) + .writeAttribute("line", line(rb.m_line)); + + xml.scopedElement("Original").writeText(rb.m_expr); + + if(rb.m_threw) + xml.scopedElement("Exception").writeText(rb.m_exception.c_str()); + + if(rb.m_at & assertType::is_throws_as) + xml.scopedElement("ExpectedException").writeText(rb.m_exception_type); + if(rb.m_at & assertType::is_throws_with) + xml.scopedElement("ExpectedExceptionString").writeText(rb.m_exception_string.c_str()); + if((rb.m_at & assertType::is_normal) && !rb.m_threw) + xml.scopedElement("Expanded").writeText(rb.m_decomp.c_str()); + + log_contexts(); + + xml.endElement(); + } + + void log_message(const MessageData& mb) override { + DOCTEST_LOCK_MUTEX(mutex) + + xml.startElement("Message") + .writeAttribute("type", failureString(mb.m_severity)) + .writeAttribute("filename", skipPathFromFilename(mb.m_file)) + .writeAttribute("line", line(mb.m_line)); + + xml.scopedElement("Text").writeText(mb.m_string.c_str()); + + log_contexts(); + + xml.endElement(); + } + + void test_case_skipped(const TestCaseData& in) override { + if(opt.no_skipped_summary == false) { + test_case_start_impl(in); + xml.writeAttribute("skipped", "true"); + xml.endElement(); + } + } + }; + + DOCTEST_REGISTER_REPORTER("xml", 0, XmlReporter); + + void fulltext_log_assert_to_stream(std::ostream& s, const AssertData& rb) { + if((rb.m_at & (assertType::is_throws_as | assertType::is_throws_with)) == + 0) //!OCLINT bitwise operator in conditional + s << Color::Cyan << assertString(rb.m_at) << "( " << rb.m_expr << " ) " + << Color::None; + + if(rb.m_at & assertType::is_throws) { //!OCLINT bitwise operator in conditional + s << (rb.m_threw ? "threw as expected!" : "did NOT throw at all!") << "\n"; + } else if((rb.m_at & assertType::is_throws_as) && + (rb.m_at & assertType::is_throws_with)) { //!OCLINT + s << Color::Cyan << assertString(rb.m_at) << "( " << rb.m_expr << ", \"" + << rb.m_exception_string.c_str() + << "\", " << rb.m_exception_type << " ) " << Color::None; + if(rb.m_threw) { + if(!rb.m_failed) { + s << "threw as expected!\n"; + } else { + s << "threw a DIFFERENT exception! (contents: " << rb.m_exception << ")\n"; + } + } else { + s << "did NOT throw at all!\n"; + } + } else if(rb.m_at & + assertType::is_throws_as) { //!OCLINT bitwise operator in conditional + s << Color::Cyan << assertString(rb.m_at) << "( " << rb.m_expr << ", " + << rb.m_exception_type << " ) " << Color::None + << (rb.m_threw ? (rb.m_threw_as ? "threw as expected!" : + "threw a DIFFERENT exception: ") : + "did NOT throw at all!") + << Color::Cyan << rb.m_exception << "\n"; + } else if(rb.m_at & + assertType::is_throws_with) { //!OCLINT bitwise operator in conditional + s << Color::Cyan << assertString(rb.m_at) << "( " << rb.m_expr << ", \"" + << rb.m_exception_string.c_str() + << "\" ) " << Color::None + << (rb.m_threw ? (!rb.m_failed ? "threw as expected!" : + "threw a DIFFERENT exception: ") : + "did NOT throw at all!") + << Color::Cyan << rb.m_exception << "\n"; + } else if(rb.m_at & assertType::is_nothrow) { //!OCLINT bitwise operator in conditional + s << (rb.m_threw ? "THREW exception: " : "didn't throw!") << Color::Cyan + << rb.m_exception << "\n"; + } else { + s << (rb.m_threw ? "THREW exception: " : + (!rb.m_failed ? "is correct!\n" : "is NOT correct!\n")); + if(rb.m_threw) + s << rb.m_exception << "\n"; + else + s << " values: " << assertString(rb.m_at) << "( " << rb.m_decomp << " )\n"; + } + } + + // TODO: + // - log_message() + // - respond to queries + // - honor remaining options + // - more attributes in tags + struct JUnitReporter : public IReporter + { + XmlWriter xml; + DOCTEST_DECLARE_MUTEX(mutex) + Timer timer; + std::vector deepestSubcaseStackNames; + + struct JUnitTestCaseData + { + static std::string getCurrentTimestamp() { + // Beware, this is not reentrant because of backward compatibility issues + // Also, UTC only, again because of backward compatibility (%z is C++11) + time_t rawtime; + std::time(&rawtime); + auto const timeStampSize = sizeof("2017-01-16T17:06:45Z"); + + std::tm timeInfo; +#ifdef DOCTEST_PLATFORM_WINDOWS + gmtime_s(&timeInfo, &rawtime); +#else // DOCTEST_PLATFORM_WINDOWS + gmtime_r(&rawtime, &timeInfo); +#endif // DOCTEST_PLATFORM_WINDOWS + + char timeStamp[timeStampSize]; + const char* const fmt = "%Y-%m-%dT%H:%M:%SZ"; + + std::strftime(timeStamp, timeStampSize, fmt, &timeInfo); + return std::string(timeStamp); + } + + struct JUnitTestMessage + { + JUnitTestMessage(const std::string& _message, const std::string& _type, const std::string& _details) + : message(_message), type(_type), details(_details) {} + + JUnitTestMessage(const std::string& _message, const std::string& _details) + : message(_message), type(), details(_details) {} + + std::string message, type, details; + }; + + struct JUnitTestCase + { + JUnitTestCase(const std::string& _classname, const std::string& _name) + : classname(_classname), name(_name), time(0), failures() {} + + std::string classname, name; + double time; + std::vector failures, errors; + }; + + void add(const std::string& classname, const std::string& name) { + testcases.emplace_back(classname, name); + } + + void appendSubcaseNamesToLastTestcase(std::vector nameStack) { + for(auto& curr: nameStack) + if(curr.size()) + testcases.back().name += std::string("/") + curr.c_str(); + } + + void addTime(double time) { + if(time < 1e-4) + time = 0; + testcases.back().time = time; + totalSeconds += time; + } + + void addFailure(const std::string& message, const std::string& type, const std::string& details) { + testcases.back().failures.emplace_back(message, type, details); + ++totalFailures; + } + + void addError(const std::string& message, const std::string& details) { + testcases.back().errors.emplace_back(message, details); + ++totalErrors; + } + + std::vector testcases; + double totalSeconds = 0; + int totalErrors = 0, totalFailures = 0; + }; + + JUnitTestCaseData testCaseData; + + // caching pointers/references to objects of these types - safe to do + const ContextOptions& opt; + const TestCaseData* tc = nullptr; + + JUnitReporter(const ContextOptions& co) + : xml(*co.cout) + , opt(co) {} + + unsigned line(unsigned l) const { return opt.no_line_numbers ? 0 : l; } + + // ========================================================================================= + // WHAT FOLLOWS ARE OVERRIDES OF THE VIRTUAL METHODS OF THE REPORTER INTERFACE + // ========================================================================================= + + void report_query(const QueryData&) override { + xml.writeDeclaration(); + } + + void test_run_start() override { + xml.writeDeclaration(); + } + + void test_run_end(const TestRunStats& p) override { + // remove .exe extension - mainly to have the same output on UNIX and Windows + std::string binary_name = skipPathFromFilename(opt.binary_name.c_str()); +#ifdef DOCTEST_PLATFORM_WINDOWS + if(binary_name.rfind(".exe") != std::string::npos) + binary_name = binary_name.substr(0, binary_name.length() - 4); +#endif // DOCTEST_PLATFORM_WINDOWS + xml.startElement("testsuites"); + xml.startElement("testsuite").writeAttribute("name", binary_name) + .writeAttribute("errors", testCaseData.totalErrors) + .writeAttribute("failures", testCaseData.totalFailures) + .writeAttribute("tests", p.numAsserts); + if(opt.no_time_in_output == false) { + xml.writeAttribute("time", testCaseData.totalSeconds); + xml.writeAttribute("timestamp", JUnitTestCaseData::getCurrentTimestamp()); + } + if(opt.no_version == false) + xml.writeAttribute("doctest_version", DOCTEST_VERSION_STR); + + for(const auto& testCase : testCaseData.testcases) { + xml.startElement("testcase") + .writeAttribute("classname", testCase.classname) + .writeAttribute("name", testCase.name); + if(opt.no_time_in_output == false) + xml.writeAttribute("time", testCase.time); + // This is not ideal, but it should be enough to mimic gtest's junit output. + xml.writeAttribute("status", "run"); + + for(const auto& failure : testCase.failures) { + xml.scopedElement("failure") + .writeAttribute("message", failure.message) + .writeAttribute("type", failure.type) + .writeText(failure.details, false); + } + + for(const auto& error : testCase.errors) { + xml.scopedElement("error") + .writeAttribute("message", error.message) + .writeText(error.details); + } + + xml.endElement(); + } + xml.endElement(); + xml.endElement(); + } + + void test_case_start(const TestCaseData& in) override { + testCaseData.add(skipPathFromFilename(in.m_file.c_str()), in.m_name); + timer.start(); + } + + void test_case_reenter(const TestCaseData& in) override { + testCaseData.addTime(timer.getElapsedSeconds()); + testCaseData.appendSubcaseNamesToLastTestcase(deepestSubcaseStackNames); + deepestSubcaseStackNames.clear(); + + timer.start(); + testCaseData.add(skipPathFromFilename(in.m_file.c_str()), in.m_name); + } + + void test_case_end(const CurrentTestCaseStats&) override { + testCaseData.addTime(timer.getElapsedSeconds()); + testCaseData.appendSubcaseNamesToLastTestcase(deepestSubcaseStackNames); + deepestSubcaseStackNames.clear(); + } + + void test_case_exception(const TestCaseException& e) override { + DOCTEST_LOCK_MUTEX(mutex) + testCaseData.addError("exception", e.error_string.c_str()); + } + + void subcase_start(const SubcaseSignature& in) override { + deepestSubcaseStackNames.push_back(in.m_name); + } + + void subcase_end() override {} + + void log_assert(const AssertData& rb) override { + if(!rb.m_failed) // report only failures & ignore the `success` option + return; + + DOCTEST_LOCK_MUTEX(mutex) + + std::ostringstream os; + os << skipPathFromFilename(rb.m_file) << (opt.gnu_file_line ? ":" : "(") + << line(rb.m_line) << (opt.gnu_file_line ? ":" : "):") << std::endl; + + fulltext_log_assert_to_stream(os, rb); + log_contexts(os); + testCaseData.addFailure(rb.m_decomp.c_str(), assertString(rb.m_at), os.str()); + } + + void log_message(const MessageData& mb) override { + if(mb.m_severity & assertType::is_warn) // report only failures + return; + + DOCTEST_LOCK_MUTEX(mutex) + + std::ostringstream os; + os << skipPathFromFilename(mb.m_file) << (opt.gnu_file_line ? ":" : "(") + << line(mb.m_line) << (opt.gnu_file_line ? ":" : "):") << std::endl; + + os << mb.m_string.c_str() << "\n"; + log_contexts(os); + + testCaseData.addFailure(mb.m_string.c_str(), + mb.m_severity & assertType::is_check ? "FAIL_CHECK" : "FAIL", os.str()); + } + + void test_case_skipped(const TestCaseData&) override {} + + void log_contexts(std::ostringstream& s) { + int num_contexts = get_num_active_contexts(); + if(num_contexts) { + auto contexts = get_active_contexts(); + + s << " logged: "; + for(int i = 0; i < num_contexts; ++i) { + s << (i == 0 ? "" : " "); + contexts[i]->stringify(&s); + s << std::endl; + } + } + } + }; + + DOCTEST_REGISTER_REPORTER("junit", 0, JUnitReporter); + + struct Whitespace + { + int nrSpaces; + explicit Whitespace(int nr) + : nrSpaces(nr) {} + }; + + std::ostream& operator<<(std::ostream& out, const Whitespace& ws) { + if(ws.nrSpaces != 0) + out << std::setw(ws.nrSpaces) << ' '; + return out; + } + + struct ConsoleReporter : public IReporter + { + std::ostream& s; + bool hasLoggedCurrentTestStart; + std::vector subcasesStack; + size_t currentSubcaseLevel; + DOCTEST_DECLARE_MUTEX(mutex) + + // caching pointers/references to objects of these types - safe to do + const ContextOptions& opt; + const TestCaseData* tc; + + ConsoleReporter(const ContextOptions& co) + : s(*co.cout) + , opt(co) {} + + ConsoleReporter(const ContextOptions& co, std::ostream& ostr) + : s(ostr) + , opt(co) {} + + // ========================================================================================= + // WHAT FOLLOWS ARE HELPERS USED BY THE OVERRIDES OF THE VIRTUAL METHODS OF THE INTERFACE + // ========================================================================================= + + void separator_to_stream() { + s << Color::Yellow + << "===============================================================================" + "\n"; + } + + const char* getSuccessOrFailString(bool success, assertType::Enum at, + const char* success_str) { + if(success) + return success_str; + return failureString(at); + } + + Color::Enum getSuccessOrFailColor(bool success, assertType::Enum at) { + return success ? Color::BrightGreen : + (at & assertType::is_warn) ? Color::Yellow : Color::Red; + } + + void successOrFailColoredStringToStream(bool success, assertType::Enum at, + const char* success_str = "SUCCESS") { + s << getSuccessOrFailColor(success, at) + << getSuccessOrFailString(success, at, success_str) << ": "; + } + + void log_contexts() { + int num_contexts = get_num_active_contexts(); + if(num_contexts) { + auto contexts = get_active_contexts(); + + s << Color::None << " logged: "; + for(int i = 0; i < num_contexts; ++i) { + s << (i == 0 ? "" : " "); + contexts[i]->stringify(&s); + s << "\n"; + } + } + + s << "\n"; + } + + // this was requested to be made virtual so users could override it + virtual void file_line_to_stream(const char* file, int line, + const char* tail = "") { + s << Color::LightGrey << skipPathFromFilename(file) << (opt.gnu_file_line ? ":" : "(") + << (opt.no_line_numbers ? 0 : line) // 0 or the real num depending on the option + << (opt.gnu_file_line ? ":" : "):") << tail; + } + + void logTestStart() { + if(hasLoggedCurrentTestStart) + return; + + separator_to_stream(); + file_line_to_stream(tc->m_file.c_str(), tc->m_line, "\n"); + if(tc->m_description) + s << Color::Yellow << "DESCRIPTION: " << Color::None << tc->m_description << "\n"; + if(tc->m_test_suite && tc->m_test_suite[0] != '\0') + s << Color::Yellow << "TEST SUITE: " << Color::None << tc->m_test_suite << "\n"; + if(strncmp(tc->m_name, " Scenario:", 11) != 0) + s << Color::Yellow << "TEST CASE: "; + s << Color::None << tc->m_name << "\n"; + + for(size_t i = 0; i < currentSubcaseLevel; ++i) { + if(subcasesStack[i].m_name[0] != '\0') + s << " " << subcasesStack[i].m_name << "\n"; + } + + if(currentSubcaseLevel != subcasesStack.size()) { + s << Color::Yellow << "\nDEEPEST SUBCASE STACK REACHED (DIFFERENT FROM THE CURRENT ONE):\n" << Color::None; + for(size_t i = 0; i < subcasesStack.size(); ++i) { + if(subcasesStack[i].m_name[0] != '\0') + s << " " << subcasesStack[i].m_name << "\n"; + } + } + + s << "\n"; + + hasLoggedCurrentTestStart = true; + } + + void printVersion() { + if(opt.no_version == false) + s << Color::Cyan << "[doctest] " << Color::None << "doctest version is \"" + << DOCTEST_VERSION_STR << "\"\n"; + } + + void printIntro() { + if(opt.no_intro == false) { + printVersion(); + s << Color::Cyan << "[doctest] " << Color::None + << "run with \"--" DOCTEST_OPTIONS_PREFIX_DISPLAY "help\" for options\n"; + } + } + + void printHelp() { + int sizePrefixDisplay = static_cast(strlen(DOCTEST_OPTIONS_PREFIX_DISPLAY)); + printVersion(); + // clang-format off + s << Color::Cyan << "[doctest]\n" << Color::None; + s << Color::Cyan << "[doctest] " << Color::None; + s << "boolean values: \"1/on/yes/true\" or \"0/off/no/false\"\n"; + s << Color::Cyan << "[doctest] " << Color::None; + s << "filter values: \"str1,str2,str3\" (comma separated strings)\n"; + s << Color::Cyan << "[doctest]\n" << Color::None; + s << Color::Cyan << "[doctest] " << Color::None; + s << "filters use wildcards for matching strings\n"; + s << Color::Cyan << "[doctest] " << Color::None; + s << "something passes a filter if any of the strings in a filter matches\n"; +#ifndef DOCTEST_CONFIG_NO_UNPREFIXED_OPTIONS + s << Color::Cyan << "[doctest]\n" << Color::None; + s << Color::Cyan << "[doctest] " << Color::None; + s << "ALL FLAGS, OPTIONS AND FILTERS ALSO AVAILABLE WITH A \"" DOCTEST_CONFIG_OPTIONS_PREFIX "\" PREFIX!!!\n"; +#endif + s << Color::Cyan << "[doctest]\n" << Color::None; + s << Color::Cyan << "[doctest] " << Color::None; + s << "Query flags - the program quits after them. Available:\n\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "?, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "help, -" DOCTEST_OPTIONS_PREFIX_DISPLAY "h " + << Whitespace(sizePrefixDisplay*0) << "prints this message\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "v, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "version " + << Whitespace(sizePrefixDisplay*1) << "prints the version\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "c, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "count " + << Whitespace(sizePrefixDisplay*1) << "prints the number of matching tests\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "ltc, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "list-test-cases " + << Whitespace(sizePrefixDisplay*1) << "lists all matching tests by name\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "lts, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "list-test-suites " + << Whitespace(sizePrefixDisplay*1) << "lists all matching test suites\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "lr, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "list-reporters " + << Whitespace(sizePrefixDisplay*1) << "lists all registered reporters\n\n"; + // ================================================================================== << 79 + s << Color::Cyan << "[doctest] " << Color::None; + s << "The available / options/filters are:\n\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "tc, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "test-case= " + << Whitespace(sizePrefixDisplay*1) << "filters tests by their name\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "tce, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "test-case-exclude= " + << Whitespace(sizePrefixDisplay*1) << "filters OUT tests by their name\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "sf, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "source-file= " + << Whitespace(sizePrefixDisplay*1) << "filters tests by their file\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "sfe, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "source-file-exclude= " + << Whitespace(sizePrefixDisplay*1) << "filters OUT tests by their file\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "ts, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "test-suite= " + << Whitespace(sizePrefixDisplay*1) << "filters tests by their test suite\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "tse, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "test-suite-exclude= " + << Whitespace(sizePrefixDisplay*1) << "filters OUT tests by their test suite\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "sc, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "subcase= " + << Whitespace(sizePrefixDisplay*1) << "filters subcases by their name\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "sce, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "subcase-exclude= " + << Whitespace(sizePrefixDisplay*1) << "filters OUT subcases by their name\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "r, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "reporters= " + << Whitespace(sizePrefixDisplay*1) << "reporters to use (console is default)\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "o, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "out= " + << Whitespace(sizePrefixDisplay*1) << "output filename\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "ob, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "order-by= " + << Whitespace(sizePrefixDisplay*1) << "how the tests should be ordered\n"; + s << Whitespace(sizePrefixDisplay*3) << " - [file/suite/name/rand/none]\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "rs, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "rand-seed= " + << Whitespace(sizePrefixDisplay*1) << "seed for random ordering\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "f, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "first= " + << Whitespace(sizePrefixDisplay*1) << "the first test passing the filters to\n"; + s << Whitespace(sizePrefixDisplay*3) << " execute - for range-based execution\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "l, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "last= " + << Whitespace(sizePrefixDisplay*1) << "the last test passing the filters to\n"; + s << Whitespace(sizePrefixDisplay*3) << " execute - for range-based execution\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "aa, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "abort-after= " + << Whitespace(sizePrefixDisplay*1) << "stop after failed assertions\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "scfl,--" DOCTEST_OPTIONS_PREFIX_DISPLAY "subcase-filter-levels= " + << Whitespace(sizePrefixDisplay*1) << "apply filters for the first levels\n"; + s << Color::Cyan << "\n[doctest] " << Color::None; + s << "Bool options - can be used like flags and true is assumed. Available:\n\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "s, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "success= " + << Whitespace(sizePrefixDisplay*1) << "include successful assertions in output\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "cs, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "case-sensitive= " + << Whitespace(sizePrefixDisplay*1) << "filters being treated as case sensitive\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "e, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "exit= " + << Whitespace(sizePrefixDisplay*1) << "exits after the tests finish\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "d, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "duration= " + << Whitespace(sizePrefixDisplay*1) << "prints the time duration of each test\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "m, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "minimal= " + << Whitespace(sizePrefixDisplay*1) << "minimal console output (only failures)\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "q, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "quiet= " + << Whitespace(sizePrefixDisplay*1) << "no console output\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "nt, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "no-throw= " + << Whitespace(sizePrefixDisplay*1) << "skips exceptions-related assert checks\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "ne, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "no-exitcode= " + << Whitespace(sizePrefixDisplay*1) << "returns (or exits) always with success\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "nr, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "no-run= " + << Whitespace(sizePrefixDisplay*1) << "skips all runtime doctest operations\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "ni, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "no-intro= " + << Whitespace(sizePrefixDisplay*1) << "omit the framework intro in the output\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "nv, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "no-version= " + << Whitespace(sizePrefixDisplay*1) << "omit the framework version in the output\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "nc, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "no-colors= " + << Whitespace(sizePrefixDisplay*1) << "disables colors in output\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "fc, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "force-colors= " + << Whitespace(sizePrefixDisplay*1) << "use colors even when not in a tty\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "nb, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "no-breaks= " + << Whitespace(sizePrefixDisplay*1) << "disables breakpoints in debuggers\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "ns, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "no-skip= " + << Whitespace(sizePrefixDisplay*1) << "don't skip test cases marked as skip\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "gfl, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "gnu-file-line= " + << Whitespace(sizePrefixDisplay*1) << ":n: vs (n): for line numbers in output\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "npf, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "no-path-filenames= " + << Whitespace(sizePrefixDisplay*1) << "only filenames and no paths in output\n"; + s << " -" DOCTEST_OPTIONS_PREFIX_DISPLAY "nln, --" DOCTEST_OPTIONS_PREFIX_DISPLAY "no-line-numbers= " + << Whitespace(sizePrefixDisplay*1) << "0 instead of real line numbers in output\n"; + // ================================================================================== << 79 + // clang-format on + + s << Color::Cyan << "\n[doctest] " << Color::None; + s << "for more information visit the project documentation\n\n"; + } + + void printRegisteredReporters() { + printVersion(); + auto printReporters = [this] (const reporterMap& reporters, const char* type) { + if(reporters.size()) { + s << Color::Cyan << "[doctest] " << Color::None << "listing all registered " << type << "\n"; + for(auto& curr : reporters) + s << "priority: " << std::setw(5) << curr.first.first + << " name: " << curr.first.second << "\n"; + } + }; + printReporters(getListeners(), "listeners"); + printReporters(getReporters(), "reporters"); + } + + // ========================================================================================= + // WHAT FOLLOWS ARE OVERRIDES OF THE VIRTUAL METHODS OF THE REPORTER INTERFACE + // ========================================================================================= + + void report_query(const QueryData& in) override { + if(opt.version) { + printVersion(); + } else if(opt.help) { + printHelp(); + } else if(opt.list_reporters) { + printRegisteredReporters(); + } else if(opt.count || opt.list_test_cases) { + if(opt.list_test_cases) { + s << Color::Cyan << "[doctest] " << Color::None + << "listing all test case names\n"; + separator_to_stream(); + } + + for(unsigned i = 0; i < in.num_data; ++i) + s << Color::None << in.data[i]->m_name << "\n"; + + separator_to_stream(); + + s << Color::Cyan << "[doctest] " << Color::None + << "unskipped test cases passing the current filters: " + << g_cs->numTestCasesPassingFilters << "\n"; + + } else if(opt.list_test_suites) { + s << Color::Cyan << "[doctest] " << Color::None << "listing all test suites\n"; + separator_to_stream(); + + for(unsigned i = 0; i < in.num_data; ++i) + s << Color::None << in.data[i]->m_test_suite << "\n"; + + separator_to_stream(); + + s << Color::Cyan << "[doctest] " << Color::None + << "unskipped test cases passing the current filters: " + << g_cs->numTestCasesPassingFilters << "\n"; + s << Color::Cyan << "[doctest] " << Color::None + << "test suites with unskipped test cases passing the current filters: " + << g_cs->numTestSuitesPassingFilters << "\n"; + } + } + + void test_run_start() override { + if(!opt.minimal) + printIntro(); + } + + void test_run_end(const TestRunStats& p) override { + if(opt.minimal && p.numTestCasesFailed == 0) + return; + + separator_to_stream(); + s << std::dec; + + auto totwidth = int(std::ceil(log10(static_cast(std::max(p.numTestCasesPassingFilters, static_cast(p.numAsserts))) + 1))); + auto passwidth = int(std::ceil(log10(static_cast(std::max(p.numTestCasesPassingFilters - p.numTestCasesFailed, static_cast(p.numAsserts - p.numAssertsFailed))) + 1))); + auto failwidth = int(std::ceil(log10(static_cast(std::max(p.numTestCasesFailed, static_cast(p.numAssertsFailed))) + 1))); + const bool anythingFailed = p.numTestCasesFailed > 0 || p.numAssertsFailed > 0; + s << Color::Cyan << "[doctest] " << Color::None << "test cases: " << std::setw(totwidth) + << p.numTestCasesPassingFilters << " | " + << ((p.numTestCasesPassingFilters == 0 || anythingFailed) ? Color::None : + Color::Green) + << std::setw(passwidth) << p.numTestCasesPassingFilters - p.numTestCasesFailed << " passed" + << Color::None << " | " << (p.numTestCasesFailed > 0 ? Color::Red : Color::None) + << std::setw(failwidth) << p.numTestCasesFailed << " failed" << Color::None << " |"; + if(opt.no_skipped_summary == false) { + const int numSkipped = p.numTestCases - p.numTestCasesPassingFilters; + s << " " << (numSkipped == 0 ? Color::None : Color::Yellow) << numSkipped + << " skipped" << Color::None; + } + s << "\n"; + s << Color::Cyan << "[doctest] " << Color::None << "assertions: " << std::setw(totwidth) + << p.numAsserts << " | " + << ((p.numAsserts == 0 || anythingFailed) ? Color::None : Color::Green) + << std::setw(passwidth) << (p.numAsserts - p.numAssertsFailed) << " passed" << Color::None + << " | " << (p.numAssertsFailed > 0 ? Color::Red : Color::None) << std::setw(failwidth) + << p.numAssertsFailed << " failed" << Color::None << " |\n"; + s << Color::Cyan << "[doctest] " << Color::None + << "Status: " << (p.numTestCasesFailed > 0 ? Color::Red : Color::Green) + << ((p.numTestCasesFailed > 0) ? "FAILURE!" : "SUCCESS!") << Color::None << std::endl; + } + + void test_case_start(const TestCaseData& in) override { + hasLoggedCurrentTestStart = false; + tc = ∈ + subcasesStack.clear(); + currentSubcaseLevel = 0; + } + + void test_case_reenter(const TestCaseData&) override { + subcasesStack.clear(); + } + + void test_case_end(const CurrentTestCaseStats& st) override { + if(tc->m_no_output) + return; + + // log the preamble of the test case only if there is something + // else to print - something other than that an assert has failed + if(opt.duration || + (st.failure_flags && st.failure_flags != static_cast(TestCaseFailureReason::AssertFailure))) + logTestStart(); + + if(opt.duration) + s << Color::None << std::setprecision(6) << std::fixed << st.seconds + << " s: " << tc->m_name << "\n"; + + if(st.failure_flags & TestCaseFailureReason::Timeout) + s << Color::Red << "Test case exceeded time limit of " << std::setprecision(6) + << std::fixed << tc->m_timeout << "!\n"; + + if(st.failure_flags & TestCaseFailureReason::ShouldHaveFailedButDidnt) { + s << Color::Red << "Should have failed but didn't! Marking it as failed!\n"; + } else if(st.failure_flags & TestCaseFailureReason::ShouldHaveFailedAndDid) { + s << Color::Yellow << "Failed as expected so marking it as not failed\n"; + } else if(st.failure_flags & TestCaseFailureReason::CouldHaveFailedAndDid) { + s << Color::Yellow << "Allowed to fail so marking it as not failed\n"; + } else if(st.failure_flags & TestCaseFailureReason::DidntFailExactlyNumTimes) { + s << Color::Red << "Didn't fail exactly " << tc->m_expected_failures + << " times so marking it as failed!\n"; + } else if(st.failure_flags & TestCaseFailureReason::FailedExactlyNumTimes) { + s << Color::Yellow << "Failed exactly " << tc->m_expected_failures + << " times as expected so marking it as not failed!\n"; + } + if(st.failure_flags & TestCaseFailureReason::TooManyFailedAsserts) { + s << Color::Red << "Aborting - too many failed asserts!\n"; + } + s << Color::None; // lgtm [cpp/useless-expression] + } + + void test_case_exception(const TestCaseException& e) override { + DOCTEST_LOCK_MUTEX(mutex) + if(tc->m_no_output) + return; + + logTestStart(); + + file_line_to_stream(tc->m_file.c_str(), tc->m_line, " "); + successOrFailColoredStringToStream(false, e.is_crash ? assertType::is_require : + assertType::is_check); + s << Color::Red << (e.is_crash ? "test case CRASHED: " : "test case THREW exception: ") + << Color::Cyan << e.error_string << "\n"; + + int num_stringified_contexts = get_num_stringified_contexts(); + if(num_stringified_contexts) { + auto stringified_contexts = get_stringified_contexts(); + s << Color::None << " logged: "; + for(int i = num_stringified_contexts; i > 0; --i) { + s << (i == num_stringified_contexts ? "" : " ") + << stringified_contexts[i - 1] << "\n"; + } + } + s << "\n" << Color::None; + } + + void subcase_start(const SubcaseSignature& subc) override { + subcasesStack.push_back(subc); + ++currentSubcaseLevel; + hasLoggedCurrentTestStart = false; + } + + void subcase_end() override { + --currentSubcaseLevel; + hasLoggedCurrentTestStart = false; + } + + void log_assert(const AssertData& rb) override { + if((!rb.m_failed && !opt.success) || tc->m_no_output) + return; + + DOCTEST_LOCK_MUTEX(mutex) + + logTestStart(); + + file_line_to_stream(rb.m_file, rb.m_line, " "); + successOrFailColoredStringToStream(!rb.m_failed, rb.m_at); + + fulltext_log_assert_to_stream(s, rb); + + log_contexts(); + } + + void log_message(const MessageData& mb) override { + if(tc->m_no_output) + return; + + DOCTEST_LOCK_MUTEX(mutex) + + logTestStart(); + + file_line_to_stream(mb.m_file, mb.m_line, " "); + s << getSuccessOrFailColor(false, mb.m_severity) + << getSuccessOrFailString(mb.m_severity & assertType::is_warn, mb.m_severity, + "MESSAGE") << ": "; + s << Color::None << mb.m_string << "\n"; + log_contexts(); + } + + void test_case_skipped(const TestCaseData&) override {} + }; + + DOCTEST_REGISTER_REPORTER("console", 0, ConsoleReporter); + +#ifdef DOCTEST_PLATFORM_WINDOWS + struct DebugOutputWindowReporter : public ConsoleReporter + { + DOCTEST_THREAD_LOCAL static std::ostringstream oss; + + DebugOutputWindowReporter(const ContextOptions& co) + : ConsoleReporter(co, oss) {} + +#define DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(func, type, arg) \ + void func(type arg) override { \ + bool with_col = g_no_colors; \ + g_no_colors = false; \ + ConsoleReporter::func(arg); \ + if(oss.tellp() != std::streampos{}) { \ + DOCTEST_OUTPUT_DEBUG_STRING(oss.str().c_str()); \ + oss.str(""); \ + } \ + g_no_colors = with_col; \ + } + + DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(test_run_start, DOCTEST_EMPTY, DOCTEST_EMPTY) + DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(test_run_end, const TestRunStats&, in) + DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(test_case_start, const TestCaseData&, in) + DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(test_case_reenter, const TestCaseData&, in) + DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(test_case_end, const CurrentTestCaseStats&, in) + DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(test_case_exception, const TestCaseException&, in) + DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(subcase_start, const SubcaseSignature&, in) + DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(subcase_end, DOCTEST_EMPTY, DOCTEST_EMPTY) + DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(log_assert, const AssertData&, in) + DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(log_message, const MessageData&, in) + DOCTEST_DEBUG_OUTPUT_REPORTER_OVERRIDE(test_case_skipped, const TestCaseData&, in) + }; + + DOCTEST_THREAD_LOCAL std::ostringstream DebugOutputWindowReporter::oss; +#endif // DOCTEST_PLATFORM_WINDOWS + + // the implementation of parseOption() + bool parseOptionImpl(int argc, const char* const* argv, const char* pattern, String* value) { + // going from the end to the beginning and stopping on the first occurrence from the end + for(int i = argc; i > 0; --i) { + auto index = i - 1; + auto temp = std::strstr(argv[index], pattern); + if(temp && (value || strlen(temp) == strlen(pattern))) { //!OCLINT prefer early exits and continue + // eliminate matches in which the chars before the option are not '-' + bool noBadCharsFound = true; + auto curr = argv[index]; + while(curr != temp) { + if(*curr++ != '-') { + noBadCharsFound = false; + break; + } + } + if(noBadCharsFound && argv[index][0] == '-') { + if(value) { + // parsing the value of an option + temp += strlen(pattern); + const unsigned len = strlen(temp); + if(len) { + *value = temp; + return true; + } + } else { + // just a flag - no value + return true; + } + } + } + } + return false; + } + + // parses an option and returns the string after the '=' character + bool parseOption(int argc, const char* const* argv, const char* pattern, String* value = nullptr, + const String& defaultVal = String()) { + if(value) + *value = defaultVal; +#ifndef DOCTEST_CONFIG_NO_UNPREFIXED_OPTIONS + // offset (normally 3 for "dt-") to skip prefix + if(parseOptionImpl(argc, argv, pattern + strlen(DOCTEST_CONFIG_OPTIONS_PREFIX), value)) + return true; +#endif // DOCTEST_CONFIG_NO_UNPREFIXED_OPTIONS + return parseOptionImpl(argc, argv, pattern, value); + } + + // locates a flag on the command line + bool parseFlag(int argc, const char* const* argv, const char* pattern) { + return parseOption(argc, argv, pattern); + } + + // parses a comma separated list of words after a pattern in one of the arguments in argv + bool parseCommaSepArgs(int argc, const char* const* argv, const char* pattern, + std::vector& res) { + String filtersString; + if(parseOption(argc, argv, pattern, &filtersString)) { + // tokenize with "," as a separator, unless escaped with backslash + std::ostringstream s; + auto flush = [&s, &res]() { + auto string = s.str(); + if(string.size() > 0) { + res.push_back(string.c_str()); + } + s.str(""); + }; + + bool seenBackslash = false; + const char* current = filtersString.c_str(); + const char* end = current + strlen(current); + while(current != end) { + char character = *current++; + if(seenBackslash) { + seenBackslash = false; + if(character == ',' || character == '\\') { + s.put(character); + continue; + } + s.put('\\'); + } + if(character == '\\') { + seenBackslash = true; + } else if(character == ',') { + flush(); + } else { + s.put(character); + } + } + + if(seenBackslash) { + s.put('\\'); + } + flush(); + return true; + } + return false; + } + + enum optionType + { + option_bool, + option_int + }; + + // parses an int/bool option from the command line + bool parseIntOption(int argc, const char* const* argv, const char* pattern, optionType type, + int& res) { + String parsedValue; + if(!parseOption(argc, argv, pattern, &parsedValue)) + return false; + + if(type) { + // integer + // TODO: change this to use std::stoi or something else! currently it uses undefined behavior - assumes '0' on failed parse... + int theInt = std::atoi(parsedValue.c_str()); + if (theInt != 0) { + res = theInt; //!OCLINT parameter reassignment + return true; + } + } else { + // boolean + const char positive[][5] = { "1", "true", "on", "yes" }; // 5 - strlen("true") + 1 + const char negative[][6] = { "0", "false", "off", "no" }; // 6 - strlen("false") + 1 + + // if the value matches any of the positive/negative possibilities + for (unsigned i = 0; i < 4; i++) { + if (parsedValue.compare(positive[i], true) == 0) { + res = 1; //!OCLINT parameter reassignment + return true; + } + if (parsedValue.compare(negative[i], true) == 0) { + res = 0; //!OCLINT parameter reassignment + return true; + } + } + } + return false; + } +} // namespace + +Context::Context(int argc, const char* const* argv) + : p(new detail::ContextState) { + parseArgs(argc, argv, true); + if(argc) + p->binary_name = argv[0]; +} + +Context::~Context() { + if(g_cs == p) + g_cs = nullptr; + delete p; +} + +void Context::applyCommandLine(int argc, const char* const* argv) { + parseArgs(argc, argv); + if(argc) + p->binary_name = argv[0]; +} + +// parses args +void Context::parseArgs(int argc, const char* const* argv, bool withDefaults) { + using namespace detail; + + // clang-format off + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "source-file=", p->filters[0]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "sf=", p->filters[0]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "source-file-exclude=",p->filters[1]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "sfe=", p->filters[1]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "test-suite=", p->filters[2]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "ts=", p->filters[2]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "test-suite-exclude=", p->filters[3]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "tse=", p->filters[3]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "test-case=", p->filters[4]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "tc=", p->filters[4]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "test-case-exclude=", p->filters[5]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "tce=", p->filters[5]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "subcase=", p->filters[6]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "sc=", p->filters[6]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "subcase-exclude=", p->filters[7]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "sce=", p->filters[7]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "reporters=", p->filters[8]); + parseCommaSepArgs(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "r=", p->filters[8]); + // clang-format on + + int intRes = 0; + String strRes; + +#define DOCTEST_PARSE_AS_BOOL_OR_FLAG(name, sname, var, default) \ + if(parseIntOption(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX name "=", option_bool, intRes) || \ + parseIntOption(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX sname "=", option_bool, intRes)) \ + p->var = static_cast(intRes); \ + else if(parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX name) || \ + parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX sname)) \ + p->var = true; \ + else if(withDefaults) \ + p->var = default + +#define DOCTEST_PARSE_INT_OPTION(name, sname, var, default) \ + if(parseIntOption(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX name "=", option_int, intRes) || \ + parseIntOption(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX sname "=", option_int, intRes)) \ + p->var = intRes; \ + else if(withDefaults) \ + p->var = default + +#define DOCTEST_PARSE_STR_OPTION(name, sname, var, default) \ + if(parseOption(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX name "=", &strRes, default) || \ + parseOption(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX sname "=", &strRes, default) || \ + withDefaults) \ + p->var = strRes + + // clang-format off + DOCTEST_PARSE_STR_OPTION("out", "o", out, ""); + DOCTEST_PARSE_STR_OPTION("order-by", "ob", order_by, "file"); + DOCTEST_PARSE_INT_OPTION("rand-seed", "rs", rand_seed, 0); + + DOCTEST_PARSE_INT_OPTION("first", "f", first, 0); + DOCTEST_PARSE_INT_OPTION("last", "l", last, UINT_MAX); + + DOCTEST_PARSE_INT_OPTION("abort-after", "aa", abort_after, 0); + DOCTEST_PARSE_INT_OPTION("subcase-filter-levels", "scfl", subcase_filter_levels, INT_MAX); + + DOCTEST_PARSE_AS_BOOL_OR_FLAG("success", "s", success, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("case-sensitive", "cs", case_sensitive, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("exit", "e", exit, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("duration", "d", duration, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("minimal", "m", minimal, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("quiet", "q", quiet, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-throw", "nt", no_throw, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-exitcode", "ne", no_exitcode, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-run", "nr", no_run, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-intro", "ni", no_intro, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-version", "nv", no_version, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-colors", "nc", no_colors, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("force-colors", "fc", force_colors, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-breaks", "nb", no_breaks, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-skip", "ns", no_skip, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("gnu-file-line", "gfl", gnu_file_line, !bool(DOCTEST_MSVC)); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-path-filenames", "npf", no_path_in_filenames, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-line-numbers", "nln", no_line_numbers, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-debug-output", "ndo", no_debug_output, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-skipped-summary", "nss", no_skipped_summary, false); + DOCTEST_PARSE_AS_BOOL_OR_FLAG("no-time-in-output", "ntio", no_time_in_output, false); + // clang-format on + + if(withDefaults) { + p->help = false; + p->version = false; + p->count = false; + p->list_test_cases = false; + p->list_test_suites = false; + p->list_reporters = false; + } + if(parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "help") || + parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "h") || + parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "?")) { + p->help = true; + p->exit = true; + } + if(parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "version") || + parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "v")) { + p->version = true; + p->exit = true; + } + if(parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "count") || + parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "c")) { + p->count = true; + p->exit = true; + } + if(parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "list-test-cases") || + parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "ltc")) { + p->list_test_cases = true; + p->exit = true; + } + if(parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "list-test-suites") || + parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "lts")) { + p->list_test_suites = true; + p->exit = true; + } + if(parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "list-reporters") || + parseFlag(argc, argv, DOCTEST_CONFIG_OPTIONS_PREFIX "lr")) { + p->list_reporters = true; + p->exit = true; + } +} + +// allows the user to add procedurally to the filters from the command line +void Context::addFilter(const char* filter, const char* value) { setOption(filter, value); } + +// allows the user to clear all filters from the command line +void Context::clearFilters() { + for(auto& curr : p->filters) + curr.clear(); +} + +// allows the user to override procedurally the bool options from the command line +void Context::setOption(const char* option, bool value) { + setOption(option, value ? "true" : "false"); +} + +// allows the user to override procedurally the int options from the command line +void Context::setOption(const char* option, int value) { + setOption(option, toString(value).c_str()); +} + +// allows the user to override procedurally the string options from the command line +void Context::setOption(const char* option, const char* value) { + auto argv = String("-") + option + "=" + value; + auto lvalue = argv.c_str(); + parseArgs(1, &lvalue); +} + +// users should query this in their main() and exit the program if true +bool Context::shouldExit() { return p->exit; } + +void Context::setAsDefaultForAssertsOutOfTestCases() { g_cs = p; } + +void Context::setAssertHandler(detail::assert_handler ah) { p->ah = ah; } + +void Context::setCout(std::ostream* out) { p->cout = out; } + +static class DiscardOStream : public std::ostream +{ +private: + class : public std::streambuf + { + private: + // allowing some buffering decreases the amount of calls to overflow + char buf[1024]; + + protected: + std::streamsize xsputn(const char_type*, std::streamsize count) override { return count; } + + int_type overflow(int_type ch) override { + setp(std::begin(buf), std::end(buf)); + return traits_type::not_eof(ch); + } + } discardBuf; + +public: + DiscardOStream() + : std::ostream(&discardBuf) {} +} discardOut; + +// the main function that does all the filtering and test running +int Context::run() { + using namespace detail; + + // save the old context state in case such was setup - for using asserts out of a testing context + auto old_cs = g_cs; + // this is the current contest + g_cs = p; + is_running_in_test = true; + + g_no_colors = p->no_colors; + p->resetRunData(); + + std::fstream fstr; + if(p->cout == nullptr) { + if(p->quiet) { + p->cout = &discardOut; + } else if(p->out.size()) { + // to a file if specified + fstr.open(p->out.c_str(), std::fstream::out); + p->cout = &fstr; + } else { +#ifndef DOCTEST_CONFIG_NO_INCLUDE_IOSTREAM + // stdout by default + p->cout = &std::cout; +#else // DOCTEST_CONFIG_NO_INCLUDE_IOSTREAM + return EXIT_FAILURE; +#endif // DOCTEST_CONFIG_NO_INCLUDE_IOSTREAM + } + } + + FatalConditionHandler::allocateAltStackMem(); + + auto cleanup_and_return = [&]() { + FatalConditionHandler::freeAltStackMem(); + + if(fstr.is_open()) + fstr.close(); + + // restore context + g_cs = old_cs; + is_running_in_test = false; + + // we have to free the reporters which were allocated when the run started + for(auto& curr : p->reporters_currently_used) + delete curr; + p->reporters_currently_used.clear(); + + if(p->numTestCasesFailed && !p->no_exitcode) + return EXIT_FAILURE; + return EXIT_SUCCESS; + }; + + // setup default reporter if none is given through the command line + if(p->filters[8].empty()) + p->filters[8].push_back("console"); + + // check to see if any of the registered reporters has been selected + for(auto& curr : getReporters()) { + if(matchesAny(curr.first.second.c_str(), p->filters[8], false, p->case_sensitive)) + p->reporters_currently_used.push_back(curr.second(*g_cs)); + } + + // TODO: check if there is nothing in reporters_currently_used + + // prepend all listeners + for(auto& curr : getListeners()) + p->reporters_currently_used.insert(p->reporters_currently_used.begin(), curr.second(*g_cs)); + +#ifdef DOCTEST_PLATFORM_WINDOWS + if(isDebuggerActive() && p->no_debug_output == false) + p->reporters_currently_used.push_back(new DebugOutputWindowReporter(*g_cs)); +#endif // DOCTEST_PLATFORM_WINDOWS + + // handle version, help and no_run + if(p->no_run || p->version || p->help || p->list_reporters) { + DOCTEST_ITERATE_THROUGH_REPORTERS(report_query, QueryData()); + + return cleanup_and_return(); + } + + std::vector testArray; + for(auto& curr : getRegisteredTests()) + testArray.push_back(&curr); + p->numTestCases = testArray.size(); + + // sort the collected records + if(!testArray.empty()) { + if(p->order_by.compare("file", true) == 0) { + std::sort(testArray.begin(), testArray.end(), fileOrderComparator); + } else if(p->order_by.compare("suite", true) == 0) { + std::sort(testArray.begin(), testArray.end(), suiteOrderComparator); + } else if(p->order_by.compare("name", true) == 0) { + std::sort(testArray.begin(), testArray.end(), nameOrderComparator); + } else if(p->order_by.compare("rand", true) == 0) { + std::srand(p->rand_seed); + + // random_shuffle implementation + const auto first = &testArray[0]; + for(size_t i = testArray.size() - 1; i > 0; --i) { + int idxToSwap = std::rand() % (i + 1); + + const auto temp = first[i]; + + first[i] = first[idxToSwap]; + first[idxToSwap] = temp; + } + } else if(p->order_by.compare("none", true) == 0) { + // means no sorting - beneficial for death tests which call into the executable + // with a specific test case in mind - we don't want to slow down the startup times + } + } + + std::set testSuitesPassingFilt; + + bool query_mode = p->count || p->list_test_cases || p->list_test_suites; + std::vector queryResults; + + if(!query_mode) + DOCTEST_ITERATE_THROUGH_REPORTERS(test_run_start, DOCTEST_EMPTY); + + // invoke the registered functions if they match the filter criteria (or just count them) + for(auto& curr : testArray) { + const auto& tc = *curr; + + bool skip_me = false; + if(tc.m_skip && !p->no_skip) + skip_me = true; + + if(!matchesAny(tc.m_file.c_str(), p->filters[0], true, p->case_sensitive)) + skip_me = true; + if(matchesAny(tc.m_file.c_str(), p->filters[1], false, p->case_sensitive)) + skip_me = true; + if(!matchesAny(tc.m_test_suite, p->filters[2], true, p->case_sensitive)) + skip_me = true; + if(matchesAny(tc.m_test_suite, p->filters[3], false, p->case_sensitive)) + skip_me = true; + if(!matchesAny(tc.m_name, p->filters[4], true, p->case_sensitive)) + skip_me = true; + if(matchesAny(tc.m_name, p->filters[5], false, p->case_sensitive)) + skip_me = true; + + if(!skip_me) + p->numTestCasesPassingFilters++; + + // skip the test if it is not in the execution range + if((p->last < p->numTestCasesPassingFilters && p->first <= p->last) || + (p->first > p->numTestCasesPassingFilters)) + skip_me = true; + + if(skip_me) { + if(!query_mode) + DOCTEST_ITERATE_THROUGH_REPORTERS(test_case_skipped, tc); + continue; + } + + // do not execute the test if we are to only count the number of filter passing tests + if(p->count) + continue; + + // print the name of the test and don't execute it + if(p->list_test_cases) { + queryResults.push_back(&tc); + continue; + } + + // print the name of the test suite if not done already and don't execute it + if(p->list_test_suites) { + if((testSuitesPassingFilt.count(tc.m_test_suite) == 0) && tc.m_test_suite[0] != '\0') { + queryResults.push_back(&tc); + testSuitesPassingFilt.insert(tc.m_test_suite); + p->numTestSuitesPassingFilters++; + } + continue; + } + + // execute the test if it passes all the filtering + { + p->currentTest = &tc; + + p->failure_flags = TestCaseFailureReason::None; + p->seconds = 0; + + // reset atomic counters + p->numAssertsFailedCurrentTest_atomic = 0; + p->numAssertsCurrentTest_atomic = 0; + + p->fullyTraversedSubcases.clear(); + + DOCTEST_ITERATE_THROUGH_REPORTERS(test_case_start, tc); + + p->timer.start(); + + bool run_test = true; + + do { + // reset some of the fields for subcases (except for the set of fully passed ones) + p->reachedLeaf = false; + // May not be empty if previous subcase exited via exception. + p->subcaseStack.clear(); + p->currentSubcaseDepth = 0; + + p->shouldLogCurrentException = true; + + // reset stuff for logging with INFO() + p->stringifiedContexts.clear(); + +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS + try { +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS +// MSVC 2015 diagnoses fatalConditionHandler as unused (because reset() is a static method) +DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4101) // unreferenced local variable + FatalConditionHandler fatalConditionHandler; // Handle signals + // execute the test + tc.m_test(); + fatalConditionHandler.reset(); +DOCTEST_MSVC_SUPPRESS_WARNING_POP +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS + } catch(const TestFailureException&) { + p->failure_flags |= TestCaseFailureReason::AssertFailure; + } catch(...) { + DOCTEST_ITERATE_THROUGH_REPORTERS(test_case_exception, + {translateActiveException(), false}); + p->failure_flags |= TestCaseFailureReason::Exception; + } +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS + + // exit this loop if enough assertions have failed - even if there are more subcases + if(p->abort_after > 0 && + p->numAssertsFailed + p->numAssertsFailedCurrentTest_atomic >= p->abort_after) { + run_test = false; + p->failure_flags |= TestCaseFailureReason::TooManyFailedAsserts; + } + + if(!p->nextSubcaseStack.empty() && run_test) + DOCTEST_ITERATE_THROUGH_REPORTERS(test_case_reenter, tc); + if(p->nextSubcaseStack.empty()) + run_test = false; + } while(run_test); + + p->finalizeTestCaseData(); + + DOCTEST_ITERATE_THROUGH_REPORTERS(test_case_end, *g_cs); + + p->currentTest = nullptr; + + // stop executing tests if enough assertions have failed + if(p->abort_after > 0 && p->numAssertsFailed >= p->abort_after) + break; + } + } + + if(!query_mode) { + DOCTEST_ITERATE_THROUGH_REPORTERS(test_run_end, *g_cs); + } else { + QueryData qdata; + qdata.run_stats = g_cs; + qdata.data = queryResults.data(); + qdata.num_data = unsigned(queryResults.size()); + DOCTEST_ITERATE_THROUGH_REPORTERS(report_query, qdata); + } + + return cleanup_and_return(); +} + +DOCTEST_DEFINE_INTERFACE(IReporter) + +int IReporter::get_num_active_contexts() { return detail::g_infoContexts.size(); } +const IContextScope* const* IReporter::get_active_contexts() { + return get_num_active_contexts() ? &detail::g_infoContexts[0] : nullptr; +} + +int IReporter::get_num_stringified_contexts() { return detail::g_cs->stringifiedContexts.size(); } +const String* IReporter::get_stringified_contexts() { + return get_num_stringified_contexts() ? &detail::g_cs->stringifiedContexts[0] : nullptr; +} + +namespace detail { + void registerReporterImpl(const char* name, int priority, reporterCreatorFunc c, bool isReporter) { + if(isReporter) + getReporters().insert(reporterMap::value_type(reporterMap::key_type(priority, name), c)); + else + getListeners().insert(reporterMap::value_type(reporterMap::key_type(priority, name), c)); + } +} // namespace detail + +} // namespace doctest + +#endif // DOCTEST_CONFIG_DISABLE + +#ifdef DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN +DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4007) // 'function' : must be 'attribute' - see issue #182 +int main(int argc, char** argv) { return doctest::Context(argc, argv).run(); } +DOCTEST_MSVC_SUPPRESS_WARNING_POP +#endif // DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN + +DOCTEST_CLANG_SUPPRESS_WARNING_POP +DOCTEST_MSVC_SUPPRESS_WARNING_POP +DOCTEST_GCC_SUPPRESS_WARNING_POP + +DOCTEST_SUPPRESS_COMMON_WARNINGS_POP + +#endif // DOCTEST_LIBRARY_IMPLEMENTATION +#endif // DOCTEST_CONFIG_IMPLEMENT + +#ifdef DOCTEST_UNDEF_WIN32_LEAN_AND_MEAN +#undef WIN32_LEAN_AND_MEAN +#undef DOCTEST_UNDEF_WIN32_LEAN_AND_MEAN +#endif // DOCTEST_UNDEF_WIN32_LEAN_AND_MEAN + +#ifdef DOCTEST_UNDEF_NOMINMAX +#undef NOMINMAX +#undef DOCTEST_UNDEF_NOMINMAX +#endif // DOCTEST_UNDEF_NOMINMAX diff --git a/tests/unit-tests/Source/doctest.h b/tests/unit-tests/Source/doctest.h new file mode 100644 index 000000000000..5b9e61133038 --- /dev/null +++ b/tests/unit-tests/Source/doctest.h @@ -0,0 +1,2 @@ +#pragma once +#include "doctest_fwd.h" diff --git a/tests/unit-tests/Source/doctest_fwd.h b/tests/unit-tests/Source/doctest_fwd.h new file mode 100644 index 000000000000..3e08e81b90a5 --- /dev/null +++ b/tests/unit-tests/Source/doctest_fwd.h @@ -0,0 +1,3082 @@ +// +// doctest.h - the lightest feature-rich C++ single-header testing framework for unit tests and TDD +// +// Copyright (c) 2016-2023 Viktor Kirilov +// +// Distributed under the MIT Software License +// See accompanying file LICENSE.txt or copy at +// https://opensource.org/licenses/MIT +// +// The documentation can be found at the library's page: +// https://github.com/doctest/doctest/blob/master/doc/markdown/readme.md +// +// ================================================================================================= +// ================================================================================================= +// ================================================================================================= +// +// The library is heavily influenced by Catch - https://github.com/catchorg/Catch2 +// which uses the Boost Software License - Version 1.0 +// see here - https://github.com/catchorg/Catch2/blob/master/LICENSE.txt +// +// The concept of subcases (sections in Catch) and expression decomposition are from there. +// Some parts of the code are taken directly: +// - stringification - the detection of "ostream& operator<<(ostream&, const T&)" and StringMaker<> +// - the Approx() helper class for floating point comparison +// - colors in the console +// - breaking into a debugger +// - signal / SEH handling +// - timer +// - XmlWriter class - thanks to Phil Nash for allowing the direct reuse (AKA copy/paste) +// +// The expression decomposing templates are taken from lest - https://github.com/martinmoene/lest +// which uses the Boost Software License - Version 1.0 +// see here - https://github.com/martinmoene/lest/blob/master/LICENSE.txt +// +// ================================================================================================= +// ================================================================================================= +// ================================================================================================= + +#ifndef DOCTEST_LIBRARY_INCLUDED +#define DOCTEST_LIBRARY_INCLUDED + +// ================================================================================================= +// == VERSION ====================================================================================== +// ================================================================================================= + +#define DOCTEST_VERSION_MAJOR 2 +#define DOCTEST_VERSION_MINOR 4 +#define DOCTEST_VERSION_PATCH 11 + +// util we need here +#define DOCTEST_TOSTR_IMPL(x) #x +#define DOCTEST_TOSTR(x) DOCTEST_TOSTR_IMPL(x) + +#define DOCTEST_VERSION_STR \ + DOCTEST_TOSTR(DOCTEST_VERSION_MAJOR) "." \ + DOCTEST_TOSTR(DOCTEST_VERSION_MINOR) "." \ + DOCTEST_TOSTR(DOCTEST_VERSION_PATCH) + +#define DOCTEST_VERSION \ + (DOCTEST_VERSION_MAJOR * 10000 + DOCTEST_VERSION_MINOR * 100 + DOCTEST_VERSION_PATCH) + +// ================================================================================================= +// == COMPILER VERSION ============================================================================= +// ================================================================================================= + +// ideas for the version stuff are taken from here: https://github.com/cxxstuff/cxx_detect + +#ifdef _MSC_VER +#define DOCTEST_CPLUSPLUS _MSVC_LANG +#else +#define DOCTEST_CPLUSPLUS __cplusplus +#endif + +#define DOCTEST_COMPILER(MAJOR, MINOR, PATCH) ((MAJOR)*10000000 + (MINOR)*100000 + (PATCH)) + +// GCC/Clang and GCC/MSVC are mutually exclusive, but Clang/MSVC are not because of clang-cl... +#if defined(_MSC_VER) && defined(_MSC_FULL_VER) +#if _MSC_VER == _MSC_FULL_VER / 10000 +#define DOCTEST_MSVC DOCTEST_COMPILER(_MSC_VER / 100, _MSC_VER % 100, _MSC_FULL_VER % 10000) +#else // MSVC +#define DOCTEST_MSVC \ + DOCTEST_COMPILER(_MSC_VER / 100, (_MSC_FULL_VER / 100000) % 100, _MSC_FULL_VER % 100000) +#endif // MSVC +#endif // MSVC +#if defined(__clang__) && defined(__clang_minor__) && defined(__clang_patchlevel__) +#define DOCTEST_CLANG DOCTEST_COMPILER(__clang_major__, __clang_minor__, __clang_patchlevel__) +#elif defined(__GNUC__) && defined(__GNUC_MINOR__) && defined(__GNUC_PATCHLEVEL__) && \ + !defined(__INTEL_COMPILER) +#define DOCTEST_GCC DOCTEST_COMPILER(__GNUC__, __GNUC_MINOR__, __GNUC_PATCHLEVEL__) +#endif // GCC +#if defined(__INTEL_COMPILER) +#define DOCTEST_ICC DOCTEST_COMPILER(__INTEL_COMPILER / 100, __INTEL_COMPILER % 100, 0) +#endif // ICC + +#ifndef DOCTEST_MSVC +#define DOCTEST_MSVC 0 +#endif // DOCTEST_MSVC +#ifndef DOCTEST_CLANG +#define DOCTEST_CLANG 0 +#endif // DOCTEST_CLANG +#ifndef DOCTEST_GCC +#define DOCTEST_GCC 0 +#endif // DOCTEST_GCC +#ifndef DOCTEST_ICC +#define DOCTEST_ICC 0 +#endif // DOCTEST_ICC + +// ================================================================================================= +// == COMPILER WARNINGS HELPERS ==================================================================== +// ================================================================================================= + +#if DOCTEST_CLANG && !DOCTEST_ICC +#define DOCTEST_PRAGMA_TO_STR(x) _Pragma(#x) +#define DOCTEST_CLANG_SUPPRESS_WARNING_PUSH _Pragma("clang diagnostic push") +#define DOCTEST_CLANG_SUPPRESS_WARNING(w) DOCTEST_PRAGMA_TO_STR(clang diagnostic ignored w) +#define DOCTEST_CLANG_SUPPRESS_WARNING_POP _Pragma("clang diagnostic pop") +#define DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH(w) \ + DOCTEST_CLANG_SUPPRESS_WARNING_PUSH DOCTEST_CLANG_SUPPRESS_WARNING(w) +#else // DOCTEST_CLANG +#define DOCTEST_CLANG_SUPPRESS_WARNING_PUSH +#define DOCTEST_CLANG_SUPPRESS_WARNING(w) +#define DOCTEST_CLANG_SUPPRESS_WARNING_POP +#define DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH(w) +#endif // DOCTEST_CLANG + +#if DOCTEST_GCC +#define DOCTEST_PRAGMA_TO_STR(x) _Pragma(#x) +#define DOCTEST_GCC_SUPPRESS_WARNING_PUSH _Pragma("GCC diagnostic push") +#define DOCTEST_GCC_SUPPRESS_WARNING(w) DOCTEST_PRAGMA_TO_STR(GCC diagnostic ignored w) +#define DOCTEST_GCC_SUPPRESS_WARNING_POP _Pragma("GCC diagnostic pop") +#define DOCTEST_GCC_SUPPRESS_WARNING_WITH_PUSH(w) \ + DOCTEST_GCC_SUPPRESS_WARNING_PUSH DOCTEST_GCC_SUPPRESS_WARNING(w) +#else // DOCTEST_GCC +#define DOCTEST_GCC_SUPPRESS_WARNING_PUSH +#define DOCTEST_GCC_SUPPRESS_WARNING(w) +#define DOCTEST_GCC_SUPPRESS_WARNING_POP +#define DOCTEST_GCC_SUPPRESS_WARNING_WITH_PUSH(w) +#endif // DOCTEST_GCC + +#if DOCTEST_MSVC +#define DOCTEST_MSVC_SUPPRESS_WARNING_PUSH __pragma(warning(push)) +#define DOCTEST_MSVC_SUPPRESS_WARNING(w) __pragma(warning(disable : w)) +#define DOCTEST_MSVC_SUPPRESS_WARNING_POP __pragma(warning(pop)) +#define DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(w) \ + DOCTEST_MSVC_SUPPRESS_WARNING_PUSH DOCTEST_MSVC_SUPPRESS_WARNING(w) +#else // DOCTEST_MSVC +#define DOCTEST_MSVC_SUPPRESS_WARNING_PUSH +#define DOCTEST_MSVC_SUPPRESS_WARNING(w) +#define DOCTEST_MSVC_SUPPRESS_WARNING_POP +#define DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(w) +#endif // DOCTEST_MSVC + +// ================================================================================================= +// == COMPILER WARNINGS ============================================================================ +// ================================================================================================= + +// both the header and the implementation suppress all of these, +// so it only makes sense to aggregate them like so +#define DOCTEST_SUPPRESS_COMMON_WARNINGS_PUSH \ + DOCTEST_CLANG_SUPPRESS_WARNING_PUSH \ + DOCTEST_CLANG_SUPPRESS_WARNING("-Wunknown-pragmas") \ + DOCTEST_CLANG_SUPPRESS_WARNING("-Wweak-vtables") \ + DOCTEST_CLANG_SUPPRESS_WARNING("-Wpadded") \ + DOCTEST_CLANG_SUPPRESS_WARNING("-Wmissing-prototypes") \ + DOCTEST_CLANG_SUPPRESS_WARNING("-Wc++98-compat") \ + DOCTEST_CLANG_SUPPRESS_WARNING("-Wc++98-compat-pedantic") \ + \ + DOCTEST_GCC_SUPPRESS_WARNING_PUSH \ + DOCTEST_GCC_SUPPRESS_WARNING("-Wunknown-pragmas") \ + DOCTEST_GCC_SUPPRESS_WARNING("-Wpragmas") \ + DOCTEST_GCC_SUPPRESS_WARNING("-Weffc++") \ + DOCTEST_GCC_SUPPRESS_WARNING("-Wstrict-overflow") \ + DOCTEST_GCC_SUPPRESS_WARNING("-Wstrict-aliasing") \ + DOCTEST_GCC_SUPPRESS_WARNING("-Wmissing-declarations") \ + DOCTEST_GCC_SUPPRESS_WARNING("-Wuseless-cast") \ + DOCTEST_GCC_SUPPRESS_WARNING("-Wnoexcept") \ + \ + DOCTEST_MSVC_SUPPRESS_WARNING_PUSH \ + /* these 4 also disabled globally via cmake: */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4514) /* unreferenced inline function has been removed */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4571) /* SEH related */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4710) /* function not inlined */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4711) /* function selected for inline expansion*/ \ + /* common ones */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4616) /* invalid compiler warning */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4619) /* invalid compiler warning */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4996) /* The compiler encountered a deprecated declaration */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4706) /* assignment within conditional expression */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4512) /* 'class' : assignment operator could not be generated */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4127) /* conditional expression is constant */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4820) /* padding */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4625) /* copy constructor was implicitly deleted */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4626) /* assignment operator was implicitly deleted */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(5027) /* move assignment operator implicitly deleted */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(5026) /* move constructor was implicitly deleted */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4640) /* construction of local static object not thread-safe */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(5045) /* Spectre mitigation for memory load */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(5264) /* 'variable-name': 'const' variable is not used */ \ + /* static analysis */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(26439) /* Function may not throw. Declare it 'noexcept' */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(26495) /* Always initialize a member variable */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(26451) /* Arithmetic overflow ... */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(26444) /* Avoid unnamed objects with custom ctor and dtor... */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(26812) /* Prefer 'enum class' over 'enum' */ + +#define DOCTEST_SUPPRESS_COMMON_WARNINGS_POP \ + DOCTEST_CLANG_SUPPRESS_WARNING_POP \ + DOCTEST_GCC_SUPPRESS_WARNING_POP \ + DOCTEST_MSVC_SUPPRESS_WARNING_POP + +DOCTEST_SUPPRESS_COMMON_WARNINGS_PUSH + +DOCTEST_CLANG_SUPPRESS_WARNING_PUSH +DOCTEST_CLANG_SUPPRESS_WARNING("-Wnon-virtual-dtor") +DOCTEST_CLANG_SUPPRESS_WARNING("-Wdeprecated") + +DOCTEST_GCC_SUPPRESS_WARNING_PUSH +DOCTEST_GCC_SUPPRESS_WARNING("-Wctor-dtor-privacy") +DOCTEST_GCC_SUPPRESS_WARNING("-Wnon-virtual-dtor") +DOCTEST_GCC_SUPPRESS_WARNING("-Wsign-promo") + +DOCTEST_MSVC_SUPPRESS_WARNING_PUSH +DOCTEST_MSVC_SUPPRESS_WARNING(4623) // default constructor was implicitly defined as deleted + +#define DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN \ + DOCTEST_MSVC_SUPPRESS_WARNING_PUSH \ + DOCTEST_MSVC_SUPPRESS_WARNING(4548) /* before comma no effect; expected side - effect */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4265) /* virtual functions, but destructor is not virtual */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4986) /* exception specification does not match previous */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4350) /* 'member1' called instead of 'member2' */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4668) /* not defined as a preprocessor macro */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4365) /* signed/unsigned mismatch */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4774) /* format string not a string literal */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4820) /* padding */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4625) /* copy constructor was implicitly deleted */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4626) /* assignment operator was implicitly deleted */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(5027) /* move assignment operator implicitly deleted */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(5026) /* move constructor was implicitly deleted */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4623) /* default constructor was implicitly deleted */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(5039) /* pointer to pot. throwing function passed to extern C */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(5045) /* Spectre mitigation for memory load */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(5105) /* macro producing 'defined' has undefined behavior */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(4738) /* storing float result in memory, loss of performance */ \ + DOCTEST_MSVC_SUPPRESS_WARNING(5262) /* implicit fall-through */ + +#define DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END DOCTEST_MSVC_SUPPRESS_WARNING_POP + +// ================================================================================================= +// == FEATURE DETECTION ============================================================================ +// ================================================================================================= + +// general compiler feature support table: https://en.cppreference.com/w/cpp/compiler_support +// MSVC C++11 feature support table: https://msdn.microsoft.com/en-us/library/hh567368.aspx +// GCC C++11 feature support table: https://gcc.gnu.org/projects/cxx-status.html +// MSVC version table: +// https://en.wikipedia.org/wiki/Microsoft_Visual_C%2B%2B#Internal_version_numbering +// MSVC++ 14.3 (17) _MSC_VER == 1930 (Visual Studio 2022) +// MSVC++ 14.2 (16) _MSC_VER == 1920 (Visual Studio 2019) +// MSVC++ 14.1 (15) _MSC_VER == 1910 (Visual Studio 2017) +// MSVC++ 14.0 _MSC_VER == 1900 (Visual Studio 2015) +// MSVC++ 12.0 _MSC_VER == 1800 (Visual Studio 2013) +// MSVC++ 11.0 _MSC_VER == 1700 (Visual Studio 2012) +// MSVC++ 10.0 _MSC_VER == 1600 (Visual Studio 2010) +// MSVC++ 9.0 _MSC_VER == 1500 (Visual Studio 2008) +// MSVC++ 8.0 _MSC_VER == 1400 (Visual Studio 2005) + +// Universal Windows Platform support +#if defined(WINAPI_FAMILY) && (WINAPI_FAMILY == WINAPI_FAMILY_APP) +#define DOCTEST_CONFIG_NO_WINDOWS_SEH +#endif // WINAPI_FAMILY +#if DOCTEST_MSVC && !defined(DOCTEST_CONFIG_WINDOWS_SEH) +#define DOCTEST_CONFIG_WINDOWS_SEH +#endif // MSVC +#if defined(DOCTEST_CONFIG_NO_WINDOWS_SEH) && defined(DOCTEST_CONFIG_WINDOWS_SEH) +#undef DOCTEST_CONFIG_WINDOWS_SEH +#endif // DOCTEST_CONFIG_NO_WINDOWS_SEH + +#if !defined(_WIN32) && !defined(__QNX__) && !defined(DOCTEST_CONFIG_POSIX_SIGNALS) && \ + !defined(__EMSCRIPTEN__) && !defined(__wasi__) +#define DOCTEST_CONFIG_POSIX_SIGNALS +#endif // _WIN32 +#if defined(DOCTEST_CONFIG_NO_POSIX_SIGNALS) && defined(DOCTEST_CONFIG_POSIX_SIGNALS) +#undef DOCTEST_CONFIG_POSIX_SIGNALS +#endif // DOCTEST_CONFIG_NO_POSIX_SIGNALS + +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS +#if !defined(__cpp_exceptions) && !defined(__EXCEPTIONS) && !defined(_CPPUNWIND) \ + || defined(__wasi__) +#define DOCTEST_CONFIG_NO_EXCEPTIONS +#endif // no exceptions +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS + +#ifdef DOCTEST_CONFIG_NO_EXCEPTIONS_BUT_WITH_ALL_ASSERTS +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS +#define DOCTEST_CONFIG_NO_EXCEPTIONS +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS_BUT_WITH_ALL_ASSERTS + +#if defined(DOCTEST_CONFIG_NO_EXCEPTIONS) && !defined(DOCTEST_CONFIG_NO_TRY_CATCH_IN_ASSERTS) +#define DOCTEST_CONFIG_NO_TRY_CATCH_IN_ASSERTS +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS && !DOCTEST_CONFIG_NO_TRY_CATCH_IN_ASSERTS + +#ifdef __wasi__ +#define DOCTEST_CONFIG_NO_MULTITHREADING +#endif + +#if defined(DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN) && !defined(DOCTEST_CONFIG_IMPLEMENT) +#define DOCTEST_CONFIG_IMPLEMENT +#endif // DOCTEST_CONFIG_IMPLEMENT_WITH_MAIN + +#if defined(_WIN32) || defined(__CYGWIN__) +#if DOCTEST_MSVC +#define DOCTEST_SYMBOL_EXPORT __declspec(dllexport) +#define DOCTEST_SYMBOL_IMPORT __declspec(dllimport) +#else // MSVC +#define DOCTEST_SYMBOL_EXPORT __attribute__((dllexport)) +#define DOCTEST_SYMBOL_IMPORT __attribute__((dllimport)) +#endif // MSVC +#else // _WIN32 +#define DOCTEST_SYMBOL_EXPORT __attribute__((visibility("default"))) +#define DOCTEST_SYMBOL_IMPORT +#endif // _WIN32 + +#ifdef DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL +#ifdef DOCTEST_CONFIG_IMPLEMENT +#define DOCTEST_INTERFACE DOCTEST_SYMBOL_EXPORT +#else // DOCTEST_CONFIG_IMPLEMENT +#define DOCTEST_INTERFACE DOCTEST_SYMBOL_IMPORT +#endif // DOCTEST_CONFIG_IMPLEMENT +#else // DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL +#define DOCTEST_INTERFACE +#endif // DOCTEST_CONFIG_IMPLEMENTATION_IN_DLL + +// needed for extern template instantiations +// see https://github.com/fmtlib/fmt/issues/2228 +#if DOCTEST_MSVC +#define DOCTEST_INTERFACE_DECL +#define DOCTEST_INTERFACE_DEF DOCTEST_INTERFACE +#else // DOCTEST_MSVC +#define DOCTEST_INTERFACE_DECL DOCTEST_INTERFACE +#define DOCTEST_INTERFACE_DEF +#endif // DOCTEST_MSVC + +#define DOCTEST_EMPTY + +#if DOCTEST_MSVC +#define DOCTEST_NOINLINE __declspec(noinline) +#define DOCTEST_UNUSED +#define DOCTEST_ALIGNMENT(x) +#elif DOCTEST_CLANG && DOCTEST_CLANG < DOCTEST_COMPILER(3, 5, 0) +#define DOCTEST_NOINLINE +#define DOCTEST_UNUSED +#define DOCTEST_ALIGNMENT(x) +#else +#define DOCTEST_NOINLINE __attribute__((noinline)) +#define DOCTEST_UNUSED __attribute__((unused)) +#define DOCTEST_ALIGNMENT(x) __attribute__((aligned(x))) +#endif + +#ifdef DOCTEST_CONFIG_NO_CONTRADICTING_INLINE +#define DOCTEST_INLINE_NOINLINE inline +#else +#define DOCTEST_INLINE_NOINLINE inline DOCTEST_NOINLINE +#endif + +#ifndef DOCTEST_NORETURN +#if DOCTEST_MSVC && (DOCTEST_MSVC < DOCTEST_COMPILER(19, 0, 0)) +#define DOCTEST_NORETURN +#else // DOCTEST_MSVC +#define DOCTEST_NORETURN [[noreturn]] +#endif // DOCTEST_MSVC +#endif // DOCTEST_NORETURN + +#ifndef DOCTEST_NOEXCEPT +#if DOCTEST_MSVC && (DOCTEST_MSVC < DOCTEST_COMPILER(19, 0, 0)) +#define DOCTEST_NOEXCEPT +#else // DOCTEST_MSVC +#define DOCTEST_NOEXCEPT noexcept +#endif // DOCTEST_MSVC +#endif // DOCTEST_NOEXCEPT + +#ifndef DOCTEST_CONSTEXPR +#if DOCTEST_MSVC && (DOCTEST_MSVC < DOCTEST_COMPILER(19, 0, 0)) +#define DOCTEST_CONSTEXPR const +#define DOCTEST_CONSTEXPR_FUNC inline +#else // DOCTEST_MSVC +#define DOCTEST_CONSTEXPR constexpr +#define DOCTEST_CONSTEXPR_FUNC constexpr +#endif // DOCTEST_MSVC +#endif // DOCTEST_CONSTEXPR + +#ifndef DOCTEST_NO_SANITIZE_INTEGER +#if DOCTEST_CLANG >= DOCTEST_COMPILER(3, 7, 0) +#define DOCTEST_NO_SANITIZE_INTEGER __attribute__((no_sanitize("integer"))) +#else +#define DOCTEST_NO_SANITIZE_INTEGER +#endif +#endif // DOCTEST_NO_SANITIZE_INTEGER + +// ================================================================================================= +// == FEATURE DETECTION END ======================================================================== +// ================================================================================================= + +#define DOCTEST_DECLARE_INTERFACE(name) \ + virtual ~name(); \ + name() = default; \ + name(const name&) = delete; \ + name(name&&) = delete; \ + name& operator=(const name&) = delete; \ + name& operator=(name&&) = delete; + +#define DOCTEST_DEFINE_INTERFACE(name) \ + name::~name() = default; + +// internal macros for string concatenation and anonymous variable name generation +#define DOCTEST_CAT_IMPL(s1, s2) s1##s2 +#define DOCTEST_CAT(s1, s2) DOCTEST_CAT_IMPL(s1, s2) +#ifdef __COUNTER__ // not standard and may be missing for some compilers +#define DOCTEST_ANONYMOUS(x) DOCTEST_CAT(x, __COUNTER__) +#else // __COUNTER__ +#define DOCTEST_ANONYMOUS(x) DOCTEST_CAT(x, __LINE__) +#endif // __COUNTER__ + +#ifndef DOCTEST_CONFIG_ASSERTION_PARAMETERS_BY_VALUE +#define DOCTEST_REF_WRAP(x) x& +#else // DOCTEST_CONFIG_ASSERTION_PARAMETERS_BY_VALUE +#define DOCTEST_REF_WRAP(x) x +#endif // DOCTEST_CONFIG_ASSERTION_PARAMETERS_BY_VALUE + +// not using __APPLE__ because... this is how Catch does it +#ifdef __MAC_OS_X_VERSION_MIN_REQUIRED +#define DOCTEST_PLATFORM_MAC +#elif defined(__IPHONE_OS_VERSION_MIN_REQUIRED) +#define DOCTEST_PLATFORM_IPHONE +#elif defined(_WIN32) +#define DOCTEST_PLATFORM_WINDOWS +#elif defined(__wasi__) +#define DOCTEST_PLATFORM_WASI +#else // DOCTEST_PLATFORM +#define DOCTEST_PLATFORM_LINUX +#endif // DOCTEST_PLATFORM + +namespace doctest { namespace detail { + static DOCTEST_CONSTEXPR int consume(const int*, int) noexcept { return 0; } +}} + +#define DOCTEST_GLOBAL_NO_WARNINGS(var, ...) \ + DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wglobal-constructors") \ + static const int var = doctest::detail::consume(&var, __VA_ARGS__); \ + DOCTEST_CLANG_SUPPRESS_WARNING_POP + +#ifndef DOCTEST_BREAK_INTO_DEBUGGER +// should probably take a look at https://github.com/scottt/debugbreak +#ifdef DOCTEST_PLATFORM_LINUX +#if defined(__GNUC__) && (defined(__i386) || defined(__x86_64)) +// Break at the location of the failing check if possible +#define DOCTEST_BREAK_INTO_DEBUGGER() __asm__("int $3\n" : :) // NOLINT(hicpp-no-assembler) +#else +#include +#define DOCTEST_BREAK_INTO_DEBUGGER() raise(SIGTRAP) +#endif +#elif defined(DOCTEST_PLATFORM_MAC) +#if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__) || defined(__i386) +#define DOCTEST_BREAK_INTO_DEBUGGER() __asm__("int $3\n" : :) // NOLINT(hicpp-no-assembler) +#elif defined(__ppc__) || defined(__ppc64__) +// https://www.cocoawithlove.com/2008/03/break-into-debugger.html +#define DOCTEST_BREAK_INTO_DEBUGGER() __asm__("li r0, 20\nsc\nnop\nli r0, 37\nli r4, 2\nsc\nnop\n": : : "memory","r0","r3","r4") // NOLINT(hicpp-no-assembler) +#else +#define DOCTEST_BREAK_INTO_DEBUGGER() __asm__("brk #0"); // NOLINT(hicpp-no-assembler) +#endif +#elif DOCTEST_MSVC +#define DOCTEST_BREAK_INTO_DEBUGGER() __debugbreak() +#elif defined(__MINGW32__) +DOCTEST_GCC_SUPPRESS_WARNING_WITH_PUSH("-Wredundant-decls") +extern "C" __declspec(dllimport) void __stdcall DebugBreak(); +DOCTEST_GCC_SUPPRESS_WARNING_POP +#define DOCTEST_BREAK_INTO_DEBUGGER() ::DebugBreak() +#else // linux +#define DOCTEST_BREAK_INTO_DEBUGGER() (static_cast(0)) +#endif // linux +#endif // DOCTEST_BREAK_INTO_DEBUGGER + +// this is kept here for backwards compatibility since the config option was changed +#ifdef DOCTEST_CONFIG_USE_IOSFWD +#ifndef DOCTEST_CONFIG_USE_STD_HEADERS +#define DOCTEST_CONFIG_USE_STD_HEADERS +#endif +#endif // DOCTEST_CONFIG_USE_IOSFWD + +// for clang - always include ciso646 (which drags some std stuff) because +// we want to check if we are using libc++ with the _LIBCPP_VERSION macro in +// which case we don't want to forward declare stuff from std - for reference: +// https://github.com/doctest/doctest/issues/126 +// https://github.com/doctest/doctest/issues/356 +#if DOCTEST_CLANG +#include +#endif // clang + +#ifdef _LIBCPP_VERSION +#ifndef DOCTEST_CONFIG_USE_STD_HEADERS +#define DOCTEST_CONFIG_USE_STD_HEADERS +#endif +#endif // _LIBCPP_VERSION + +#ifdef DOCTEST_CONFIG_USE_STD_HEADERS +#ifndef DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS +#define DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS +#endif // DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS +DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_BEGIN +#include +#include +#include +DOCTEST_MAKE_STD_HEADERS_CLEAN_FROM_WARNINGS_ON_WALL_END +#else // DOCTEST_CONFIG_USE_STD_HEADERS + +// Forward declaring 'X' in namespace std is not permitted by the C++ Standard. +DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4643) + +namespace std { // NOLINT(cert-dcl58-cpp) +typedef decltype(nullptr) nullptr_t; // NOLINT(modernize-use-using) +typedef decltype(sizeof(void*)) size_t; // NOLINT(modernize-use-using) +template +struct char_traits; +template <> +struct char_traits; +template +class basic_ostream; // NOLINT(fuchsia-virtual-inheritance) +typedef basic_ostream> ostream; // NOLINT(modernize-use-using) +template +// NOLINTNEXTLINE +basic_ostream& operator<<(basic_ostream&, const char*); +template +class basic_istream; +typedef basic_istream> istream; // NOLINT(modernize-use-using) +template +class tuple; +#if DOCTEST_MSVC >= DOCTEST_COMPILER(19, 20, 0) +// see this issue on why this is needed: https://github.com/doctest/doctest/issues/183 +template +class allocator; +template +class basic_string; +using string = basic_string, allocator>; +#endif // VS 2019 +} // namespace std + +DOCTEST_MSVC_SUPPRESS_WARNING_POP + +#endif // DOCTEST_CONFIG_USE_STD_HEADERS + +#ifdef DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS +#include +#endif // DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS + +namespace doctest { + +using std::size_t; + +DOCTEST_INTERFACE extern bool is_running_in_test; + +#ifndef DOCTEST_CONFIG_STRING_SIZE_TYPE +#define DOCTEST_CONFIG_STRING_SIZE_TYPE unsigned +#endif + +// A 24 byte string class (can be as small as 17 for x64 and 13 for x86) that can hold strings with length +// of up to 23 chars on the stack before going on the heap - the last byte of the buffer is used for: +// - "is small" bit - the highest bit - if "0" then it is small - otherwise its "1" (128) +// - if small - capacity left before going on the heap - using the lowest 5 bits +// - if small - 2 bits are left unused - the second and third highest ones +// - if small - acts as a null terminator if strlen() is 23 (24 including the null terminator) +// and the "is small" bit remains "0" ("as well as the capacity left") so its OK +// Idea taken from this lecture about the string implementation of facebook/folly - fbstring +// https://www.youtube.com/watch?v=kPR8h4-qZdk +// TODO: +// - optimizations - like not deleting memory unnecessarily in operator= and etc. +// - resize/reserve/clear +// - replace +// - back/front +// - iterator stuff +// - find & friends +// - push_back/pop_back +// - assign/insert/erase +// - relational operators as free functions - taking const char* as one of the params +class DOCTEST_INTERFACE String +{ +public: + using size_type = DOCTEST_CONFIG_STRING_SIZE_TYPE; + +private: + static DOCTEST_CONSTEXPR size_type len = 24; //!OCLINT avoid private static members + static DOCTEST_CONSTEXPR size_type last = len - 1; //!OCLINT avoid private static members + + struct view // len should be more than sizeof(view) - because of the final byte for flags + { + char* ptr; + size_type size; + size_type capacity; + }; + + union + { + char buf[len]; // NOLINT(*-avoid-c-arrays) + view data; + }; + + char* allocate(size_type sz); + + bool isOnStack() const noexcept { return (buf[last] & 128) == 0; } + void setOnHeap() noexcept; + void setLast(size_type in = last) noexcept; + void setSize(size_type sz) noexcept; + + void copy(const String& other); + +public: + static DOCTEST_CONSTEXPR size_type npos = static_cast(-1); + + String() noexcept; + ~String(); + + // cppcheck-suppress noExplicitConstructor + String(const char* in); + String(const char* in, size_type in_size); + + String(std::istream& in, size_type in_size); + + String(const String& other); + String& operator=(const String& other); + + String& operator+=(const String& other); + + String(String&& other) noexcept; + String& operator=(String&& other) noexcept; + + char operator[](size_type i) const; + char& operator[](size_type i); + + // the only functions I'm willing to leave in the interface - available for inlining + const char* c_str() const { return const_cast(this)->c_str(); } // NOLINT + char* c_str() { + if (isOnStack()) { + return reinterpret_cast(buf); + } + return data.ptr; + } + + size_type size() const; + size_type capacity() const; + + String substr(size_type pos, size_type cnt = npos) &&; + String substr(size_type pos, size_type cnt = npos) const &; + + size_type find(char ch, size_type pos = 0) const; + size_type rfind(char ch, size_type pos = npos) const; + + int compare(const char* other, bool no_case = false) const; + int compare(const String& other, bool no_case = false) const; + +friend DOCTEST_INTERFACE std::ostream& operator<<(std::ostream& s, const String& in); +}; + +DOCTEST_INTERFACE String operator+(const String& lhs, const String& rhs); + +DOCTEST_INTERFACE bool operator==(const String& lhs, const String& rhs); +DOCTEST_INTERFACE bool operator!=(const String& lhs, const String& rhs); +DOCTEST_INTERFACE bool operator<(const String& lhs, const String& rhs); +DOCTEST_INTERFACE bool operator>(const String& lhs, const String& rhs); +DOCTEST_INTERFACE bool operator<=(const String& lhs, const String& rhs); +DOCTEST_INTERFACE bool operator>=(const String& lhs, const String& rhs); + +class DOCTEST_INTERFACE Contains { +public: + explicit Contains(const String& string); + + bool checkWith(const String& other) const; + + String string; +}; + +DOCTEST_INTERFACE String toString(const Contains& in); + +DOCTEST_INTERFACE bool operator==(const String& lhs, const Contains& rhs); +DOCTEST_INTERFACE bool operator==(const Contains& lhs, const String& rhs); +DOCTEST_INTERFACE bool operator!=(const String& lhs, const Contains& rhs); +DOCTEST_INTERFACE bool operator!=(const Contains& lhs, const String& rhs); + +namespace Color { + enum Enum + { + None = 0, + White, + Red, + Green, + Blue, + Cyan, + Yellow, + Grey, + + Bright = 0x10, + + BrightRed = Bright | Red, + BrightGreen = Bright | Green, + LightGrey = Bright | Grey, + BrightWhite = Bright | White + }; + + DOCTEST_INTERFACE std::ostream& operator<<(std::ostream& s, Color::Enum code); +} // namespace Color + +namespace assertType { + enum Enum + { + // macro traits + + is_warn = 1, + is_check = 2 * is_warn, + is_require = 2 * is_check, + + is_normal = 2 * is_require, + is_throws = 2 * is_normal, + is_throws_as = 2 * is_throws, + is_throws_with = 2 * is_throws_as, + is_nothrow = 2 * is_throws_with, + + is_false = 2 * is_nothrow, + is_unary = 2 * is_false, // not checked anywhere - used just to distinguish the types + + is_eq = 2 * is_unary, + is_ne = 2 * is_eq, + + is_lt = 2 * is_ne, + is_gt = 2 * is_lt, + + is_ge = 2 * is_gt, + is_le = 2 * is_ge, + + // macro types + + DT_WARN = is_normal | is_warn, + DT_CHECK = is_normal | is_check, + DT_REQUIRE = is_normal | is_require, + + DT_WARN_FALSE = is_normal | is_false | is_warn, + DT_CHECK_FALSE = is_normal | is_false | is_check, + DT_REQUIRE_FALSE = is_normal | is_false | is_require, + + DT_WARN_THROWS = is_throws | is_warn, + DT_CHECK_THROWS = is_throws | is_check, + DT_REQUIRE_THROWS = is_throws | is_require, + + DT_WARN_THROWS_AS = is_throws_as | is_warn, + DT_CHECK_THROWS_AS = is_throws_as | is_check, + DT_REQUIRE_THROWS_AS = is_throws_as | is_require, + + DT_WARN_THROWS_WITH = is_throws_with | is_warn, + DT_CHECK_THROWS_WITH = is_throws_with | is_check, + DT_REQUIRE_THROWS_WITH = is_throws_with | is_require, + + DT_WARN_THROWS_WITH_AS = is_throws_with | is_throws_as | is_warn, + DT_CHECK_THROWS_WITH_AS = is_throws_with | is_throws_as | is_check, + DT_REQUIRE_THROWS_WITH_AS = is_throws_with | is_throws_as | is_require, + + DT_WARN_NOTHROW = is_nothrow | is_warn, + DT_CHECK_NOTHROW = is_nothrow | is_check, + DT_REQUIRE_NOTHROW = is_nothrow | is_require, + + DT_WARN_EQ = is_normal | is_eq | is_warn, + DT_CHECK_EQ = is_normal | is_eq | is_check, + DT_REQUIRE_EQ = is_normal | is_eq | is_require, + + DT_WARN_NE = is_normal | is_ne | is_warn, + DT_CHECK_NE = is_normal | is_ne | is_check, + DT_REQUIRE_NE = is_normal | is_ne | is_require, + + DT_WARN_GT = is_normal | is_gt | is_warn, + DT_CHECK_GT = is_normal | is_gt | is_check, + DT_REQUIRE_GT = is_normal | is_gt | is_require, + + DT_WARN_LT = is_normal | is_lt | is_warn, + DT_CHECK_LT = is_normal | is_lt | is_check, + DT_REQUIRE_LT = is_normal | is_lt | is_require, + + DT_WARN_GE = is_normal | is_ge | is_warn, + DT_CHECK_GE = is_normal | is_ge | is_check, + DT_REQUIRE_GE = is_normal | is_ge | is_require, + + DT_WARN_LE = is_normal | is_le | is_warn, + DT_CHECK_LE = is_normal | is_le | is_check, + DT_REQUIRE_LE = is_normal | is_le | is_require, + + DT_WARN_UNARY = is_normal | is_unary | is_warn, + DT_CHECK_UNARY = is_normal | is_unary | is_check, + DT_REQUIRE_UNARY = is_normal | is_unary | is_require, + + DT_WARN_UNARY_FALSE = is_normal | is_false | is_unary | is_warn, + DT_CHECK_UNARY_FALSE = is_normal | is_false | is_unary | is_check, + DT_REQUIRE_UNARY_FALSE = is_normal | is_false | is_unary | is_require, + }; +} // namespace assertType + +DOCTEST_INTERFACE const char* assertString(assertType::Enum at); +DOCTEST_INTERFACE const char* failureString(assertType::Enum at); +DOCTEST_INTERFACE const char* skipPathFromFilename(const char* file); + +struct DOCTEST_INTERFACE TestCaseData +{ + String m_file; // the file in which the test was registered (using String - see #350) + unsigned m_line; // the line where the test was registered + const char* m_name; // name of the test case + const char* m_test_suite; // the test suite in which the test was added + const char* m_description; + bool m_skip; + bool m_no_breaks; + bool m_no_output; + bool m_may_fail; + bool m_should_fail; + int m_expected_failures; + double m_timeout; +}; + +struct DOCTEST_INTERFACE AssertData +{ + // common - for all asserts + const TestCaseData* m_test_case; + assertType::Enum m_at; + const char* m_file; + int m_line; + const char* m_expr; + bool m_failed; + + // exception-related - for all asserts + bool m_threw; + String m_exception; + + // for normal asserts + String m_decomp; + + // for specific exception-related asserts + bool m_threw_as; + const char* m_exception_type; + + class DOCTEST_INTERFACE StringContains { + private: + Contains content; + bool isContains; + + public: + StringContains(const String& str) : content(str), isContains(false) { } + StringContains(Contains cntn) : content(static_cast(cntn)), isContains(true) { } + + bool check(const String& str) { return isContains ? (content == str) : (content.string == str); } + + operator const String&() const { return content.string; } + + const char* c_str() const { return content.string.c_str(); } + } m_exception_string; + + AssertData(assertType::Enum at, const char* file, int line, const char* expr, + const char* exception_type, const StringContains& exception_string); +}; + +struct DOCTEST_INTERFACE MessageData +{ + String m_string; + const char* m_file; + int m_line; + assertType::Enum m_severity; +}; + +struct DOCTEST_INTERFACE SubcaseSignature +{ + String m_name; + const char* m_file; + int m_line; + + bool operator==(const SubcaseSignature& other) const; + bool operator<(const SubcaseSignature& other) const; +}; + +struct DOCTEST_INTERFACE IContextScope +{ + DOCTEST_DECLARE_INTERFACE(IContextScope) + virtual void stringify(std::ostream*) const = 0; +}; + +namespace detail { + struct DOCTEST_INTERFACE TestCase; +} // namespace detail + +struct ContextOptions //!OCLINT too many fields +{ + std::ostream* cout = nullptr; // stdout stream + String binary_name; // the test binary name + + const detail::TestCase* currentTest = nullptr; + + // == parameters from the command line + String out; // output filename + String order_by; // how tests should be ordered + unsigned rand_seed; // the seed for rand ordering + + unsigned first; // the first (matching) test to be executed + unsigned last; // the last (matching) test to be executed + + int abort_after; // stop tests after this many failed assertions + int subcase_filter_levels; // apply the subcase filters for the first N levels + + bool success; // include successful assertions in output + bool case_sensitive; // if filtering should be case sensitive + bool exit; // if the program should be exited after the tests are ran/whatever + bool duration; // print the time duration of each test case + bool minimal; // minimal console output (only test failures) + bool quiet; // no console output + bool no_throw; // to skip exceptions-related assertion macros + bool no_exitcode; // if the framework should return 0 as the exitcode + bool no_run; // to not run the tests at all (can be done with an "*" exclude) + bool no_intro; // to not print the intro of the framework + bool no_version; // to not print the version of the framework + bool no_colors; // if output to the console should be colorized + bool force_colors; // forces the use of colors even when a tty cannot be detected + bool no_breaks; // to not break into the debugger + bool no_skip; // don't skip test cases which are marked to be skipped + bool gnu_file_line; // if line numbers should be surrounded with :x: and not (x): + bool no_path_in_filenames; // if the path to files should be removed from the output + bool no_line_numbers; // if source code line numbers should be omitted from the output + bool no_debug_output; // no output in the debug console when a debugger is attached + bool no_skipped_summary; // don't print "skipped" in the summary !!! UNDOCUMENTED !!! + bool no_time_in_output; // omit any time/timestamps from output !!! UNDOCUMENTED !!! + + bool help; // to print the help + bool version; // to print the version + bool count; // if only the count of matching tests is to be retrieved + bool list_test_cases; // to list all tests matching the filters + bool list_test_suites; // to list all suites matching the filters + bool list_reporters; // lists all registered reporters +}; + +namespace detail { + namespace types { +#ifdef DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS + using namespace std; +#else + template + struct enable_if { }; + + template + struct enable_if { using type = T; }; + + struct true_type { static DOCTEST_CONSTEXPR bool value = true; }; + struct false_type { static DOCTEST_CONSTEXPR bool value = false; }; + + template struct remove_reference { using type = T; }; + template struct remove_reference { using type = T; }; + template struct remove_reference { using type = T; }; + + template struct is_rvalue_reference : false_type { }; + template struct is_rvalue_reference : true_type { }; + + template struct remove_const { using type = T; }; + template struct remove_const { using type = T; }; + + // Compiler intrinsics + template struct is_enum { static DOCTEST_CONSTEXPR bool value = __is_enum(T); }; + template struct underlying_type { using type = __underlying_type(T); }; + + template struct is_pointer : false_type { }; + template struct is_pointer : true_type { }; + + template struct is_array : false_type { }; + // NOLINTNEXTLINE(*-avoid-c-arrays) + template struct is_array : true_type { }; +#endif + } + + // + template + T&& declval(); + + template + DOCTEST_CONSTEXPR_FUNC T&& forward(typename types::remove_reference::type& t) DOCTEST_NOEXCEPT { + return static_cast(t); + } + + template + DOCTEST_CONSTEXPR_FUNC T&& forward(typename types::remove_reference::type&& t) DOCTEST_NOEXCEPT { + return static_cast(t); + } + + template + struct deferred_false : types::false_type { }; + +// MSVS 2015 :( +#if !DOCTEST_CLANG && defined(_MSC_VER) && _MSC_VER <= 1900 + template + struct has_global_insertion_operator : types::false_type { }; + + template + struct has_global_insertion_operator(), declval()), void())> : types::true_type { }; + + template + struct has_insertion_operator { static DOCTEST_CONSTEXPR bool value = has_global_insertion_operator::value; }; + + template + struct insert_hack; + + template + struct insert_hack { + static void insert(std::ostream& os, const T& t) { ::operator<<(os, t); } + }; + + template + struct insert_hack { + static void insert(std::ostream& os, const T& t) { operator<<(os, t); } + }; + + template + using insert_hack_t = insert_hack::value>; +#else + template + struct has_insertion_operator : types::false_type { }; +#endif + + template + struct has_insertion_operator(), declval()), void())> : types::true_type { }; + + template + struct should_stringify_as_underlying_type { + static DOCTEST_CONSTEXPR bool value = detail::types::is_enum::value && !doctest::detail::has_insertion_operator::value; + }; + + DOCTEST_INTERFACE std::ostream* tlssPush(); + DOCTEST_INTERFACE String tlssPop(); + + template + struct StringMakerBase { + template + static String convert(const DOCTEST_REF_WRAP(T)) { +#ifdef DOCTEST_CONFIG_REQUIRE_STRINGIFICATION_FOR_ALL_USED_TYPES + static_assert(deferred_false::value, "No stringification detected for type T. See string conversion manual"); +#endif + return "{?}"; + } + }; + + template + struct filldata; + + template + void filloss(std::ostream* stream, const T& in) { + filldata::fill(stream, in); + } + + template + void filloss(std::ostream* stream, const T (&in)[N]) { // NOLINT(*-avoid-c-arrays) + // T[N], T(&)[N], T(&&)[N] have same behaviour. + // Hence remove reference. + filloss::type>(stream, in); + } + + template + String toStream(const T& in) { + std::ostream* stream = tlssPush(); + filloss(stream, in); + return tlssPop(); + } + + template <> + struct StringMakerBase { + template + static String convert(const DOCTEST_REF_WRAP(T) in) { + return toStream(in); + } + }; +} // namespace detail + +template +struct StringMaker : public detail::StringMakerBase< + detail::has_insertion_operator::value || detail::types::is_pointer::value || detail::types::is_array::value> +{}; + +#ifndef DOCTEST_STRINGIFY +#ifdef DOCTEST_CONFIG_DOUBLE_STRINGIFY +#define DOCTEST_STRINGIFY(...) toString(toString(__VA_ARGS__)) +#else +#define DOCTEST_STRINGIFY(...) toString(__VA_ARGS__) +#endif +#endif + +template +String toString() { +#if DOCTEST_CLANG == 0 && DOCTEST_GCC == 0 && DOCTEST_ICC == 0 + String ret = __FUNCSIG__; // class doctest::String __cdecl doctest::toString(void) + String::size_type beginPos = ret.find('<'); + return ret.substr(beginPos + 1, ret.size() - beginPos - static_cast(sizeof(">(void)"))); +#else + String ret = __PRETTY_FUNCTION__; // doctest::String toString() [with T = TYPE] + String::size_type begin = ret.find('=') + 2; + return ret.substr(begin, ret.size() - begin - 1); +#endif +} + +template ::value, bool>::type = true> +String toString(const DOCTEST_REF_WRAP(T) value) { + return StringMaker::convert(value); +} + +#ifdef DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING +DOCTEST_INTERFACE String toString(const char* in); +#endif // DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING + +#if DOCTEST_MSVC >= DOCTEST_COMPILER(19, 20, 0) +// see this issue on why this is needed: https://github.com/doctest/doctest/issues/183 +DOCTEST_INTERFACE String toString(const std::string& in); +#endif // VS 2019 + +DOCTEST_INTERFACE String toString(String in); + +DOCTEST_INTERFACE String toString(std::nullptr_t); + +DOCTEST_INTERFACE String toString(bool in); + +DOCTEST_INTERFACE String toString(float in); +DOCTEST_INTERFACE String toString(double in); +DOCTEST_INTERFACE String toString(double long in); + +DOCTEST_INTERFACE String toString(char in); +DOCTEST_INTERFACE String toString(char signed in); +DOCTEST_INTERFACE String toString(char unsigned in); +DOCTEST_INTERFACE String toString(short in); +DOCTEST_INTERFACE String toString(short unsigned in); +DOCTEST_INTERFACE String toString(signed in); +DOCTEST_INTERFACE String toString(unsigned in); +DOCTEST_INTERFACE String toString(long in); +DOCTEST_INTERFACE String toString(long unsigned in); +DOCTEST_INTERFACE String toString(long long in); +DOCTEST_INTERFACE String toString(long long unsigned in); + +template ::value, bool>::type = true> +String toString(const DOCTEST_REF_WRAP(T) value) { + using UT = typename detail::types::underlying_type::type; + return (DOCTEST_STRINGIFY(static_cast(value))); +} + +namespace detail { + template + struct filldata + { + static void fill(std::ostream* stream, const T& in) { +#if defined(_MSC_VER) && _MSC_VER <= 1900 + insert_hack_t::insert(*stream, in); +#else + operator<<(*stream, in); +#endif + } + }; + +DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4866) +// NOLINTBEGIN(*-avoid-c-arrays) + template + struct filldata { + static void fill(std::ostream* stream, const T(&in)[N]) { + *stream << "["; + for (size_t i = 0; i < N; i++) { + if (i != 0) { *stream << ", "; } + *stream << (DOCTEST_STRINGIFY(in[i])); + } + *stream << "]"; + } + }; +// NOLINTEND(*-avoid-c-arrays) +DOCTEST_MSVC_SUPPRESS_WARNING_POP + + // Specialized since we don't want the terminating null byte! +// NOLINTBEGIN(*-avoid-c-arrays) + template + struct filldata { + static void fill(std::ostream* stream, const char (&in)[N]) { + *stream << String(in, in[N - 1] ? N : N - 1); + } // NOLINT(clang-analyzer-cplusplus.NewDeleteLeaks) + }; +// NOLINTEND(*-avoid-c-arrays) + + template <> + struct filldata { + static void fill(std::ostream* stream, const void* in); + }; + + template + struct filldata { +DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4180) + static void fill(std::ostream* stream, const T* in) { +DOCTEST_MSVC_SUPPRESS_WARNING_POP +DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wmicrosoft-cast") + filldata::fill(stream, +#if DOCTEST_GCC == 0 || DOCTEST_GCC >= DOCTEST_COMPILER(4, 9, 0) + reinterpret_cast(in) +#else + *reinterpret_cast(&in) +#endif + ); +DOCTEST_CLANG_SUPPRESS_WARNING_POP + } + }; +} + +struct DOCTEST_INTERFACE Approx +{ + Approx(double value); + + Approx operator()(double value) const; + +#ifdef DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS + template + explicit Approx(const T& value, + typename detail::types::enable_if::value>::type* = + static_cast(nullptr)) { + *this = static_cast(value); + } +#endif // DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS + + Approx& epsilon(double newEpsilon); + +#ifdef DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS + template + typename std::enable_if::value, Approx&>::type epsilon( + const T& newEpsilon) { + m_epsilon = static_cast(newEpsilon); + return *this; + } +#endif // DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS + + Approx& scale(double newScale); + +#ifdef DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS + template + typename std::enable_if::value, Approx&>::type scale( + const T& newScale) { + m_scale = static_cast(newScale); + return *this; + } +#endif // DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS + + // clang-format off + DOCTEST_INTERFACE friend bool operator==(double lhs, const Approx & rhs); + DOCTEST_INTERFACE friend bool operator==(const Approx & lhs, double rhs); + DOCTEST_INTERFACE friend bool operator!=(double lhs, const Approx & rhs); + DOCTEST_INTERFACE friend bool operator!=(const Approx & lhs, double rhs); + DOCTEST_INTERFACE friend bool operator<=(double lhs, const Approx & rhs); + DOCTEST_INTERFACE friend bool operator<=(const Approx & lhs, double rhs); + DOCTEST_INTERFACE friend bool operator>=(double lhs, const Approx & rhs); + DOCTEST_INTERFACE friend bool operator>=(const Approx & lhs, double rhs); + DOCTEST_INTERFACE friend bool operator< (double lhs, const Approx & rhs); + DOCTEST_INTERFACE friend bool operator< (const Approx & lhs, double rhs); + DOCTEST_INTERFACE friend bool operator> (double lhs, const Approx & rhs); + DOCTEST_INTERFACE friend bool operator> (const Approx & lhs, double rhs); + +#ifdef DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS +#define DOCTEST_APPROX_PREFIX \ + template friend typename std::enable_if::value, bool>::type + + DOCTEST_APPROX_PREFIX operator==(const T& lhs, const Approx& rhs) { return operator==(static_cast(lhs), rhs); } + DOCTEST_APPROX_PREFIX operator==(const Approx& lhs, const T& rhs) { return operator==(rhs, lhs); } + DOCTEST_APPROX_PREFIX operator!=(const T& lhs, const Approx& rhs) { return !operator==(lhs, rhs); } + DOCTEST_APPROX_PREFIX operator!=(const Approx& lhs, const T& rhs) { return !operator==(rhs, lhs); } + DOCTEST_APPROX_PREFIX operator<=(const T& lhs, const Approx& rhs) { return static_cast(lhs) < rhs.m_value || lhs == rhs; } + DOCTEST_APPROX_PREFIX operator<=(const Approx& lhs, const T& rhs) { return lhs.m_value < static_cast(rhs) || lhs == rhs; } + DOCTEST_APPROX_PREFIX operator>=(const T& lhs, const Approx& rhs) { return static_cast(lhs) > rhs.m_value || lhs == rhs; } + DOCTEST_APPROX_PREFIX operator>=(const Approx& lhs, const T& rhs) { return lhs.m_value > static_cast(rhs) || lhs == rhs; } + DOCTEST_APPROX_PREFIX operator< (const T& lhs, const Approx& rhs) { return static_cast(lhs) < rhs.m_value && lhs != rhs; } + DOCTEST_APPROX_PREFIX operator< (const Approx& lhs, const T& rhs) { return lhs.m_value < static_cast(rhs) && lhs != rhs; } + DOCTEST_APPROX_PREFIX operator> (const T& lhs, const Approx& rhs) { return static_cast(lhs) > rhs.m_value && lhs != rhs; } + DOCTEST_APPROX_PREFIX operator> (const Approx& lhs, const T& rhs) { return lhs.m_value > static_cast(rhs) && lhs != rhs; } +#undef DOCTEST_APPROX_PREFIX +#endif // DOCTEST_CONFIG_INCLUDE_TYPE_TRAITS + + // clang-format on + + double m_epsilon; + double m_scale; + double m_value; +}; + +DOCTEST_INTERFACE String toString(const Approx& in); + +DOCTEST_INTERFACE const ContextOptions* getContextOptions(); + +template +struct DOCTEST_INTERFACE_DECL IsNaN +{ + F value; bool flipped; + IsNaN(F f, bool flip = false) : value(f), flipped(flip) { } + IsNaN operator!() const { return { value, !flipped }; } + operator bool() const; +}; +#ifndef __MINGW32__ +extern template struct DOCTEST_INTERFACE_DECL IsNaN; +extern template struct DOCTEST_INTERFACE_DECL IsNaN; +extern template struct DOCTEST_INTERFACE_DECL IsNaN; +#endif +DOCTEST_INTERFACE String toString(IsNaN in); +DOCTEST_INTERFACE String toString(IsNaN in); +DOCTEST_INTERFACE String toString(IsNaN in); + +#ifndef DOCTEST_CONFIG_DISABLE + +namespace detail { + // clang-format off +#ifdef DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING + template struct decay_array { using type = T; }; + template struct decay_array { using type = T*; }; + template struct decay_array { using type = T*; }; + + template struct not_char_pointer { static DOCTEST_CONSTEXPR int value = 1; }; + template<> struct not_char_pointer { static DOCTEST_CONSTEXPR int value = 0; }; + template<> struct not_char_pointer { static DOCTEST_CONSTEXPR int value = 0; }; + + template struct can_use_op : public not_char_pointer::type> {}; +#endif // DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING + // clang-format on + + struct DOCTEST_INTERFACE TestFailureException + { + }; + + DOCTEST_INTERFACE bool checkIfShouldThrow(assertType::Enum at); + +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS + DOCTEST_NORETURN +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS + DOCTEST_INTERFACE void throwException(); + + struct DOCTEST_INTERFACE Subcase + { + SubcaseSignature m_signature; + bool m_entered = false; + + Subcase(const String& name, const char* file, int line); + Subcase(const Subcase&) = delete; + Subcase(Subcase&&) = delete; + Subcase& operator=(const Subcase&) = delete; + Subcase& operator=(Subcase&&) = delete; + ~Subcase(); + + operator bool() const; + + private: + bool checkFilters(); + }; + + template + String stringifyBinaryExpr(const DOCTEST_REF_WRAP(L) lhs, const char* op, + const DOCTEST_REF_WRAP(R) rhs) { + return (DOCTEST_STRINGIFY(lhs)) + op + (DOCTEST_STRINGIFY(rhs)); + } + +#if DOCTEST_CLANG && DOCTEST_CLANG < DOCTEST_COMPILER(3, 6, 0) +DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wunused-comparison") +#endif + +// This will check if there is any way it could find a operator like member or friend and uses it. +// If not it doesn't find the operator or if the operator at global scope is defined after +// this template, the template won't be instantiated due to SFINAE. Once the template is not +// instantiated it can look for global operator using normal conversions. +#ifdef __NVCC__ +#define SFINAE_OP(ret,op) ret +#else +#define SFINAE_OP(ret,op) decltype((void)(doctest::detail::declval() op doctest::detail::declval()),ret{}) +#endif + +#define DOCTEST_DO_BINARY_EXPRESSION_COMPARISON(op, op_str, op_macro) \ + template \ + DOCTEST_NOINLINE SFINAE_OP(Result,op) operator op(R&& rhs) { \ + bool res = op_macro(doctest::detail::forward(lhs), doctest::detail::forward(rhs)); \ + if(m_at & assertType::is_false) \ + res = !res; \ + if(!res || doctest::getContextOptions()->success) \ + return Result(res, stringifyBinaryExpr(lhs, op_str, rhs)); \ + return Result(res); \ + } + + // more checks could be added - like in Catch: + // https://github.com/catchorg/Catch2/pull/1480/files + // https://github.com/catchorg/Catch2/pull/1481/files +#define DOCTEST_FORBIT_EXPRESSION(rt, op) \ + template \ + rt& operator op(const R&) { \ + static_assert(deferred_false::value, \ + "Expression Too Complex Please Rewrite As Binary Comparison!"); \ + return *this; \ + } + + struct DOCTEST_INTERFACE Result // NOLINT(*-member-init) + { + bool m_passed; + String m_decomp; + + Result() = default; // TODO: Why do we need this? (To remove NOLINT) + Result(bool passed, const String& decomposition = String()); + + // forbidding some expressions based on this table: https://en.cppreference.com/w/cpp/language/operator_precedence + DOCTEST_FORBIT_EXPRESSION(Result, &) + DOCTEST_FORBIT_EXPRESSION(Result, ^) + DOCTEST_FORBIT_EXPRESSION(Result, |) + DOCTEST_FORBIT_EXPRESSION(Result, &&) + DOCTEST_FORBIT_EXPRESSION(Result, ||) + DOCTEST_FORBIT_EXPRESSION(Result, ==) + DOCTEST_FORBIT_EXPRESSION(Result, !=) + DOCTEST_FORBIT_EXPRESSION(Result, <) + DOCTEST_FORBIT_EXPRESSION(Result, >) + DOCTEST_FORBIT_EXPRESSION(Result, <=) + DOCTEST_FORBIT_EXPRESSION(Result, >=) + DOCTEST_FORBIT_EXPRESSION(Result, =) + DOCTEST_FORBIT_EXPRESSION(Result, +=) + DOCTEST_FORBIT_EXPRESSION(Result, -=) + DOCTEST_FORBIT_EXPRESSION(Result, *=) + DOCTEST_FORBIT_EXPRESSION(Result, /=) + DOCTEST_FORBIT_EXPRESSION(Result, %=) + DOCTEST_FORBIT_EXPRESSION(Result, <<=) + DOCTEST_FORBIT_EXPRESSION(Result, >>=) + DOCTEST_FORBIT_EXPRESSION(Result, &=) + DOCTEST_FORBIT_EXPRESSION(Result, ^=) + DOCTEST_FORBIT_EXPRESSION(Result, |=) + }; + +#ifndef DOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION + + DOCTEST_CLANG_SUPPRESS_WARNING_PUSH + DOCTEST_CLANG_SUPPRESS_WARNING("-Wsign-conversion") + DOCTEST_CLANG_SUPPRESS_WARNING("-Wsign-compare") + //DOCTEST_CLANG_SUPPRESS_WARNING("-Wdouble-promotion") + //DOCTEST_CLANG_SUPPRESS_WARNING("-Wconversion") + //DOCTEST_CLANG_SUPPRESS_WARNING("-Wfloat-equal") + + DOCTEST_GCC_SUPPRESS_WARNING_PUSH + DOCTEST_GCC_SUPPRESS_WARNING("-Wsign-conversion") + DOCTEST_GCC_SUPPRESS_WARNING("-Wsign-compare") + //DOCTEST_GCC_SUPPRESS_WARNING("-Wdouble-promotion") + //DOCTEST_GCC_SUPPRESS_WARNING("-Wconversion") + //DOCTEST_GCC_SUPPRESS_WARNING("-Wfloat-equal") + + DOCTEST_MSVC_SUPPRESS_WARNING_PUSH + // https://stackoverflow.com/questions/39479163 what's the difference between 4018 and 4389 + DOCTEST_MSVC_SUPPRESS_WARNING(4388) // signed/unsigned mismatch + DOCTEST_MSVC_SUPPRESS_WARNING(4389) // 'operator' : signed/unsigned mismatch + DOCTEST_MSVC_SUPPRESS_WARNING(4018) // 'expression' : signed/unsigned mismatch + //DOCTEST_MSVC_SUPPRESS_WARNING(4805) // 'operation' : unsafe mix of type 'type' and type 'type' in operation + +#endif // DOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION + + // clang-format off +#ifndef DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING +#define DOCTEST_COMPARISON_RETURN_TYPE bool +#else // DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING +#define DOCTEST_COMPARISON_RETURN_TYPE typename types::enable_if::value || can_use_op::value, bool>::type + inline bool eq(const char* lhs, const char* rhs) { return String(lhs) == String(rhs); } + inline bool ne(const char* lhs, const char* rhs) { return String(lhs) != String(rhs); } + inline bool lt(const char* lhs, const char* rhs) { return String(lhs) < String(rhs); } + inline bool gt(const char* lhs, const char* rhs) { return String(lhs) > String(rhs); } + inline bool le(const char* lhs, const char* rhs) { return String(lhs) <= String(rhs); } + inline bool ge(const char* lhs, const char* rhs) { return String(lhs) >= String(rhs); } +#endif // DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING + // clang-format on + +#define DOCTEST_RELATIONAL_OP(name, op) \ + template \ + DOCTEST_COMPARISON_RETURN_TYPE name(const DOCTEST_REF_WRAP(L) lhs, \ + const DOCTEST_REF_WRAP(R) rhs) { \ + return lhs op rhs; \ + } + + DOCTEST_RELATIONAL_OP(eq, ==) + DOCTEST_RELATIONAL_OP(ne, !=) + DOCTEST_RELATIONAL_OP(lt, <) + DOCTEST_RELATIONAL_OP(gt, >) + DOCTEST_RELATIONAL_OP(le, <=) + DOCTEST_RELATIONAL_OP(ge, >=) + +#ifndef DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING +#define DOCTEST_CMP_EQ(l, r) l == r +#define DOCTEST_CMP_NE(l, r) l != r +#define DOCTEST_CMP_GT(l, r) l > r +#define DOCTEST_CMP_LT(l, r) l < r +#define DOCTEST_CMP_GE(l, r) l >= r +#define DOCTEST_CMP_LE(l, r) l <= r +#else // DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING +#define DOCTEST_CMP_EQ(l, r) eq(l, r) +#define DOCTEST_CMP_NE(l, r) ne(l, r) +#define DOCTEST_CMP_GT(l, r) gt(l, r) +#define DOCTEST_CMP_LT(l, r) lt(l, r) +#define DOCTEST_CMP_GE(l, r) ge(l, r) +#define DOCTEST_CMP_LE(l, r) le(l, r) +#endif // DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING + + template + // cppcheck-suppress copyCtorAndEqOperator + struct Expression_lhs + { + L lhs; + assertType::Enum m_at; + + explicit Expression_lhs(L&& in, assertType::Enum at) + : lhs(static_cast(in)) + , m_at(at) {} + + DOCTEST_NOINLINE operator Result() { +// this is needed only for MSVC 2015 +DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4800) // 'int': forcing value to bool + bool res = static_cast(lhs); +DOCTEST_MSVC_SUPPRESS_WARNING_POP + if(m_at & assertType::is_false) { //!OCLINT bitwise operator in conditional + res = !res; + } + + if(!res || getContextOptions()->success) { + return { res, (DOCTEST_STRINGIFY(lhs)) }; + } + return { res }; + } + + /* This is required for user-defined conversions from Expression_lhs to L */ + operator L() const { return lhs; } + + // clang-format off + DOCTEST_DO_BINARY_EXPRESSION_COMPARISON(==, " == ", DOCTEST_CMP_EQ) //!OCLINT bitwise operator in conditional + DOCTEST_DO_BINARY_EXPRESSION_COMPARISON(!=, " != ", DOCTEST_CMP_NE) //!OCLINT bitwise operator in conditional + DOCTEST_DO_BINARY_EXPRESSION_COMPARISON(>, " > ", DOCTEST_CMP_GT) //!OCLINT bitwise operator in conditional + DOCTEST_DO_BINARY_EXPRESSION_COMPARISON(<, " < ", DOCTEST_CMP_LT) //!OCLINT bitwise operator in conditional + DOCTEST_DO_BINARY_EXPRESSION_COMPARISON(>=, " >= ", DOCTEST_CMP_GE) //!OCLINT bitwise operator in conditional + DOCTEST_DO_BINARY_EXPRESSION_COMPARISON(<=, " <= ", DOCTEST_CMP_LE) //!OCLINT bitwise operator in conditional + // clang-format on + + // forbidding some expressions based on this table: https://en.cppreference.com/w/cpp/language/operator_precedence + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, &) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, ^) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, |) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, &&) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, ||) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, =) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, +=) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, -=) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, *=) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, /=) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, %=) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, <<=) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, >>=) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, &=) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, ^=) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, |=) + // these 2 are unfortunate because they should be allowed - they have higher precedence over the comparisons, but the + // ExpressionDecomposer class uses the left shift operator to capture the left operand of the binary expression... + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, <<) + DOCTEST_FORBIT_EXPRESSION(Expression_lhs, >>) + }; + +#ifndef DOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION + + DOCTEST_CLANG_SUPPRESS_WARNING_POP + DOCTEST_MSVC_SUPPRESS_WARNING_POP + DOCTEST_GCC_SUPPRESS_WARNING_POP + +#endif // DOCTEST_CONFIG_NO_COMPARISON_WARNING_SUPPRESSION + +#if DOCTEST_CLANG && DOCTEST_CLANG < DOCTEST_COMPILER(3, 6, 0) +DOCTEST_CLANG_SUPPRESS_WARNING_POP +#endif + + struct DOCTEST_INTERFACE ExpressionDecomposer + { + assertType::Enum m_at; + + ExpressionDecomposer(assertType::Enum at); + + // The right operator for capturing expressions is "<=" instead of "<<" (based on the operator precedence table) + // but then there will be warnings from GCC about "-Wparentheses" and since "_Pragma()" is problematic this will stay for now... + // https://github.com/catchorg/Catch2/issues/870 + // https://github.com/catchorg/Catch2/issues/565 + template + Expression_lhs operator<<(L&& operand) { + return Expression_lhs(static_cast(operand), m_at); + } + + template ::value,void >::type* = nullptr> + Expression_lhs operator<<(const L &operand) { + return Expression_lhs(operand, m_at); + } + }; + + struct DOCTEST_INTERFACE TestSuite + { + const char* m_test_suite = nullptr; + const char* m_description = nullptr; + bool m_skip = false; + bool m_no_breaks = false; + bool m_no_output = false; + bool m_may_fail = false; + bool m_should_fail = false; + int m_expected_failures = 0; + double m_timeout = 0; + + TestSuite& operator*(const char* in); + + template + TestSuite& operator*(const T& in) { + in.fill(*this); + return *this; + } + }; + + using funcType = void (*)(); + + struct DOCTEST_INTERFACE TestCase : public TestCaseData + { + funcType m_test; // a function pointer to the test case + + String m_type; // for templated test cases - gets appended to the real name + int m_template_id; // an ID used to distinguish between the different versions of a templated test case + String m_full_name; // contains the name (only for templated test cases!) + the template type + + TestCase(funcType test, const char* file, unsigned line, const TestSuite& test_suite, + const String& type = String(), int template_id = -1); + + TestCase(const TestCase& other); + TestCase(TestCase&&) = delete; + + DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(26434) // hides a non-virtual function + TestCase& operator=(const TestCase& other); + DOCTEST_MSVC_SUPPRESS_WARNING_POP + + TestCase& operator=(TestCase&&) = delete; + + TestCase& operator*(const char* in); + + template + TestCase& operator*(const T& in) { + in.fill(*this); + return *this; + } + + bool operator<(const TestCase& other) const; + + ~TestCase() = default; + }; + + // forward declarations of functions used by the macros + DOCTEST_INTERFACE int regTest(const TestCase& tc); + DOCTEST_INTERFACE int setTestSuite(const TestSuite& ts); + DOCTEST_INTERFACE bool isDebuggerActive(); + + template + int instantiationHelper(const T&) { return 0; } + + namespace binaryAssertComparison { + enum Enum + { + eq = 0, + ne, + gt, + lt, + ge, + le + }; + } // namespace binaryAssertComparison + + // clang-format off + template struct RelationalComparator { bool operator()(const DOCTEST_REF_WRAP(L), const DOCTEST_REF_WRAP(R) ) const { return false; } }; + +#define DOCTEST_BINARY_RELATIONAL_OP(n, op) \ + template struct RelationalComparator { bool operator()(const DOCTEST_REF_WRAP(L) lhs, const DOCTEST_REF_WRAP(R) rhs) const { return op(lhs, rhs); } }; + // clang-format on + + DOCTEST_BINARY_RELATIONAL_OP(0, doctest::detail::eq) + DOCTEST_BINARY_RELATIONAL_OP(1, doctest::detail::ne) + DOCTEST_BINARY_RELATIONAL_OP(2, doctest::detail::gt) + DOCTEST_BINARY_RELATIONAL_OP(3, doctest::detail::lt) + DOCTEST_BINARY_RELATIONAL_OP(4, doctest::detail::ge) + DOCTEST_BINARY_RELATIONAL_OP(5, doctest::detail::le) + + struct DOCTEST_INTERFACE ResultBuilder : public AssertData + { + ResultBuilder(assertType::Enum at, const char* file, int line, const char* expr, + const char* exception_type = "", const String& exception_string = ""); + + ResultBuilder(assertType::Enum at, const char* file, int line, const char* expr, + const char* exception_type, const Contains& exception_string); + + void setResult(const Result& res); + + template + DOCTEST_NOINLINE bool binary_assert(const DOCTEST_REF_WRAP(L) lhs, + const DOCTEST_REF_WRAP(R) rhs) { + m_failed = !RelationalComparator()(lhs, rhs); + if (m_failed || getContextOptions()->success) { + m_decomp = stringifyBinaryExpr(lhs, ", ", rhs); + } + return !m_failed; + } + + template + DOCTEST_NOINLINE bool unary_assert(const DOCTEST_REF_WRAP(L) val) { + m_failed = !val; + + if (m_at & assertType::is_false) { //!OCLINT bitwise operator in conditional + m_failed = !m_failed; + } + + if (m_failed || getContextOptions()->success) { + m_decomp = (DOCTEST_STRINGIFY(val)); + } + + return !m_failed; + } + + void translateException(); + + bool log(); + void react() const; + }; + + namespace assertAction { + enum Enum + { + nothing = 0, + dbgbreak = 1, + shouldthrow = 2 + }; + } // namespace assertAction + + DOCTEST_INTERFACE void failed_out_of_a_testing_context(const AssertData& ad); + + DOCTEST_INTERFACE bool decomp_assert(assertType::Enum at, const char* file, int line, + const char* expr, const Result& result); + +#define DOCTEST_ASSERT_OUT_OF_TESTS(decomp) \ + do { \ + if(!is_running_in_test) { \ + if(failed) { \ + ResultBuilder rb(at, file, line, expr); \ + rb.m_failed = failed; \ + rb.m_decomp = decomp; \ + failed_out_of_a_testing_context(rb); \ + if(isDebuggerActive() && !getContextOptions()->no_breaks) \ + DOCTEST_BREAK_INTO_DEBUGGER(); \ + if(checkIfShouldThrow(at)) \ + throwException(); \ + } \ + return !failed; \ + } \ + } while(false) + +#define DOCTEST_ASSERT_IN_TESTS(decomp) \ + ResultBuilder rb(at, file, line, expr); \ + rb.m_failed = failed; \ + if(rb.m_failed || getContextOptions()->success) \ + rb.m_decomp = decomp; \ + if(rb.log()) \ + DOCTEST_BREAK_INTO_DEBUGGER(); \ + if(rb.m_failed && checkIfShouldThrow(at)) \ + throwException() + + template + DOCTEST_NOINLINE bool binary_assert(assertType::Enum at, const char* file, int line, + const char* expr, const DOCTEST_REF_WRAP(L) lhs, + const DOCTEST_REF_WRAP(R) rhs) { + bool failed = !RelationalComparator()(lhs, rhs); + + // ################################################################################### + // IF THE DEBUGGER BREAKS HERE - GO 1 LEVEL UP IN THE CALLSTACK FOR THE FAILING ASSERT + // THIS IS THE EFFECT OF HAVING 'DOCTEST_CONFIG_SUPER_FAST_ASSERTS' DEFINED + // ################################################################################### + DOCTEST_ASSERT_OUT_OF_TESTS(stringifyBinaryExpr(lhs, ", ", rhs)); + DOCTEST_ASSERT_IN_TESTS(stringifyBinaryExpr(lhs, ", ", rhs)); + return !failed; + } + + template + DOCTEST_NOINLINE bool unary_assert(assertType::Enum at, const char* file, int line, + const char* expr, const DOCTEST_REF_WRAP(L) val) { + bool failed = !val; + + if(at & assertType::is_false) //!OCLINT bitwise operator in conditional + failed = !failed; + + // ################################################################################### + // IF THE DEBUGGER BREAKS HERE - GO 1 LEVEL UP IN THE CALLSTACK FOR THE FAILING ASSERT + // THIS IS THE EFFECT OF HAVING 'DOCTEST_CONFIG_SUPER_FAST_ASSERTS' DEFINED + // ################################################################################### + DOCTEST_ASSERT_OUT_OF_TESTS((DOCTEST_STRINGIFY(val))); + DOCTEST_ASSERT_IN_TESTS((DOCTEST_STRINGIFY(val))); + return !failed; + } + + struct DOCTEST_INTERFACE IExceptionTranslator + { + DOCTEST_DECLARE_INTERFACE(IExceptionTranslator) + virtual bool translate(String&) const = 0; + }; + + template + class ExceptionTranslator : public IExceptionTranslator //!OCLINT destructor of virtual class + { + public: + explicit ExceptionTranslator(String (*translateFunction)(T)) + : m_translateFunction(translateFunction) {} + + bool translate(String& res) const override { +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS + try { + throw; // lgtm [cpp/rethrow-no-exception] + // cppcheck-suppress catchExceptionByValue + } catch(const T& ex) { + res = m_translateFunction(ex); //!OCLINT parameter reassignment + return true; + } catch(...) {} //!OCLINT - empty catch statement +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS + static_cast(res); // to silence -Wunused-parameter + return false; + } + + private: + String (*m_translateFunction)(T); + }; + + DOCTEST_INTERFACE void registerExceptionTranslatorImpl(const IExceptionTranslator* et); + + // ContextScope base class used to allow implementing methods of ContextScope + // that don't depend on the template parameter in doctest.cpp. + struct DOCTEST_INTERFACE ContextScopeBase : public IContextScope { + ContextScopeBase(const ContextScopeBase&) = delete; + + ContextScopeBase& operator=(const ContextScopeBase&) = delete; + ContextScopeBase& operator=(ContextScopeBase&&) = delete; + + ~ContextScopeBase() override = default; + + protected: + ContextScopeBase(); + ContextScopeBase(ContextScopeBase&& other) noexcept; + + void destroy(); + bool need_to_destroy{true}; + }; + + template class ContextScope : public ContextScopeBase + { + L lambda_; + + public: + explicit ContextScope(const L &lambda) : lambda_(lambda) {} + explicit ContextScope(L&& lambda) : lambda_(static_cast(lambda)) { } + + ContextScope(const ContextScope&) = delete; + ContextScope(ContextScope&&) noexcept = default; + + ContextScope& operator=(const ContextScope&) = delete; + ContextScope& operator=(ContextScope&&) = delete; + + void stringify(std::ostream* s) const override { lambda_(s); } + + ~ContextScope() override { + if (need_to_destroy) { + destroy(); + } + } + }; + + struct DOCTEST_INTERFACE MessageBuilder : public MessageData + { + std::ostream* m_stream; + bool logged = false; + + MessageBuilder(const char* file, int line, assertType::Enum severity); + + MessageBuilder(const MessageBuilder&) = delete; + MessageBuilder(MessageBuilder&&) = delete; + + MessageBuilder& operator=(const MessageBuilder&) = delete; + MessageBuilder& operator=(MessageBuilder&&) = delete; + + ~MessageBuilder(); + + // the preferred way of chaining parameters for stringification +DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4866) + template + MessageBuilder& operator,(const T& in) { + *m_stream << (DOCTEST_STRINGIFY(in)); + return *this; + } +DOCTEST_MSVC_SUPPRESS_WARNING_POP + + // kept here just for backwards-compatibility - the comma operator should be preferred now + template + MessageBuilder& operator<<(const T& in) { return this->operator,(in); } + + // the `,` operator has the lowest operator precedence - if `<<` is used by the user then + // the `,` operator will be called last which is not what we want and thus the `*` operator + // is used first (has higher operator precedence compared to `<<`) so that we guarantee that + // an operator of the MessageBuilder class is called first before the rest of the parameters + template + MessageBuilder& operator*(const T& in) { return this->operator,(in); } + + bool log(); + void react(); + }; + + template + ContextScope MakeContextScope(const L &lambda) { + return ContextScope(lambda); + } +} // namespace detail + +#define DOCTEST_DEFINE_DECORATOR(name, type, def) \ + struct name \ + { \ + type data; \ + name(type in = def) \ + : data(in) {} \ + void fill(detail::TestCase& state) const { state.DOCTEST_CAT(m_, name) = data; } \ + void fill(detail::TestSuite& state) const { state.DOCTEST_CAT(m_, name) = data; } \ + } + +DOCTEST_DEFINE_DECORATOR(test_suite, const char*, ""); +DOCTEST_DEFINE_DECORATOR(description, const char*, ""); +DOCTEST_DEFINE_DECORATOR(skip, bool, true); +DOCTEST_DEFINE_DECORATOR(no_breaks, bool, true); +DOCTEST_DEFINE_DECORATOR(no_output, bool, true); +DOCTEST_DEFINE_DECORATOR(timeout, double, 0); +DOCTEST_DEFINE_DECORATOR(may_fail, bool, true); +DOCTEST_DEFINE_DECORATOR(should_fail, bool, true); +DOCTEST_DEFINE_DECORATOR(expected_failures, int, 0); + +template +int registerExceptionTranslator(String (*translateFunction)(T)) { + DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wexit-time-destructors") + static detail::ExceptionTranslator exceptionTranslator(translateFunction); + DOCTEST_CLANG_SUPPRESS_WARNING_POP + detail::registerExceptionTranslatorImpl(&exceptionTranslator); + return 0; +} + +} // namespace doctest + +// in a separate namespace outside of doctest because the DOCTEST_TEST_SUITE macro +// introduces an anonymous namespace in which getCurrentTestSuite gets overridden +namespace doctest_detail_test_suite_ns { +DOCTEST_INTERFACE doctest::detail::TestSuite& getCurrentTestSuite(); +} // namespace doctest_detail_test_suite_ns + +namespace doctest { +#else // DOCTEST_CONFIG_DISABLE +template +int registerExceptionTranslator(String (*)(T)) { + return 0; +} +#endif // DOCTEST_CONFIG_DISABLE + +namespace detail { + using assert_handler = void (*)(const AssertData&); + struct ContextState; +} // namespace detail + +class DOCTEST_INTERFACE Context +{ + detail::ContextState* p; + + void parseArgs(int argc, const char* const* argv, bool withDefaults = false); + +public: + explicit Context(int argc = 0, const char* const* argv = nullptr); + + Context(const Context&) = delete; + Context(Context&&) = delete; + + Context& operator=(const Context&) = delete; + Context& operator=(Context&&) = delete; + + ~Context(); // NOLINT(performance-trivially-destructible) + + void applyCommandLine(int argc, const char* const* argv); + + void addFilter(const char* filter, const char* value); + void clearFilters(); + void setOption(const char* option, bool value); + void setOption(const char* option, int value); + void setOption(const char* option, const char* value); + + bool shouldExit(); + + void setAsDefaultForAssertsOutOfTestCases(); + + void setAssertHandler(detail::assert_handler ah); + + void setCout(std::ostream* out); + + int run(); +}; + +namespace TestCaseFailureReason { + enum Enum + { + None = 0, + AssertFailure = 1, // an assertion has failed in the test case + Exception = 2, // test case threw an exception + Crash = 4, // a crash... + TooManyFailedAsserts = 8, // the abort-after option + Timeout = 16, // see the timeout decorator + ShouldHaveFailedButDidnt = 32, // see the should_fail decorator + ShouldHaveFailedAndDid = 64, // see the should_fail decorator + DidntFailExactlyNumTimes = 128, // see the expected_failures decorator + FailedExactlyNumTimes = 256, // see the expected_failures decorator + CouldHaveFailedAndDid = 512 // see the may_fail decorator + }; +} // namespace TestCaseFailureReason + +struct DOCTEST_INTERFACE CurrentTestCaseStats +{ + int numAssertsCurrentTest; + int numAssertsFailedCurrentTest; + double seconds; + int failure_flags; // use TestCaseFailureReason::Enum + bool testCaseSuccess; +}; + +struct DOCTEST_INTERFACE TestCaseException +{ + String error_string; + bool is_crash; +}; + +struct DOCTEST_INTERFACE TestRunStats +{ + unsigned numTestCases; + unsigned numTestCasesPassingFilters; + unsigned numTestSuitesPassingFilters; + unsigned numTestCasesFailed; + int numAsserts; + int numAssertsFailed; +}; + +struct QueryData +{ + const TestRunStats* run_stats = nullptr; + const TestCaseData** data = nullptr; + unsigned num_data = 0; +}; + +struct DOCTEST_INTERFACE IReporter +{ + // The constructor has to accept "const ContextOptions&" as a single argument + // which has most of the options for the run + a pointer to the stdout stream + // Reporter(const ContextOptions& in) + + // called when a query should be reported (listing test cases, printing the version, etc.) + virtual void report_query(const QueryData&) = 0; + + // called when the whole test run starts + virtual void test_run_start() = 0; + // called when the whole test run ends (caching a pointer to the input doesn't make sense here) + virtual void test_run_end(const TestRunStats&) = 0; + + // called when a test case is started (safe to cache a pointer to the input) + virtual void test_case_start(const TestCaseData&) = 0; + // called when a test case is reentered because of unfinished subcases (safe to cache a pointer to the input) + virtual void test_case_reenter(const TestCaseData&) = 0; + // called when a test case has ended + virtual void test_case_end(const CurrentTestCaseStats&) = 0; + + // called when an exception is thrown from the test case (or it crashes) + virtual void test_case_exception(const TestCaseException&) = 0; + + // called whenever a subcase is entered (don't cache pointers to the input) + virtual void subcase_start(const SubcaseSignature&) = 0; + // called whenever a subcase is exited (don't cache pointers to the input) + virtual void subcase_end() = 0; + + // called for each assert (don't cache pointers to the input) + virtual void log_assert(const AssertData&) = 0; + // called for each message (don't cache pointers to the input) + virtual void log_message(const MessageData&) = 0; + + // called when a test case is skipped either because it doesn't pass the filters, has a skip decorator + // or isn't in the execution range (between first and last) (safe to cache a pointer to the input) + virtual void test_case_skipped(const TestCaseData&) = 0; + + DOCTEST_DECLARE_INTERFACE(IReporter) + + // can obtain all currently active contexts and stringify them if one wishes to do so + static int get_num_active_contexts(); + static const IContextScope* const* get_active_contexts(); + + // can iterate through contexts which have been stringified automatically in their destructors when an exception has been thrown + static int get_num_stringified_contexts(); + static const String* get_stringified_contexts(); +}; + +namespace detail { + using reporterCreatorFunc = IReporter* (*)(const ContextOptions&); + + DOCTEST_INTERFACE void registerReporterImpl(const char* name, int prio, reporterCreatorFunc c, bool isReporter); + + template + IReporter* reporterCreator(const ContextOptions& o) { + return new Reporter(o); + } +} // namespace detail + +template +int registerReporter(const char* name, int priority, bool isReporter) { + detail::registerReporterImpl(name, priority, detail::reporterCreator, isReporter); + return 0; +} +} // namespace doctest + +#ifdef DOCTEST_CONFIG_ASSERTS_RETURN_VALUES +#define DOCTEST_FUNC_EMPTY [] { return false; }() +#else +#define DOCTEST_FUNC_EMPTY (void)0 +#endif + +// if registering is not disabled +#ifndef DOCTEST_CONFIG_DISABLE + +#ifdef DOCTEST_CONFIG_ASSERTS_RETURN_VALUES +#define DOCTEST_FUNC_SCOPE_BEGIN [&] +#define DOCTEST_FUNC_SCOPE_END () +#define DOCTEST_FUNC_SCOPE_RET(v) return v +#else +#define DOCTEST_FUNC_SCOPE_BEGIN do +#define DOCTEST_FUNC_SCOPE_END while(false) +#define DOCTEST_FUNC_SCOPE_RET(v) (void)0 +#endif + +// common code in asserts - for convenience +#define DOCTEST_ASSERT_LOG_REACT_RETURN(b) \ + if(b.log()) DOCTEST_BREAK_INTO_DEBUGGER(); \ + b.react(); \ + DOCTEST_FUNC_SCOPE_RET(!b.m_failed) + +#ifdef DOCTEST_CONFIG_NO_TRY_CATCH_IN_ASSERTS +#define DOCTEST_WRAP_IN_TRY(x) x; +#else // DOCTEST_CONFIG_NO_TRY_CATCH_IN_ASSERTS +#define DOCTEST_WRAP_IN_TRY(x) \ + try { \ + x; \ + } catch(...) { DOCTEST_RB.translateException(); } +#endif // DOCTEST_CONFIG_NO_TRY_CATCH_IN_ASSERTS + +#ifdef DOCTEST_CONFIG_VOID_CAST_EXPRESSIONS +#define DOCTEST_CAST_TO_VOID(...) \ + DOCTEST_GCC_SUPPRESS_WARNING_WITH_PUSH("-Wuseless-cast") \ + static_cast(__VA_ARGS__); \ + DOCTEST_GCC_SUPPRESS_WARNING_POP +#else // DOCTEST_CONFIG_VOID_CAST_EXPRESSIONS +#define DOCTEST_CAST_TO_VOID(...) __VA_ARGS__; +#endif // DOCTEST_CONFIG_VOID_CAST_EXPRESSIONS + +// registers the test by initializing a dummy var with a function +#define DOCTEST_REGISTER_FUNCTION(global_prefix, f, decorators) \ + global_prefix DOCTEST_GLOBAL_NO_WARNINGS(DOCTEST_ANONYMOUS(DOCTEST_ANON_VAR_), /* NOLINT */ \ + doctest::detail::regTest( \ + doctest::detail::TestCase( \ + f, __FILE__, __LINE__, \ + doctest_detail_test_suite_ns::getCurrentTestSuite()) * \ + decorators)) + +#define DOCTEST_IMPLEMENT_FIXTURE(der, base, func, decorators) \ + namespace { /* NOLINT */ \ + struct der : public base \ + { \ + void f(); \ + }; \ + static DOCTEST_INLINE_NOINLINE void func() { \ + der v; \ + v.f(); \ + } \ + DOCTEST_REGISTER_FUNCTION(DOCTEST_EMPTY, func, decorators) \ + } \ + DOCTEST_INLINE_NOINLINE void der::f() // NOLINT(misc-definitions-in-headers) + +#define DOCTEST_CREATE_AND_REGISTER_FUNCTION(f, decorators) \ + static void f(); \ + DOCTEST_REGISTER_FUNCTION(DOCTEST_EMPTY, f, decorators) \ + static void f() + +#define DOCTEST_CREATE_AND_REGISTER_FUNCTION_IN_CLASS(f, proxy, decorators) \ + static doctest::detail::funcType proxy() { return f; } \ + DOCTEST_REGISTER_FUNCTION(inline, proxy(), decorators) \ + static void f() + +// for registering tests +#define DOCTEST_TEST_CASE(decorators) \ + DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators) + +// for registering tests in classes - requires C++17 for inline variables! +#if DOCTEST_CPLUSPLUS >= 201703L +#define DOCTEST_TEST_CASE_CLASS(decorators) \ + DOCTEST_CREATE_AND_REGISTER_FUNCTION_IN_CLASS(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), \ + DOCTEST_ANONYMOUS(DOCTEST_ANON_PROXY_), \ + decorators) +#else // DOCTEST_TEST_CASE_CLASS +#define DOCTEST_TEST_CASE_CLASS(...) \ + TEST_CASES_CAN_BE_REGISTERED_IN_CLASSES_ONLY_IN_CPP17_MODE_OR_WITH_VS_2017_OR_NEWER +#endif // DOCTEST_TEST_CASE_CLASS + +// for registering tests with a fixture +#define DOCTEST_TEST_CASE_FIXTURE(c, decorators) \ + DOCTEST_IMPLEMENT_FIXTURE(DOCTEST_ANONYMOUS(DOCTEST_ANON_CLASS_), c, \ + DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), decorators) + +// for converting types to strings without the header and demangling +#define DOCTEST_TYPE_TO_STRING_AS(str, ...) \ + namespace doctest { \ + template <> \ + inline String toString<__VA_ARGS__>() { \ + return str; \ + } \ + } \ + static_assert(true, "") + +#define DOCTEST_TYPE_TO_STRING(...) DOCTEST_TYPE_TO_STRING_AS(#__VA_ARGS__, __VA_ARGS__) + +#define DOCTEST_TEST_CASE_TEMPLATE_DEFINE_IMPL(dec, T, iter, func) \ + template \ + static void func(); \ + namespace { /* NOLINT */ \ + template \ + struct iter; \ + template \ + struct iter> \ + { \ + iter(const char* file, unsigned line, int index) { \ + doctest::detail::regTest(doctest::detail::TestCase(func, file, line, \ + doctest_detail_test_suite_ns::getCurrentTestSuite(), \ + doctest::toString(), \ + int(line) * 1000 + index) \ + * dec); \ + iter>(file, line, index + 1); \ + } \ + }; \ + template <> \ + struct iter> \ + { \ + iter(const char*, unsigned, int) {} \ + }; \ + } \ + template \ + static void func() + +#define DOCTEST_TEST_CASE_TEMPLATE_DEFINE(dec, T, id) \ + DOCTEST_TEST_CASE_TEMPLATE_DEFINE_IMPL(dec, T, DOCTEST_CAT(id, ITERATOR), \ + DOCTEST_ANONYMOUS(DOCTEST_ANON_TMP_)) + +#define DOCTEST_TEST_CASE_TEMPLATE_INSTANTIATE_IMPL(id, anon, ...) \ + DOCTEST_GLOBAL_NO_WARNINGS(DOCTEST_CAT(anon, DUMMY), /* NOLINT(cert-err58-cpp, fuchsia-statically-constructed-objects) */ \ + doctest::detail::instantiationHelper( \ + DOCTEST_CAT(id, ITERATOR)<__VA_ARGS__>(__FILE__, __LINE__, 0))) + +#define DOCTEST_TEST_CASE_TEMPLATE_INVOKE(id, ...) \ + DOCTEST_TEST_CASE_TEMPLATE_INSTANTIATE_IMPL(id, DOCTEST_ANONYMOUS(DOCTEST_ANON_TMP_), std::tuple<__VA_ARGS__>) \ + static_assert(true, "") + +#define DOCTEST_TEST_CASE_TEMPLATE_APPLY(id, ...) \ + DOCTEST_TEST_CASE_TEMPLATE_INSTANTIATE_IMPL(id, DOCTEST_ANONYMOUS(DOCTEST_ANON_TMP_), __VA_ARGS__) \ + static_assert(true, "") + +#define DOCTEST_TEST_CASE_TEMPLATE_IMPL(dec, T, anon, ...) \ + DOCTEST_TEST_CASE_TEMPLATE_DEFINE_IMPL(dec, T, DOCTEST_CAT(anon, ITERATOR), anon); \ + DOCTEST_TEST_CASE_TEMPLATE_INSTANTIATE_IMPL(anon, anon, std::tuple<__VA_ARGS__>) \ + template \ + static void anon() + +#define DOCTEST_TEST_CASE_TEMPLATE(dec, T, ...) \ + DOCTEST_TEST_CASE_TEMPLATE_IMPL(dec, T, DOCTEST_ANONYMOUS(DOCTEST_ANON_TMP_), __VA_ARGS__) + +// for subcases +#define DOCTEST_SUBCASE(name) \ + if(const doctest::detail::Subcase & DOCTEST_ANONYMOUS(DOCTEST_ANON_SUBCASE_) DOCTEST_UNUSED = \ + doctest::detail::Subcase(name, __FILE__, __LINE__)) + +// for grouping tests in test suites by using code blocks +#define DOCTEST_TEST_SUITE_IMPL(decorators, ns_name) \ + namespace ns_name { namespace doctest_detail_test_suite_ns { \ + static DOCTEST_NOINLINE doctest::detail::TestSuite& getCurrentTestSuite() noexcept { \ + DOCTEST_MSVC_SUPPRESS_WARNING_WITH_PUSH(4640) \ + DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Wexit-time-destructors") \ + DOCTEST_GCC_SUPPRESS_WARNING_WITH_PUSH("-Wmissing-field-initializers") \ + static doctest::detail::TestSuite data{}; \ + static bool inited = false; \ + DOCTEST_MSVC_SUPPRESS_WARNING_POP \ + DOCTEST_CLANG_SUPPRESS_WARNING_POP \ + DOCTEST_GCC_SUPPRESS_WARNING_POP \ + if(!inited) { \ + data* decorators; \ + inited = true; \ + } \ + return data; \ + } \ + } \ + } \ + namespace ns_name + +#define DOCTEST_TEST_SUITE(decorators) \ + DOCTEST_TEST_SUITE_IMPL(decorators, DOCTEST_ANONYMOUS(DOCTEST_ANON_SUITE_)) + +// for starting a testsuite block +#define DOCTEST_TEST_SUITE_BEGIN(decorators) \ + DOCTEST_GLOBAL_NO_WARNINGS(DOCTEST_ANONYMOUS(DOCTEST_ANON_VAR_), /* NOLINT(cert-err58-cpp) */ \ + doctest::detail::setTestSuite(doctest::detail::TestSuite() * decorators)) \ + static_assert(true, "") + +// for ending a testsuite block +#define DOCTEST_TEST_SUITE_END \ + DOCTEST_GLOBAL_NO_WARNINGS(DOCTEST_ANONYMOUS(DOCTEST_ANON_VAR_), /* NOLINT(cert-err58-cpp) */ \ + doctest::detail::setTestSuite(doctest::detail::TestSuite() * "")) \ + using DOCTEST_ANONYMOUS(DOCTEST_ANON_FOR_SEMICOLON_) = int + +// for registering exception translators +#define DOCTEST_REGISTER_EXCEPTION_TRANSLATOR_IMPL(translatorName, signature) \ + inline doctest::String translatorName(signature); \ + DOCTEST_GLOBAL_NO_WARNINGS(DOCTEST_ANONYMOUS(DOCTEST_ANON_TRANSLATOR_), /* NOLINT(cert-err58-cpp) */ \ + doctest::registerExceptionTranslator(translatorName)) \ + doctest::String translatorName(signature) + +#define DOCTEST_REGISTER_EXCEPTION_TRANSLATOR(signature) \ + DOCTEST_REGISTER_EXCEPTION_TRANSLATOR_IMPL(DOCTEST_ANONYMOUS(DOCTEST_ANON_TRANSLATOR_), \ + signature) + +// for registering reporters +#define DOCTEST_REGISTER_REPORTER(name, priority, reporter) \ + DOCTEST_GLOBAL_NO_WARNINGS(DOCTEST_ANONYMOUS(DOCTEST_ANON_REPORTER_), /* NOLINT(cert-err58-cpp) */ \ + doctest::registerReporter(name, priority, true)) \ + static_assert(true, "") + +// for registering listeners +#define DOCTEST_REGISTER_LISTENER(name, priority, reporter) \ + DOCTEST_GLOBAL_NO_WARNINGS(DOCTEST_ANONYMOUS(DOCTEST_ANON_REPORTER_), /* NOLINT(cert-err58-cpp) */ \ + doctest::registerReporter(name, priority, false)) \ + static_assert(true, "") + +// clang-format off +// for logging - disabling formatting because it's important to have these on 2 separate lines - see PR #557 +#define DOCTEST_INFO(...) \ + DOCTEST_INFO_IMPL(DOCTEST_ANONYMOUS(DOCTEST_CAPTURE_), \ + DOCTEST_ANONYMOUS(DOCTEST_CAPTURE_OTHER_), \ + __VA_ARGS__) +// clang-format on + +#define DOCTEST_INFO_IMPL(mb_name, s_name, ...) \ + auto DOCTEST_ANONYMOUS(DOCTEST_CAPTURE_) = doctest::detail::MakeContextScope( \ + [&](std::ostream* s_name) { \ + doctest::detail::MessageBuilder mb_name(__FILE__, __LINE__, doctest::assertType::is_warn); \ + mb_name.m_stream = s_name; \ + mb_name * __VA_ARGS__; \ + }) + +#define DOCTEST_CAPTURE(x) DOCTEST_INFO(#x " := ", x) + +#define DOCTEST_ADD_AT_IMPL(type, file, line, mb, ...) \ + DOCTEST_FUNC_SCOPE_BEGIN { \ + doctest::detail::MessageBuilder mb(file, line, doctest::assertType::type); \ + mb * __VA_ARGS__; \ + if(mb.log()) \ + DOCTEST_BREAK_INTO_DEBUGGER(); \ + mb.react(); \ + } DOCTEST_FUNC_SCOPE_END + +// clang-format off +#define DOCTEST_ADD_MESSAGE_AT(file, line, ...) DOCTEST_ADD_AT_IMPL(is_warn, file, line, DOCTEST_ANONYMOUS(DOCTEST_MESSAGE_), __VA_ARGS__) +#define DOCTEST_ADD_FAIL_CHECK_AT(file, line, ...) DOCTEST_ADD_AT_IMPL(is_check, file, line, DOCTEST_ANONYMOUS(DOCTEST_MESSAGE_), __VA_ARGS__) +#define DOCTEST_ADD_FAIL_AT(file, line, ...) DOCTEST_ADD_AT_IMPL(is_require, file, line, DOCTEST_ANONYMOUS(DOCTEST_MESSAGE_), __VA_ARGS__) +// clang-format on + +#define DOCTEST_MESSAGE(...) DOCTEST_ADD_MESSAGE_AT(__FILE__, __LINE__, __VA_ARGS__) +#define DOCTEST_FAIL_CHECK(...) DOCTEST_ADD_FAIL_CHECK_AT(__FILE__, __LINE__, __VA_ARGS__) +#define DOCTEST_FAIL(...) DOCTEST_ADD_FAIL_AT(__FILE__, __LINE__, __VA_ARGS__) + +#define DOCTEST_TO_LVALUE(...) __VA_ARGS__ // Not removed to keep backwards compatibility. + +#ifndef DOCTEST_CONFIG_SUPER_FAST_ASSERTS + +#define DOCTEST_ASSERT_IMPLEMENT_2(assert_type, ...) \ + DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Woverloaded-shift-op-parentheses") \ + /* NOLINTNEXTLINE(clang-analyzer-cplusplus.NewDeleteLeaks) */ \ + doctest::detail::ResultBuilder DOCTEST_RB(doctest::assertType::assert_type, __FILE__, \ + __LINE__, #__VA_ARGS__); \ + DOCTEST_WRAP_IN_TRY(DOCTEST_RB.setResult( \ + doctest::detail::ExpressionDecomposer(doctest::assertType::assert_type) \ + << __VA_ARGS__)) /* NOLINTNEXTLINE(clang-analyzer-cplusplus.NewDeleteLeaks) */ \ + DOCTEST_ASSERT_LOG_REACT_RETURN(DOCTEST_RB) \ + DOCTEST_CLANG_SUPPRESS_WARNING_POP + +#define DOCTEST_ASSERT_IMPLEMENT_1(assert_type, ...) \ + DOCTEST_FUNC_SCOPE_BEGIN { \ + DOCTEST_ASSERT_IMPLEMENT_2(assert_type, __VA_ARGS__); \ + } DOCTEST_FUNC_SCOPE_END // NOLINT(clang-analyzer-cplusplus.NewDeleteLeaks) + +#define DOCTEST_BINARY_ASSERT(assert_type, comp, ...) \ + DOCTEST_FUNC_SCOPE_BEGIN { \ + doctest::detail::ResultBuilder DOCTEST_RB(doctest::assertType::assert_type, __FILE__, \ + __LINE__, #__VA_ARGS__); \ + DOCTEST_WRAP_IN_TRY( \ + DOCTEST_RB.binary_assert( \ + __VA_ARGS__)) \ + DOCTEST_ASSERT_LOG_REACT_RETURN(DOCTEST_RB); \ + } DOCTEST_FUNC_SCOPE_END + +#define DOCTEST_UNARY_ASSERT(assert_type, ...) \ + DOCTEST_FUNC_SCOPE_BEGIN { \ + doctest::detail::ResultBuilder DOCTEST_RB(doctest::assertType::assert_type, __FILE__, \ + __LINE__, #__VA_ARGS__); \ + DOCTEST_WRAP_IN_TRY(DOCTEST_RB.unary_assert(__VA_ARGS__)) \ + DOCTEST_ASSERT_LOG_REACT_RETURN(DOCTEST_RB); \ + } DOCTEST_FUNC_SCOPE_END + +#else // DOCTEST_CONFIG_SUPER_FAST_ASSERTS + +// necessary for _MESSAGE +#define DOCTEST_ASSERT_IMPLEMENT_2 DOCTEST_ASSERT_IMPLEMENT_1 + +#define DOCTEST_ASSERT_IMPLEMENT_1(assert_type, ...) \ + DOCTEST_CLANG_SUPPRESS_WARNING_WITH_PUSH("-Woverloaded-shift-op-parentheses") \ + doctest::detail::decomp_assert( \ + doctest::assertType::assert_type, __FILE__, __LINE__, #__VA_ARGS__, \ + doctest::detail::ExpressionDecomposer(doctest::assertType::assert_type) \ + << __VA_ARGS__) DOCTEST_CLANG_SUPPRESS_WARNING_POP + +#define DOCTEST_BINARY_ASSERT(assert_type, comparison, ...) \ + doctest::detail::binary_assert( \ + doctest::assertType::assert_type, __FILE__, __LINE__, #__VA_ARGS__, __VA_ARGS__) + +#define DOCTEST_UNARY_ASSERT(assert_type, ...) \ + doctest::detail::unary_assert(doctest::assertType::assert_type, __FILE__, __LINE__, \ + #__VA_ARGS__, __VA_ARGS__) + +#endif // DOCTEST_CONFIG_SUPER_FAST_ASSERTS + +#define DOCTEST_WARN(...) DOCTEST_ASSERT_IMPLEMENT_1(DT_WARN, __VA_ARGS__) +#define DOCTEST_CHECK(...) DOCTEST_ASSERT_IMPLEMENT_1(DT_CHECK, __VA_ARGS__) +#define DOCTEST_REQUIRE(...) DOCTEST_ASSERT_IMPLEMENT_1(DT_REQUIRE, __VA_ARGS__) +#define DOCTEST_WARN_FALSE(...) DOCTEST_ASSERT_IMPLEMENT_1(DT_WARN_FALSE, __VA_ARGS__) +#define DOCTEST_CHECK_FALSE(...) DOCTEST_ASSERT_IMPLEMENT_1(DT_CHECK_FALSE, __VA_ARGS__) +#define DOCTEST_REQUIRE_FALSE(...) DOCTEST_ASSERT_IMPLEMENT_1(DT_REQUIRE_FALSE, __VA_ARGS__) + +// clang-format off +#define DOCTEST_WARN_MESSAGE(cond, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_ASSERT_IMPLEMENT_2(DT_WARN, cond); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_CHECK_MESSAGE(cond, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_ASSERT_IMPLEMENT_2(DT_CHECK, cond); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_REQUIRE_MESSAGE(cond, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_ASSERT_IMPLEMENT_2(DT_REQUIRE, cond); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_WARN_FALSE_MESSAGE(cond, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_ASSERT_IMPLEMENT_2(DT_WARN_FALSE, cond); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_CHECK_FALSE_MESSAGE(cond, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_ASSERT_IMPLEMENT_2(DT_CHECK_FALSE, cond); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_REQUIRE_FALSE_MESSAGE(cond, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_ASSERT_IMPLEMENT_2(DT_REQUIRE_FALSE, cond); } DOCTEST_FUNC_SCOPE_END +// clang-format on + +#define DOCTEST_WARN_EQ(...) DOCTEST_BINARY_ASSERT(DT_WARN_EQ, eq, __VA_ARGS__) +#define DOCTEST_CHECK_EQ(...) DOCTEST_BINARY_ASSERT(DT_CHECK_EQ, eq, __VA_ARGS__) +#define DOCTEST_REQUIRE_EQ(...) DOCTEST_BINARY_ASSERT(DT_REQUIRE_EQ, eq, __VA_ARGS__) +#define DOCTEST_WARN_NE(...) DOCTEST_BINARY_ASSERT(DT_WARN_NE, ne, __VA_ARGS__) +#define DOCTEST_CHECK_NE(...) DOCTEST_BINARY_ASSERT(DT_CHECK_NE, ne, __VA_ARGS__) +#define DOCTEST_REQUIRE_NE(...) DOCTEST_BINARY_ASSERT(DT_REQUIRE_NE, ne, __VA_ARGS__) +#define DOCTEST_WARN_GT(...) DOCTEST_BINARY_ASSERT(DT_WARN_GT, gt, __VA_ARGS__) +#define DOCTEST_CHECK_GT(...) DOCTEST_BINARY_ASSERT(DT_CHECK_GT, gt, __VA_ARGS__) +#define DOCTEST_REQUIRE_GT(...) DOCTEST_BINARY_ASSERT(DT_REQUIRE_GT, gt, __VA_ARGS__) +#define DOCTEST_WARN_LT(...) DOCTEST_BINARY_ASSERT(DT_WARN_LT, lt, __VA_ARGS__) +#define DOCTEST_CHECK_LT(...) DOCTEST_BINARY_ASSERT(DT_CHECK_LT, lt, __VA_ARGS__) +#define DOCTEST_REQUIRE_LT(...) DOCTEST_BINARY_ASSERT(DT_REQUIRE_LT, lt, __VA_ARGS__) +#define DOCTEST_WARN_GE(...) DOCTEST_BINARY_ASSERT(DT_WARN_GE, ge, __VA_ARGS__) +#define DOCTEST_CHECK_GE(...) DOCTEST_BINARY_ASSERT(DT_CHECK_GE, ge, __VA_ARGS__) +#define DOCTEST_REQUIRE_GE(...) DOCTEST_BINARY_ASSERT(DT_REQUIRE_GE, ge, __VA_ARGS__) +#define DOCTEST_WARN_LE(...) DOCTEST_BINARY_ASSERT(DT_WARN_LE, le, __VA_ARGS__) +#define DOCTEST_CHECK_LE(...) DOCTEST_BINARY_ASSERT(DT_CHECK_LE, le, __VA_ARGS__) +#define DOCTEST_REQUIRE_LE(...) DOCTEST_BINARY_ASSERT(DT_REQUIRE_LE, le, __VA_ARGS__) + +#define DOCTEST_WARN_UNARY(...) DOCTEST_UNARY_ASSERT(DT_WARN_UNARY, __VA_ARGS__) +#define DOCTEST_CHECK_UNARY(...) DOCTEST_UNARY_ASSERT(DT_CHECK_UNARY, __VA_ARGS__) +#define DOCTEST_REQUIRE_UNARY(...) DOCTEST_UNARY_ASSERT(DT_REQUIRE_UNARY, __VA_ARGS__) +#define DOCTEST_WARN_UNARY_FALSE(...) DOCTEST_UNARY_ASSERT(DT_WARN_UNARY_FALSE, __VA_ARGS__) +#define DOCTEST_CHECK_UNARY_FALSE(...) DOCTEST_UNARY_ASSERT(DT_CHECK_UNARY_FALSE, __VA_ARGS__) +#define DOCTEST_REQUIRE_UNARY_FALSE(...) DOCTEST_UNARY_ASSERT(DT_REQUIRE_UNARY_FALSE, __VA_ARGS__) + +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS + +#define DOCTEST_ASSERT_THROWS_AS(expr, assert_type, message, ...) \ + DOCTEST_FUNC_SCOPE_BEGIN { \ + if(!doctest::getContextOptions()->no_throw) { \ + doctest::detail::ResultBuilder DOCTEST_RB(doctest::assertType::assert_type, __FILE__, \ + __LINE__, #expr, #__VA_ARGS__, message); \ + try { \ + DOCTEST_CAST_TO_VOID(expr) \ + } catch(const typename doctest::detail::types::remove_const< \ + typename doctest::detail::types::remove_reference<__VA_ARGS__>::type>::type&) {\ + DOCTEST_RB.translateException(); \ + DOCTEST_RB.m_threw_as = true; \ + } catch(...) { DOCTEST_RB.translateException(); } \ + DOCTEST_ASSERT_LOG_REACT_RETURN(DOCTEST_RB); \ + } else { /* NOLINT(*-else-after-return) */ \ + DOCTEST_FUNC_SCOPE_RET(false); \ + } \ + } DOCTEST_FUNC_SCOPE_END + +#define DOCTEST_ASSERT_THROWS_WITH(expr, expr_str, assert_type, ...) \ + DOCTEST_FUNC_SCOPE_BEGIN { \ + if(!doctest::getContextOptions()->no_throw) { \ + doctest::detail::ResultBuilder DOCTEST_RB(doctest::assertType::assert_type, __FILE__, \ + __LINE__, expr_str, "", __VA_ARGS__); \ + try { \ + DOCTEST_CAST_TO_VOID(expr) \ + } catch(...) { DOCTEST_RB.translateException(); } \ + DOCTEST_ASSERT_LOG_REACT_RETURN(DOCTEST_RB); \ + } else { /* NOLINT(*-else-after-return) */ \ + DOCTEST_FUNC_SCOPE_RET(false); \ + } \ + } DOCTEST_FUNC_SCOPE_END + +#define DOCTEST_ASSERT_NOTHROW(assert_type, ...) \ + DOCTEST_FUNC_SCOPE_BEGIN { \ + doctest::detail::ResultBuilder DOCTEST_RB(doctest::assertType::assert_type, __FILE__, \ + __LINE__, #__VA_ARGS__); \ + try { \ + DOCTEST_CAST_TO_VOID(__VA_ARGS__) \ + } catch(...) { DOCTEST_RB.translateException(); } \ + DOCTEST_ASSERT_LOG_REACT_RETURN(DOCTEST_RB); \ + } DOCTEST_FUNC_SCOPE_END + +// clang-format off +#define DOCTEST_WARN_THROWS(...) DOCTEST_ASSERT_THROWS_WITH((__VA_ARGS__), #__VA_ARGS__, DT_WARN_THROWS, "") +#define DOCTEST_CHECK_THROWS(...) DOCTEST_ASSERT_THROWS_WITH((__VA_ARGS__), #__VA_ARGS__, DT_CHECK_THROWS, "") +#define DOCTEST_REQUIRE_THROWS(...) DOCTEST_ASSERT_THROWS_WITH((__VA_ARGS__), #__VA_ARGS__, DT_REQUIRE_THROWS, "") + +#define DOCTEST_WARN_THROWS_AS(expr, ...) DOCTEST_ASSERT_THROWS_AS(expr, DT_WARN_THROWS_AS, "", __VA_ARGS__) +#define DOCTEST_CHECK_THROWS_AS(expr, ...) DOCTEST_ASSERT_THROWS_AS(expr, DT_CHECK_THROWS_AS, "", __VA_ARGS__) +#define DOCTEST_REQUIRE_THROWS_AS(expr, ...) DOCTEST_ASSERT_THROWS_AS(expr, DT_REQUIRE_THROWS_AS, "", __VA_ARGS__) + +#define DOCTEST_WARN_THROWS_WITH(expr, ...) DOCTEST_ASSERT_THROWS_WITH(expr, #expr, DT_WARN_THROWS_WITH, __VA_ARGS__) +#define DOCTEST_CHECK_THROWS_WITH(expr, ...) DOCTEST_ASSERT_THROWS_WITH(expr, #expr, DT_CHECK_THROWS_WITH, __VA_ARGS__) +#define DOCTEST_REQUIRE_THROWS_WITH(expr, ...) DOCTEST_ASSERT_THROWS_WITH(expr, #expr, DT_REQUIRE_THROWS_WITH, __VA_ARGS__) + +#define DOCTEST_WARN_THROWS_WITH_AS(expr, message, ...) DOCTEST_ASSERT_THROWS_AS(expr, DT_WARN_THROWS_WITH_AS, message, __VA_ARGS__) +#define DOCTEST_CHECK_THROWS_WITH_AS(expr, message, ...) DOCTEST_ASSERT_THROWS_AS(expr, DT_CHECK_THROWS_WITH_AS, message, __VA_ARGS__) +#define DOCTEST_REQUIRE_THROWS_WITH_AS(expr, message, ...) DOCTEST_ASSERT_THROWS_AS(expr, DT_REQUIRE_THROWS_WITH_AS, message, __VA_ARGS__) + +#define DOCTEST_WARN_NOTHROW(...) DOCTEST_ASSERT_NOTHROW(DT_WARN_NOTHROW, __VA_ARGS__) +#define DOCTEST_CHECK_NOTHROW(...) DOCTEST_ASSERT_NOTHROW(DT_CHECK_NOTHROW, __VA_ARGS__) +#define DOCTEST_REQUIRE_NOTHROW(...) DOCTEST_ASSERT_NOTHROW(DT_REQUIRE_NOTHROW, __VA_ARGS__) + +#define DOCTEST_WARN_THROWS_MESSAGE(expr, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_WARN_THROWS(expr); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_CHECK_THROWS_MESSAGE(expr, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_CHECK_THROWS(expr); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_REQUIRE_THROWS_MESSAGE(expr, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_REQUIRE_THROWS(expr); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_WARN_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_WARN_THROWS_AS(expr, ex); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_CHECK_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_CHECK_THROWS_AS(expr, ex); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_REQUIRE_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_REQUIRE_THROWS_AS(expr, ex); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_WARN_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_WARN_THROWS_WITH(expr, with); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_CHECK_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_CHECK_THROWS_WITH(expr, with); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_REQUIRE_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_REQUIRE_THROWS_WITH(expr, with); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_WARN_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_WARN_THROWS_WITH_AS(expr, with, ex); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_CHECK_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_CHECK_THROWS_WITH_AS(expr, with, ex); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_REQUIRE_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_REQUIRE_THROWS_WITH_AS(expr, with, ex); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_WARN_NOTHROW_MESSAGE(expr, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_WARN_NOTHROW(expr); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_CHECK_NOTHROW_MESSAGE(expr, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_CHECK_NOTHROW(expr); } DOCTEST_FUNC_SCOPE_END +#define DOCTEST_REQUIRE_NOTHROW_MESSAGE(expr, ...) DOCTEST_FUNC_SCOPE_BEGIN { DOCTEST_INFO(__VA_ARGS__); DOCTEST_REQUIRE_NOTHROW(expr); } DOCTEST_FUNC_SCOPE_END +// clang-format on + +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS + +// ================================================================================================= +// == WHAT FOLLOWS IS VERSIONS OF THE MACROS THAT DO NOT DO ANY REGISTERING! == +// == THIS CAN BE ENABLED BY DEFINING DOCTEST_CONFIG_DISABLE GLOBALLY! == +// ================================================================================================= +#else // DOCTEST_CONFIG_DISABLE + +#define DOCTEST_IMPLEMENT_FIXTURE(der, base, func, name) \ + namespace /* NOLINT */ { \ + template \ + struct der : public base \ + { void f(); }; \ + } \ + template \ + inline void der::f() + +#define DOCTEST_CREATE_AND_REGISTER_FUNCTION(f, name) \ + template \ + static inline void f() + +// for registering tests +#define DOCTEST_TEST_CASE(name) \ + DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), name) + +// for registering tests in classes +#define DOCTEST_TEST_CASE_CLASS(name) \ + DOCTEST_CREATE_AND_REGISTER_FUNCTION(DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), name) + +// for registering tests with a fixture +#define DOCTEST_TEST_CASE_FIXTURE(x, name) \ + DOCTEST_IMPLEMENT_FIXTURE(DOCTEST_ANONYMOUS(DOCTEST_ANON_CLASS_), x, \ + DOCTEST_ANONYMOUS(DOCTEST_ANON_FUNC_), name) + +// for converting types to strings without the header and demangling +#define DOCTEST_TYPE_TO_STRING_AS(str, ...) static_assert(true, "") +#define DOCTEST_TYPE_TO_STRING(...) static_assert(true, "") + +// for typed tests +#define DOCTEST_TEST_CASE_TEMPLATE(name, type, ...) \ + template \ + inline void DOCTEST_ANONYMOUS(DOCTEST_ANON_TMP_)() + +#define DOCTEST_TEST_CASE_TEMPLATE_DEFINE(name, type, id) \ + template \ + inline void DOCTEST_ANONYMOUS(DOCTEST_ANON_TMP_)() + +#define DOCTEST_TEST_CASE_TEMPLATE_INVOKE(id, ...) static_assert(true, "") +#define DOCTEST_TEST_CASE_TEMPLATE_APPLY(id, ...) static_assert(true, "") + +// for subcases +#define DOCTEST_SUBCASE(name) + +// for a testsuite block +#define DOCTEST_TEST_SUITE(name) namespace // NOLINT + +// for starting a testsuite block +#define DOCTEST_TEST_SUITE_BEGIN(name) static_assert(true, "") + +// for ending a testsuite block +#define DOCTEST_TEST_SUITE_END using DOCTEST_ANONYMOUS(DOCTEST_ANON_FOR_SEMICOLON_) = int + +#define DOCTEST_REGISTER_EXCEPTION_TRANSLATOR(signature) \ + template \ + static inline doctest::String DOCTEST_ANONYMOUS(DOCTEST_ANON_TRANSLATOR_)(signature) + +#define DOCTEST_REGISTER_REPORTER(name, priority, reporter) +#define DOCTEST_REGISTER_LISTENER(name, priority, reporter) + +#define DOCTEST_INFO(...) (static_cast(0)) +#define DOCTEST_CAPTURE(x) (static_cast(0)) +#define DOCTEST_ADD_MESSAGE_AT(file, line, ...) (static_cast(0)) +#define DOCTEST_ADD_FAIL_CHECK_AT(file, line, ...) (static_cast(0)) +#define DOCTEST_ADD_FAIL_AT(file, line, ...) (static_cast(0)) +#define DOCTEST_MESSAGE(...) (static_cast(0)) +#define DOCTEST_FAIL_CHECK(...) (static_cast(0)) +#define DOCTEST_FAIL(...) (static_cast(0)) + +#if defined(DOCTEST_CONFIG_EVALUATE_ASSERTS_EVEN_WHEN_DISABLED) \ + && defined(DOCTEST_CONFIG_ASSERTS_RETURN_VALUES) + +#define DOCTEST_WARN(...) [&] { return __VA_ARGS__; }() +#define DOCTEST_CHECK(...) [&] { return __VA_ARGS__; }() +#define DOCTEST_REQUIRE(...) [&] { return __VA_ARGS__; }() +#define DOCTEST_WARN_FALSE(...) [&] { return !(__VA_ARGS__); }() +#define DOCTEST_CHECK_FALSE(...) [&] { return !(__VA_ARGS__); }() +#define DOCTEST_REQUIRE_FALSE(...) [&] { return !(__VA_ARGS__); }() + +#define DOCTEST_WARN_MESSAGE(cond, ...) [&] { return cond; }() +#define DOCTEST_CHECK_MESSAGE(cond, ...) [&] { return cond; }() +#define DOCTEST_REQUIRE_MESSAGE(cond, ...) [&] { return cond; }() +#define DOCTEST_WARN_FALSE_MESSAGE(cond, ...) [&] { return !(cond); }() +#define DOCTEST_CHECK_FALSE_MESSAGE(cond, ...) [&] { return !(cond); }() +#define DOCTEST_REQUIRE_FALSE_MESSAGE(cond, ...) [&] { return !(cond); }() + +namespace doctest { +namespace detail { +#define DOCTEST_RELATIONAL_OP(name, op) \ + template \ + bool name(const DOCTEST_REF_WRAP(L) lhs, const DOCTEST_REF_WRAP(R) rhs) { return lhs op rhs; } + + DOCTEST_RELATIONAL_OP(eq, ==) + DOCTEST_RELATIONAL_OP(ne, !=) + DOCTEST_RELATIONAL_OP(lt, <) + DOCTEST_RELATIONAL_OP(gt, >) + DOCTEST_RELATIONAL_OP(le, <=) + DOCTEST_RELATIONAL_OP(ge, >=) +} // namespace detail +} // namespace doctest + +#define DOCTEST_WARN_EQ(...) [&] { return doctest::detail::eq(__VA_ARGS__); }() +#define DOCTEST_CHECK_EQ(...) [&] { return doctest::detail::eq(__VA_ARGS__); }() +#define DOCTEST_REQUIRE_EQ(...) [&] { return doctest::detail::eq(__VA_ARGS__); }() +#define DOCTEST_WARN_NE(...) [&] { return doctest::detail::ne(__VA_ARGS__); }() +#define DOCTEST_CHECK_NE(...) [&] { return doctest::detail::ne(__VA_ARGS__); }() +#define DOCTEST_REQUIRE_NE(...) [&] { return doctest::detail::ne(__VA_ARGS__); }() +#define DOCTEST_WARN_LT(...) [&] { return doctest::detail::lt(__VA_ARGS__); }() +#define DOCTEST_CHECK_LT(...) [&] { return doctest::detail::lt(__VA_ARGS__); }() +#define DOCTEST_REQUIRE_LT(...) [&] { return doctest::detail::lt(__VA_ARGS__); }() +#define DOCTEST_WARN_GT(...) [&] { return doctest::detail::gt(__VA_ARGS__); }() +#define DOCTEST_CHECK_GT(...) [&] { return doctest::detail::gt(__VA_ARGS__); }() +#define DOCTEST_REQUIRE_GT(...) [&] { return doctest::detail::gt(__VA_ARGS__); }() +#define DOCTEST_WARN_LE(...) [&] { return doctest::detail::le(__VA_ARGS__); }() +#define DOCTEST_CHECK_LE(...) [&] { return doctest::detail::le(__VA_ARGS__); }() +#define DOCTEST_REQUIRE_LE(...) [&] { return doctest::detail::le(__VA_ARGS__); }() +#define DOCTEST_WARN_GE(...) [&] { return doctest::detail::ge(__VA_ARGS__); }() +#define DOCTEST_CHECK_GE(...) [&] { return doctest::detail::ge(__VA_ARGS__); }() +#define DOCTEST_REQUIRE_GE(...) [&] { return doctest::detail::ge(__VA_ARGS__); }() +#define DOCTEST_WARN_UNARY(...) [&] { return __VA_ARGS__; }() +#define DOCTEST_CHECK_UNARY(...) [&] { return __VA_ARGS__; }() +#define DOCTEST_REQUIRE_UNARY(...) [&] { return __VA_ARGS__; }() +#define DOCTEST_WARN_UNARY_FALSE(...) [&] { return !(__VA_ARGS__); }() +#define DOCTEST_CHECK_UNARY_FALSE(...) [&] { return !(__VA_ARGS__); }() +#define DOCTEST_REQUIRE_UNARY_FALSE(...) [&] { return !(__VA_ARGS__); }() + +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS + +#define DOCTEST_WARN_THROWS_WITH(expr, with, ...) [] { static_assert(false, "Exception translation is not available when doctest is disabled."); return false; }() +#define DOCTEST_CHECK_THROWS_WITH(expr, with, ...) DOCTEST_WARN_THROWS_WITH(,,) +#define DOCTEST_REQUIRE_THROWS_WITH(expr, with, ...) DOCTEST_WARN_THROWS_WITH(,,) +#define DOCTEST_WARN_THROWS_WITH_AS(expr, with, ex, ...) DOCTEST_WARN_THROWS_WITH(,,) +#define DOCTEST_CHECK_THROWS_WITH_AS(expr, with, ex, ...) DOCTEST_WARN_THROWS_WITH(,,) +#define DOCTEST_REQUIRE_THROWS_WITH_AS(expr, with, ex, ...) DOCTEST_WARN_THROWS_WITH(,,) + +#define DOCTEST_WARN_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_WARN_THROWS_WITH(,,) +#define DOCTEST_CHECK_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_WARN_THROWS_WITH(,,) +#define DOCTEST_REQUIRE_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_WARN_THROWS_WITH(,,) +#define DOCTEST_WARN_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_WARN_THROWS_WITH(,,) +#define DOCTEST_CHECK_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_WARN_THROWS_WITH(,,) +#define DOCTEST_REQUIRE_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_WARN_THROWS_WITH(,,) + +#define DOCTEST_WARN_THROWS(...) [&] { try { __VA_ARGS__; return false; } catch (...) { return true; } }() +#define DOCTEST_CHECK_THROWS(...) [&] { try { __VA_ARGS__; return false; } catch (...) { return true; } }() +#define DOCTEST_REQUIRE_THROWS(...) [&] { try { __VA_ARGS__; return false; } catch (...) { return true; } }() +#define DOCTEST_WARN_THROWS_AS(expr, ...) [&] { try { expr; } catch (__VA_ARGS__) { return true; } catch (...) { } return false; }() +#define DOCTEST_CHECK_THROWS_AS(expr, ...) [&] { try { expr; } catch (__VA_ARGS__) { return true; } catch (...) { } return false; }() +#define DOCTEST_REQUIRE_THROWS_AS(expr, ...) [&] { try { expr; } catch (__VA_ARGS__) { return true; } catch (...) { } return false; }() +#define DOCTEST_WARN_NOTHROW(...) [&] { try { __VA_ARGS__; return true; } catch (...) { return false; } }() +#define DOCTEST_CHECK_NOTHROW(...) [&] { try { __VA_ARGS__; return true; } catch (...) { return false; } }() +#define DOCTEST_REQUIRE_NOTHROW(...) [&] { try { __VA_ARGS__; return true; } catch (...) { return false; } }() + +#define DOCTEST_WARN_THROWS_MESSAGE(expr, ...) [&] { try { __VA_ARGS__; return false; } catch (...) { return true; } }() +#define DOCTEST_CHECK_THROWS_MESSAGE(expr, ...) [&] { try { __VA_ARGS__; return false; } catch (...) { return true; } }() +#define DOCTEST_REQUIRE_THROWS_MESSAGE(expr, ...) [&] { try { __VA_ARGS__; return false; } catch (...) { return true; } }() +#define DOCTEST_WARN_THROWS_AS_MESSAGE(expr, ex, ...) [&] { try { expr; } catch (__VA_ARGS__) { return true; } catch (...) { } return false; }() +#define DOCTEST_CHECK_THROWS_AS_MESSAGE(expr, ex, ...) [&] { try { expr; } catch (__VA_ARGS__) { return true; } catch (...) { } return false; }() +#define DOCTEST_REQUIRE_THROWS_AS_MESSAGE(expr, ex, ...) [&] { try { expr; } catch (__VA_ARGS__) { return true; } catch (...) { } return false; }() +#define DOCTEST_WARN_NOTHROW_MESSAGE(expr, ...) [&] { try { __VA_ARGS__; return true; } catch (...) { return false; } }() +#define DOCTEST_CHECK_NOTHROW_MESSAGE(expr, ...) [&] { try { __VA_ARGS__; return true; } catch (...) { return false; } }() +#define DOCTEST_REQUIRE_NOTHROW_MESSAGE(expr, ...) [&] { try { __VA_ARGS__; return true; } catch (...) { return false; } }() + +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS + +#else // DOCTEST_CONFIG_EVALUATE_ASSERTS_EVEN_WHEN_DISABLED + +#define DOCTEST_WARN(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_FALSE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_FALSE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_FALSE(...) DOCTEST_FUNC_EMPTY + +#define DOCTEST_WARN_MESSAGE(cond, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_MESSAGE(cond, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_MESSAGE(cond, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_FALSE_MESSAGE(cond, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_FALSE_MESSAGE(cond, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_FALSE_MESSAGE(cond, ...) DOCTEST_FUNC_EMPTY + +#define DOCTEST_WARN_EQ(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_EQ(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_EQ(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_NE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_NE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_NE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_GT(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_GT(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_GT(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_LT(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_LT(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_LT(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_GE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_GE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_GE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_LE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_LE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_LE(...) DOCTEST_FUNC_EMPTY + +#define DOCTEST_WARN_UNARY(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_UNARY(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_UNARY(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_UNARY_FALSE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_UNARY_FALSE(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_UNARY_FALSE(...) DOCTEST_FUNC_EMPTY + +#ifndef DOCTEST_CONFIG_NO_EXCEPTIONS + +#define DOCTEST_WARN_THROWS(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_THROWS(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_THROWS(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_THROWS_AS(expr, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_THROWS_AS(expr, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_THROWS_AS(expr, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_THROWS_WITH(expr, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_THROWS_WITH(expr, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_THROWS_WITH(expr, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_THROWS_WITH_AS(expr, with, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_THROWS_WITH_AS(expr, with, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_THROWS_WITH_AS(expr, with, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_NOTHROW(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_NOTHROW(...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_NOTHROW(...) DOCTEST_FUNC_EMPTY + +#define DOCTEST_WARN_THROWS_MESSAGE(expr, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_THROWS_MESSAGE(expr, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_THROWS_MESSAGE(expr, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_WARN_NOTHROW_MESSAGE(expr, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_CHECK_NOTHROW_MESSAGE(expr, ...) DOCTEST_FUNC_EMPTY +#define DOCTEST_REQUIRE_NOTHROW_MESSAGE(expr, ...) DOCTEST_FUNC_EMPTY + +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS + +#endif // DOCTEST_CONFIG_EVALUATE_ASSERTS_EVEN_WHEN_DISABLED + +#endif // DOCTEST_CONFIG_DISABLE + +#ifdef DOCTEST_CONFIG_NO_EXCEPTIONS + +#ifdef DOCTEST_CONFIG_NO_EXCEPTIONS_BUT_WITH_ALL_ASSERTS +#define DOCTEST_EXCEPTION_EMPTY_FUNC DOCTEST_FUNC_EMPTY +#else // DOCTEST_CONFIG_NO_EXCEPTIONS_BUT_WITH_ALL_ASSERTS +#define DOCTEST_EXCEPTION_EMPTY_FUNC [] { static_assert(false, "Exceptions are disabled! " \ + "Use DOCTEST_CONFIG_NO_EXCEPTIONS_BUT_WITH_ALL_ASSERTS if you want to compile with exceptions disabled."); return false; }() + +#undef DOCTEST_REQUIRE +#undef DOCTEST_REQUIRE_FALSE +#undef DOCTEST_REQUIRE_MESSAGE +#undef DOCTEST_REQUIRE_FALSE_MESSAGE +#undef DOCTEST_REQUIRE_EQ +#undef DOCTEST_REQUIRE_NE +#undef DOCTEST_REQUIRE_GT +#undef DOCTEST_REQUIRE_LT +#undef DOCTEST_REQUIRE_GE +#undef DOCTEST_REQUIRE_LE +#undef DOCTEST_REQUIRE_UNARY +#undef DOCTEST_REQUIRE_UNARY_FALSE + +#define DOCTEST_REQUIRE DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_FALSE DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_MESSAGE DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_FALSE_MESSAGE DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_EQ DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_NE DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_GT DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_LT DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_GE DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_LE DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_UNARY DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_UNARY_FALSE DOCTEST_EXCEPTION_EMPTY_FUNC + +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS_BUT_WITH_ALL_ASSERTS + +#define DOCTEST_WARN_THROWS(...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_CHECK_THROWS(...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_THROWS(...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_WARN_THROWS_AS(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_CHECK_THROWS_AS(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_THROWS_AS(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_WARN_THROWS_WITH(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_CHECK_THROWS_WITH(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_THROWS_WITH(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_WARN_THROWS_WITH_AS(expr, with, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_CHECK_THROWS_WITH_AS(expr, with, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_THROWS_WITH_AS(expr, with, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_WARN_NOTHROW(...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_CHECK_NOTHROW(...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_NOTHROW(...) DOCTEST_EXCEPTION_EMPTY_FUNC + +#define DOCTEST_WARN_THROWS_MESSAGE(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_CHECK_THROWS_MESSAGE(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_THROWS_MESSAGE(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_WARN_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_CHECK_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_WARN_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_CHECK_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_WARN_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_CHECK_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_WARN_NOTHROW_MESSAGE(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_CHECK_NOTHROW_MESSAGE(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC +#define DOCTEST_REQUIRE_NOTHROW_MESSAGE(expr, ...) DOCTEST_EXCEPTION_EMPTY_FUNC + +#endif // DOCTEST_CONFIG_NO_EXCEPTIONS + +// clang-format off +// KEPT FOR BACKWARDS COMPATIBILITY - FORWARDING TO THE RIGHT MACROS +#define DOCTEST_FAST_WARN_EQ DOCTEST_WARN_EQ +#define DOCTEST_FAST_CHECK_EQ DOCTEST_CHECK_EQ +#define DOCTEST_FAST_REQUIRE_EQ DOCTEST_REQUIRE_EQ +#define DOCTEST_FAST_WARN_NE DOCTEST_WARN_NE +#define DOCTEST_FAST_CHECK_NE DOCTEST_CHECK_NE +#define DOCTEST_FAST_REQUIRE_NE DOCTEST_REQUIRE_NE +#define DOCTEST_FAST_WARN_GT DOCTEST_WARN_GT +#define DOCTEST_FAST_CHECK_GT DOCTEST_CHECK_GT +#define DOCTEST_FAST_REQUIRE_GT DOCTEST_REQUIRE_GT +#define DOCTEST_FAST_WARN_LT DOCTEST_WARN_LT +#define DOCTEST_FAST_CHECK_LT DOCTEST_CHECK_LT +#define DOCTEST_FAST_REQUIRE_LT DOCTEST_REQUIRE_LT +#define DOCTEST_FAST_WARN_GE DOCTEST_WARN_GE +#define DOCTEST_FAST_CHECK_GE DOCTEST_CHECK_GE +#define DOCTEST_FAST_REQUIRE_GE DOCTEST_REQUIRE_GE +#define DOCTEST_FAST_WARN_LE DOCTEST_WARN_LE +#define DOCTEST_FAST_CHECK_LE DOCTEST_CHECK_LE +#define DOCTEST_FAST_REQUIRE_LE DOCTEST_REQUIRE_LE + +#define DOCTEST_FAST_WARN_UNARY DOCTEST_WARN_UNARY +#define DOCTEST_FAST_CHECK_UNARY DOCTEST_CHECK_UNARY +#define DOCTEST_FAST_REQUIRE_UNARY DOCTEST_REQUIRE_UNARY +#define DOCTEST_FAST_WARN_UNARY_FALSE DOCTEST_WARN_UNARY_FALSE +#define DOCTEST_FAST_CHECK_UNARY_FALSE DOCTEST_CHECK_UNARY_FALSE +#define DOCTEST_FAST_REQUIRE_UNARY_FALSE DOCTEST_REQUIRE_UNARY_FALSE + +#define DOCTEST_TEST_CASE_TEMPLATE_INSTANTIATE(id, ...) DOCTEST_TEST_CASE_TEMPLATE_INVOKE(id,__VA_ARGS__) +// clang-format on + +// BDD style macros +// clang-format off +#define DOCTEST_SCENARIO(name) DOCTEST_TEST_CASE(" Scenario: " name) +#define DOCTEST_SCENARIO_CLASS(name) DOCTEST_TEST_CASE_CLASS(" Scenario: " name) +#define DOCTEST_SCENARIO_TEMPLATE(name, T, ...) DOCTEST_TEST_CASE_TEMPLATE(" Scenario: " name, T, __VA_ARGS__) +#define DOCTEST_SCENARIO_TEMPLATE_DEFINE(name, T, id) DOCTEST_TEST_CASE_TEMPLATE_DEFINE(" Scenario: " name, T, id) + +#define DOCTEST_GIVEN(name) DOCTEST_SUBCASE(" Given: " name) +#define DOCTEST_WHEN(name) DOCTEST_SUBCASE(" When: " name) +#define DOCTEST_AND_WHEN(name) DOCTEST_SUBCASE("And when: " name) +#define DOCTEST_THEN(name) DOCTEST_SUBCASE(" Then: " name) +#define DOCTEST_AND_THEN(name) DOCTEST_SUBCASE(" And: " name) +// clang-format on + +// == SHORT VERSIONS OF THE MACROS +#ifndef DOCTEST_CONFIG_NO_SHORT_MACRO_NAMES + +#define TEST_CASE(name) DOCTEST_TEST_CASE(name) +#define TEST_CASE_CLASS(name) DOCTEST_TEST_CASE_CLASS(name) +#define TEST_CASE_FIXTURE(x, name) DOCTEST_TEST_CASE_FIXTURE(x, name) +#define TYPE_TO_STRING_AS(str, ...) DOCTEST_TYPE_TO_STRING_AS(str, __VA_ARGS__) +#define TYPE_TO_STRING(...) DOCTEST_TYPE_TO_STRING(__VA_ARGS__) +#define TEST_CASE_TEMPLATE(name, T, ...) DOCTEST_TEST_CASE_TEMPLATE(name, T, __VA_ARGS__) +#define TEST_CASE_TEMPLATE_DEFINE(name, T, id) DOCTEST_TEST_CASE_TEMPLATE_DEFINE(name, T, id) +#define TEST_CASE_TEMPLATE_INVOKE(id, ...) DOCTEST_TEST_CASE_TEMPLATE_INVOKE(id, __VA_ARGS__) +#define TEST_CASE_TEMPLATE_APPLY(id, ...) DOCTEST_TEST_CASE_TEMPLATE_APPLY(id, __VA_ARGS__) +#define SUBCASE(name) DOCTEST_SUBCASE(name) +#define TEST_SUITE(decorators) DOCTEST_TEST_SUITE(decorators) +#define TEST_SUITE_BEGIN(name) DOCTEST_TEST_SUITE_BEGIN(name) +#define TEST_SUITE_END DOCTEST_TEST_SUITE_END +#define REGISTER_EXCEPTION_TRANSLATOR(signature) DOCTEST_REGISTER_EXCEPTION_TRANSLATOR(signature) +#define REGISTER_REPORTER(name, priority, reporter) DOCTEST_REGISTER_REPORTER(name, priority, reporter) +#define REGISTER_LISTENER(name, priority, reporter) DOCTEST_REGISTER_LISTENER(name, priority, reporter) +#define INFO(...) DOCTEST_INFO(__VA_ARGS__) +#define CAPTURE(x) DOCTEST_CAPTURE(x) +#define ADD_MESSAGE_AT(file, line, ...) DOCTEST_ADD_MESSAGE_AT(file, line, __VA_ARGS__) +#define ADD_FAIL_CHECK_AT(file, line, ...) DOCTEST_ADD_FAIL_CHECK_AT(file, line, __VA_ARGS__) +#define ADD_FAIL_AT(file, line, ...) DOCTEST_ADD_FAIL_AT(file, line, __VA_ARGS__) +#define MESSAGE(...) DOCTEST_MESSAGE(__VA_ARGS__) +#define FAIL_CHECK(...) DOCTEST_FAIL_CHECK(__VA_ARGS__) +#define FAIL(...) DOCTEST_FAIL(__VA_ARGS__) +#define TO_LVALUE(...) DOCTEST_TO_LVALUE(__VA_ARGS__) + +#define WARN(...) DOCTEST_WARN(__VA_ARGS__) +#define WARN_FALSE(...) DOCTEST_WARN_FALSE(__VA_ARGS__) +#define WARN_THROWS(...) DOCTEST_WARN_THROWS(__VA_ARGS__) +#define WARN_THROWS_AS(expr, ...) DOCTEST_WARN_THROWS_AS(expr, __VA_ARGS__) +#define WARN_THROWS_WITH(expr, ...) DOCTEST_WARN_THROWS_WITH(expr, __VA_ARGS__) +#define WARN_THROWS_WITH_AS(expr, with, ...) DOCTEST_WARN_THROWS_WITH_AS(expr, with, __VA_ARGS__) +#define WARN_NOTHROW(...) DOCTEST_WARN_NOTHROW(__VA_ARGS__) +#define CHECK(...) DOCTEST_CHECK(__VA_ARGS__) +#define CHECK_FALSE(...) DOCTEST_CHECK_FALSE(__VA_ARGS__) +#define CHECK_THROWS(...) DOCTEST_CHECK_THROWS(__VA_ARGS__) +#define CHECK_THROWS_AS(expr, ...) DOCTEST_CHECK_THROWS_AS(expr, __VA_ARGS__) +#define CHECK_THROWS_WITH(expr, ...) DOCTEST_CHECK_THROWS_WITH(expr, __VA_ARGS__) +#define CHECK_THROWS_WITH_AS(expr, with, ...) DOCTEST_CHECK_THROWS_WITH_AS(expr, with, __VA_ARGS__) +#define CHECK_NOTHROW(...) DOCTEST_CHECK_NOTHROW(__VA_ARGS__) +#define REQUIRE(...) DOCTEST_REQUIRE(__VA_ARGS__) +#define REQUIRE_FALSE(...) DOCTEST_REQUIRE_FALSE(__VA_ARGS__) +#define REQUIRE_THROWS(...) DOCTEST_REQUIRE_THROWS(__VA_ARGS__) +#define REQUIRE_THROWS_AS(expr, ...) DOCTEST_REQUIRE_THROWS_AS(expr, __VA_ARGS__) +#define REQUIRE_THROWS_WITH(expr, ...) DOCTEST_REQUIRE_THROWS_WITH(expr, __VA_ARGS__) +#define REQUIRE_THROWS_WITH_AS(expr, with, ...) DOCTEST_REQUIRE_THROWS_WITH_AS(expr, with, __VA_ARGS__) +#define REQUIRE_NOTHROW(...) DOCTEST_REQUIRE_NOTHROW(__VA_ARGS__) + +#define WARN_MESSAGE(cond, ...) DOCTEST_WARN_MESSAGE(cond, __VA_ARGS__) +#define WARN_FALSE_MESSAGE(cond, ...) DOCTEST_WARN_FALSE_MESSAGE(cond, __VA_ARGS__) +#define WARN_THROWS_MESSAGE(expr, ...) DOCTEST_WARN_THROWS_MESSAGE(expr, __VA_ARGS__) +#define WARN_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_WARN_THROWS_AS_MESSAGE(expr, ex, __VA_ARGS__) +#define WARN_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_WARN_THROWS_WITH_MESSAGE(expr, with, __VA_ARGS__) +#define WARN_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_WARN_THROWS_WITH_AS_MESSAGE(expr, with, ex, __VA_ARGS__) +#define WARN_NOTHROW_MESSAGE(expr, ...) DOCTEST_WARN_NOTHROW_MESSAGE(expr, __VA_ARGS__) +#define CHECK_MESSAGE(cond, ...) DOCTEST_CHECK_MESSAGE(cond, __VA_ARGS__) +#define CHECK_FALSE_MESSAGE(cond, ...) DOCTEST_CHECK_FALSE_MESSAGE(cond, __VA_ARGS__) +#define CHECK_THROWS_MESSAGE(expr, ...) DOCTEST_CHECK_THROWS_MESSAGE(expr, __VA_ARGS__) +#define CHECK_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_CHECK_THROWS_AS_MESSAGE(expr, ex, __VA_ARGS__) +#define CHECK_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_CHECK_THROWS_WITH_MESSAGE(expr, with, __VA_ARGS__) +#define CHECK_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_CHECK_THROWS_WITH_AS_MESSAGE(expr, with, ex, __VA_ARGS__) +#define CHECK_NOTHROW_MESSAGE(expr, ...) DOCTEST_CHECK_NOTHROW_MESSAGE(expr, __VA_ARGS__) +#define REQUIRE_MESSAGE(cond, ...) DOCTEST_REQUIRE_MESSAGE(cond, __VA_ARGS__) +#define REQUIRE_FALSE_MESSAGE(cond, ...) DOCTEST_REQUIRE_FALSE_MESSAGE(cond, __VA_ARGS__) +#define REQUIRE_THROWS_MESSAGE(expr, ...) DOCTEST_REQUIRE_THROWS_MESSAGE(expr, __VA_ARGS__) +#define REQUIRE_THROWS_AS_MESSAGE(expr, ex, ...) DOCTEST_REQUIRE_THROWS_AS_MESSAGE(expr, ex, __VA_ARGS__) +#define REQUIRE_THROWS_WITH_MESSAGE(expr, with, ...) DOCTEST_REQUIRE_THROWS_WITH_MESSAGE(expr, with, __VA_ARGS__) +#define REQUIRE_THROWS_WITH_AS_MESSAGE(expr, with, ex, ...) DOCTEST_REQUIRE_THROWS_WITH_AS_MESSAGE(expr, with, ex, __VA_ARGS__) +#define REQUIRE_NOTHROW_MESSAGE(expr, ...) DOCTEST_REQUIRE_NOTHROW_MESSAGE(expr, __VA_ARGS__) + +#define SCENARIO(name) DOCTEST_SCENARIO(name) +#define SCENARIO_CLASS(name) DOCTEST_SCENARIO_CLASS(name) +#define SCENARIO_TEMPLATE(name, T, ...) DOCTEST_SCENARIO_TEMPLATE(name, T, __VA_ARGS__) +#define SCENARIO_TEMPLATE_DEFINE(name, T, id) DOCTEST_SCENARIO_TEMPLATE_DEFINE(name, T, id) +#define GIVEN(name) DOCTEST_GIVEN(name) +#define WHEN(name) DOCTEST_WHEN(name) +#define AND_WHEN(name) DOCTEST_AND_WHEN(name) +#define THEN(name) DOCTEST_THEN(name) +#define AND_THEN(name) DOCTEST_AND_THEN(name) + +#define WARN_EQ(...) DOCTEST_WARN_EQ(__VA_ARGS__) +#define CHECK_EQ(...) DOCTEST_CHECK_EQ(__VA_ARGS__) +#define REQUIRE_EQ(...) DOCTEST_REQUIRE_EQ(__VA_ARGS__) +#define WARN_NE(...) DOCTEST_WARN_NE(__VA_ARGS__) +#define CHECK_NE(...) DOCTEST_CHECK_NE(__VA_ARGS__) +#define REQUIRE_NE(...) DOCTEST_REQUIRE_NE(__VA_ARGS__) +#define WARN_GT(...) DOCTEST_WARN_GT(__VA_ARGS__) +#define CHECK_GT(...) DOCTEST_CHECK_GT(__VA_ARGS__) +#define REQUIRE_GT(...) DOCTEST_REQUIRE_GT(__VA_ARGS__) +#define WARN_LT(...) DOCTEST_WARN_LT(__VA_ARGS__) +#define CHECK_LT(...) DOCTEST_CHECK_LT(__VA_ARGS__) +#define REQUIRE_LT(...) DOCTEST_REQUIRE_LT(__VA_ARGS__) +#define WARN_GE(...) DOCTEST_WARN_GE(__VA_ARGS__) +#define CHECK_GE(...) DOCTEST_CHECK_GE(__VA_ARGS__) +#define REQUIRE_GE(...) DOCTEST_REQUIRE_GE(__VA_ARGS__) +#define WARN_LE(...) DOCTEST_WARN_LE(__VA_ARGS__) +#define CHECK_LE(...) DOCTEST_CHECK_LE(__VA_ARGS__) +#define REQUIRE_LE(...) DOCTEST_REQUIRE_LE(__VA_ARGS__) +#define WARN_UNARY(...) DOCTEST_WARN_UNARY(__VA_ARGS__) +#define CHECK_UNARY(...) DOCTEST_CHECK_UNARY(__VA_ARGS__) +#define REQUIRE_UNARY(...) DOCTEST_REQUIRE_UNARY(__VA_ARGS__) +#define WARN_UNARY_FALSE(...) DOCTEST_WARN_UNARY_FALSE(__VA_ARGS__) +#define CHECK_UNARY_FALSE(...) DOCTEST_CHECK_UNARY_FALSE(__VA_ARGS__) +#define REQUIRE_UNARY_FALSE(...) DOCTEST_REQUIRE_UNARY_FALSE(__VA_ARGS__) + +// KEPT FOR BACKWARDS COMPATIBILITY +#define FAST_WARN_EQ(...) DOCTEST_FAST_WARN_EQ(__VA_ARGS__) +#define FAST_CHECK_EQ(...) DOCTEST_FAST_CHECK_EQ(__VA_ARGS__) +#define FAST_REQUIRE_EQ(...) DOCTEST_FAST_REQUIRE_EQ(__VA_ARGS__) +#define FAST_WARN_NE(...) DOCTEST_FAST_WARN_NE(__VA_ARGS__) +#define FAST_CHECK_NE(...) DOCTEST_FAST_CHECK_NE(__VA_ARGS__) +#define FAST_REQUIRE_NE(...) DOCTEST_FAST_REQUIRE_NE(__VA_ARGS__) +#define FAST_WARN_GT(...) DOCTEST_FAST_WARN_GT(__VA_ARGS__) +#define FAST_CHECK_GT(...) DOCTEST_FAST_CHECK_GT(__VA_ARGS__) +#define FAST_REQUIRE_GT(...) DOCTEST_FAST_REQUIRE_GT(__VA_ARGS__) +#define FAST_WARN_LT(...) DOCTEST_FAST_WARN_LT(__VA_ARGS__) +#define FAST_CHECK_LT(...) DOCTEST_FAST_CHECK_LT(__VA_ARGS__) +#define FAST_REQUIRE_LT(...) DOCTEST_FAST_REQUIRE_LT(__VA_ARGS__) +#define FAST_WARN_GE(...) DOCTEST_FAST_WARN_GE(__VA_ARGS__) +#define FAST_CHECK_GE(...) DOCTEST_FAST_CHECK_GE(__VA_ARGS__) +#define FAST_REQUIRE_GE(...) DOCTEST_FAST_REQUIRE_GE(__VA_ARGS__) +#define FAST_WARN_LE(...) DOCTEST_FAST_WARN_LE(__VA_ARGS__) +#define FAST_CHECK_LE(...) DOCTEST_FAST_CHECK_LE(__VA_ARGS__) +#define FAST_REQUIRE_LE(...) DOCTEST_FAST_REQUIRE_LE(__VA_ARGS__) + +#define FAST_WARN_UNARY(...) DOCTEST_FAST_WARN_UNARY(__VA_ARGS__) +#define FAST_CHECK_UNARY(...) DOCTEST_FAST_CHECK_UNARY(__VA_ARGS__) +#define FAST_REQUIRE_UNARY(...) DOCTEST_FAST_REQUIRE_UNARY(__VA_ARGS__) +#define FAST_WARN_UNARY_FALSE(...) DOCTEST_FAST_WARN_UNARY_FALSE(__VA_ARGS__) +#define FAST_CHECK_UNARY_FALSE(...) DOCTEST_FAST_CHECK_UNARY_FALSE(__VA_ARGS__) +#define FAST_REQUIRE_UNARY_FALSE(...) DOCTEST_FAST_REQUIRE_UNARY_FALSE(__VA_ARGS__) + +#define TEST_CASE_TEMPLATE_INSTANTIATE(id, ...) DOCTEST_TEST_CASE_TEMPLATE_INSTANTIATE(id, __VA_ARGS__) + +#endif // DOCTEST_CONFIG_NO_SHORT_MACRO_NAMES + +#ifndef DOCTEST_CONFIG_DISABLE + +// this is here to clear the 'current test suite' for the current translation unit - at the top +DOCTEST_TEST_SUITE_END(); + +#endif // DOCTEST_CONFIG_DISABLE + +DOCTEST_CLANG_SUPPRESS_WARNING_POP +DOCTEST_MSVC_SUPPRESS_WARNING_POP +DOCTEST_GCC_SUPPRESS_WARNING_POP + +DOCTEST_SUPPRESS_COMMON_WARNINGS_POP + +#endif // DOCTEST_LIBRARY_INCLUDED diff --git a/tests/unit-tests/proj.android/.gitignore b/tests/unit-tests/proj.android/.gitignore new file mode 100644 index 000000000000..9c4de5825b19 --- /dev/null +++ b/tests/unit-tests/proj.android/.gitignore @@ -0,0 +1,7 @@ +.gradle +/local.properties +/.idea/workspace.xml +/.idea/libraries +.DS_Store +/build +/captures diff --git a/tests/unit-tests/proj.android/app/.gitignore b/tests/unit-tests/proj.android/app/.gitignore new file mode 100644 index 000000000000..0886f94956c5 --- /dev/null +++ b/tests/unit-tests/proj.android/app/.gitignore @@ -0,0 +1,2 @@ +/build +/.externalNativeBuild diff --git a/tests/unit-tests/proj.android/app/AndroidManifest.xml b/tests/unit-tests/proj.android/app/AndroidManifest.xml new file mode 100644 index 000000000000..e783f2c93955 --- /dev/null +++ b/tests/unit-tests/proj.android/app/AndroidManifest.xml @@ -0,0 +1,36 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/unit-tests/proj.android/app/build.gradle b/tests/unit-tests/proj.android/app/build.gradle new file mode 100644 index 000000000000..97766c5f9b6b --- /dev/null +++ b/tests/unit-tests/proj.android/app/build.gradle @@ -0,0 +1,124 @@ +apply plugin: 'com.android.application' +apply from: project(':libaxmol').projectDir.toString() + "/axutils.gradle" + +android { + namespace "org.axmol.unit_tests" + compileSdk PROP_COMPILE_SDK_VERSION.toInteger() + + // Setup native build tools: ndk & cmake + def nbtInfo = axutils.findNativeBuildTools(project) + ndkVersion = nbtInfo[0] + if(nbtInfo[1]) { + ndkPath = nbtInfo[1] + } + def cmakeVer = nbtInfo[2] + def cmakeOptions = Eval.me(nbtInfo[3]) + + defaultConfig { + applicationId "org.axmol.unit_tests" + minSdkVersion PROP_MIN_SDK_VERSION + targetSdkVersion PROP_TARGET_SDK_VERSION + versionCode 1 + versionName "1.0" + + externalNativeBuild { + cmake { + targets 'unit-tests' + arguments = [] + arguments.addAll(cmakeOptions) + cppFlags "-frtti -fexceptions -fsigned-char" + } + } + + ndk { + abiFilters = __1K_ARCHS.split(':').collect{it as String} + } + } + + sourceSets.main { + java.srcDir "src" + res.srcDir "res" + manifest.srcFile "AndroidManifest.xml" + assets.srcDir "build/assets" + } + + externalNativeBuild { + cmake { + version "$cmakeVer" + path "../../CMakeLists.txt" + } + } + + signingConfigs { + release { + if (project.hasProperty("KEY_STORE_FILE")) { + storeFile file(KEY_STORE_FILE) + storePassword KEY_STORE_PASSWORD + keyAlias KEY_ALIAS + keyPassword KEY_PASSWORD + } + } + } + + buildTypes { + release { + debuggable false + jniDebuggable false + renderscriptDebuggable false + minifyEnabled true + shrinkResources true + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + if (project.hasProperty("KEY_STORE_FILE")) { + signingConfig signingConfigs.release + } + } + + debug { + debuggable true + jniDebuggable true + renderscriptDebuggable true + } + } + + aaptOptions { + noCompress 'mp3','ogg','wav','mp4','ttf','ttc' + } +} + +android.applicationVariants.configureEach { variant -> + def variantName = variant.name.capitalize() + tasks.register("copy${variantName}ContentToAssets") { + doFirst { + delete "${projectDir}/build/assets" + } + doLast { + copy { + from "${projectDir}/../../Content" + into "${projectDir}/build/assets" + exclude "**/*.gz" + } + copy { + from "${projectDir}/build/runtime/axslc" + into "${projectDir}/build/assets/axslc" + } + } + } +} + +dependencies { + implementation fileTree(dir: 'libs', include: ['*.jar']) + implementation project(':libaxmol') +} + +project.afterEvaluate { + android.applicationVariants.configureEach { variant -> + def variantName = variant.name.capitalize() + def externalNativeBuild = tasks.named("externalNativeBuild${variantName}") + if (externalNativeBuild) { + def copyContentToAssets = tasks.named("copy${variantName}ContentToAssets") + copyContentToAssets + copyContentToAssets.get().dependsOn externalNativeBuild + tasks.named("compile${variantName}JavaWithJavac").get().dependsOn copyContentToAssets + } + } +} diff --git a/tests/unit-tests/proj.android/app/jni/main.cpp b/tests/unit-tests/proj.android/app/jni/main.cpp new file mode 100644 index 000000000000..06493b58ace5 --- /dev/null +++ b/tests/unit-tests/proj.android/app/jni/main.cpp @@ -0,0 +1,44 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include + +#include +#include + +#include "AppDelegate.h" + +#define LOG_TAG "main" +#define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__) + +namespace +{ +std::unique_ptr appDelegate; +} + +void axmol_android_app_init(JNIEnv* env) +{ + LOGD("axmol_android_app_init"); + appDelegate.reset(new AppDelegate()); +} diff --git a/tests/unit-tests/proj.android/app/proguard-rules.pro b/tests/unit-tests/proj.android/app/proguard-rules.pro new file mode 100644 index 000000000000..de4d58c0d013 --- /dev/null +++ b/tests/unit-tests/proj.android/app/proguard-rules.pro @@ -0,0 +1,38 @@ +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in E:\developSoftware\Android\SDK/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the proguardFiles +# directive in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Proguard Cocos2d-x for release +-keep public class org.axmol.** { *; } +-dontwarn org.axmol.** +-keep public class com.chukong.** { *; } +-dontwarn com.chukong.** +-keep public class com.huawei.android.** { *; } +-dontwarn com.huawei.android.** + +# Proguard Apache HTTP for release +-keep class org.apache.http.** { *; } +-dontwarn org.apache.http.** + +# Proguard Android Webivew for release. uncomment if you are using a webview in axmol +#-keep public class android.net.http.SslError +#-keep public class android.webkit.WebViewClient + +#-dontwarn android.webkit.WebView +#-dontwarn android.net.http.SslError +#-dontwarn android.webkit.WebViewClient + diff --git a/tests/unit-tests/proj.android/app/res/mipmap-hdpi/ic_launcher.png b/tests/unit-tests/proj.android/app/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 000000000000..29bb946e9071 Binary files /dev/null and b/tests/unit-tests/proj.android/app/res/mipmap-hdpi/ic_launcher.png differ diff --git a/tests/unit-tests/proj.android/app/res/mipmap-mdpi/ic_launcher.png b/tests/unit-tests/proj.android/app/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 000000000000..f704dce66d61 Binary files /dev/null and b/tests/unit-tests/proj.android/app/res/mipmap-mdpi/ic_launcher.png differ diff --git a/tests/unit-tests/proj.android/app/res/mipmap-xhdpi/ic_launcher.png b/tests/unit-tests/proj.android/app/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 000000000000..9f718db5365d Binary files /dev/null and b/tests/unit-tests/proj.android/app/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/tests/unit-tests/proj.android/app/res/mipmap-xxhdpi/ic_launcher.png b/tests/unit-tests/proj.android/app/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 000000000000..4063a547f6ec Binary files /dev/null and b/tests/unit-tests/proj.android/app/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/tests/unit-tests/proj.android/app/res/values/strings.xml b/tests/unit-tests/proj.android/app/res/values/strings.xml new file mode 100644 index 000000000000..1555791d01b8 --- /dev/null +++ b/tests/unit-tests/proj.android/app/res/values/strings.xml @@ -0,0 +1,3 @@ + + UnitTests + diff --git a/tests/unit-tests/proj.android/app/src/org/axmol/unit_tests/AppActivity.java b/tests/unit-tests/proj.android/app/src/org/axmol/unit_tests/AppActivity.java new file mode 100644 index 000000000000..7e72ab96136b --- /dev/null +++ b/tests/unit-tests/proj.android/app/src/org/axmol/unit_tests/AppActivity.java @@ -0,0 +1,52 @@ +/**************************************************************************** +Copyright (c) 2015-2016 Chukong Technologies Inc. +Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + +https://axmolengine.github.io/ + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +****************************************************************************/ +package org.axmol.unit_tests; + +import android.os.Bundle; + +import org.axmol.lib.AxmolActivity; +import org.axmol.lib.SharedLoader; + +public class AppActivity extends AxmolActivity { + static { + // DNT remove, some android simulator require explicit load shared libraries, otherwise will crash + SharedLoader.load(); + } + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.setEnableVirtualButton(false); + super.onCreate(savedInstanceState); + // Workaround in https://stackoverflow.com/questions/16283079/re-launch-of-activity-on-home-button-but-only-the-first-time/16447508 + if (!isTaskRoot()) { + // Android launched another instance of the root activity into an existing task + // so just quietly finish and go away, dropping the user back into the activity + // at the top of the stack (ie: the last state of this task) + // Don't need to finish it again since it's finished in super.onCreate . + return; + } + // DO OTHER INITIALIZATION BELOW + } +} diff --git a/tests/unit-tests/proj.android/app/src/org/axmol/unit_tests/JNITest.java b/tests/unit-tests/proj.android/app/src/org/axmol/unit_tests/JNITest.java new file mode 100644 index 000000000000..1ca3d5e192d7 --- /dev/null +++ b/tests/unit-tests/proj.android/app/src/org/axmol/unit_tests/JNITest.java @@ -0,0 +1,119 @@ +/**************************************************************************** +Copyright (c) 2010-2012 cocos2d-x.org +Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + +https://axmolengine.github.io/ + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. +****************************************************************************/ +package org.axmol.unit_tests; + +import android.util.Log; +import java.lang.StringBuilder; + +public class JNITest { + private static final String TAG = "JNITest"; + + public static void voidMethod1() { + Log.v(TAG, "Called voidMethod1"); + } + + public static void voidMethod2(final String str) { + StringBuilder message = new StringBuilder(); + message.append("Called voidMethod2 with str = "); + message.append(str); + Log.v(TAG, message.toString()); + } + + public static void voidMethod3(int n, float x, final String str) { + StringBuilder message = new StringBuilder(); + message.append("Called voidMethod3 with n = "); + message.append(n); + message.append(", x = "); + message.append(x); + message.append(", str = "); + message.append(str); + Log.v(TAG, message.toString()); + } + + public static void voidMethod4(final String str) { + // Used to test garbage collection + } + + public static boolean booleanMethod(int n) { + boolean ret = n > 0; + StringBuilder message = new StringBuilder(); + message.append("Called booleanMethod with n = "); + message.append(n); + message.append("\nReturning "); + message.append(ret); + Log.v(TAG, message.toString()); + return ret; + } + + public static int intMethod(int a, int b) { + int ret = a + b; + StringBuilder message = new StringBuilder(); + message.append("Called intMethod with a = "); + message.append(a); + message.append(", b = "); + message.append(b); + message.append("\nReturning "); + message.append(ret); + Log.v(TAG, message.toString()); + return ret; + } + + public static float floatMethod(float x, float y) { + float ret = x + y; + StringBuilder message = new StringBuilder(); + message.append("Called floatMethod with x = "); + message.append(x); + message.append(", y = "); + message.append(y); + message.append("\nReturning "); + message.append(ret); + Log.v(TAG, message.toString()); + return ret; + } + + public static double doubleMethod(double x, int n) { + double ret = x*n; + StringBuilder message = new StringBuilder(); + message.append("Called doubleMethod with x = "); + message.append(x); + message.append(", n = "); + message.append(n); + message.append("\nReturning "); + message.append(ret); + Log.v(TAG, message.toString()); + return ret; + } + + public static String stringMethod(final String str, boolean reverse) { + String ret = reverse ? new StringBuilder(str).reverse().toString() : str; + StringBuilder message = new StringBuilder(); + message.append("Called stringMethod with str = "); + message.append(str); + message.append("\nReturning "); + message.append(ret); + Log.v(TAG, message.toString()); + return ret; + } +} diff --git a/tests/unit-tests/proj.android/build.gradle b/tests/unit-tests/proj.android/build.gradle new file mode 100644 index 000000000000..ef2714619724 --- /dev/null +++ b/tests/unit-tests/proj.android/build.gradle @@ -0,0 +1,26 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + repositories { + google() + mavenCentral() + } + + dependencies { + classpath 'com.android.tools.build:gradle:8.2.2' + + // NOTE: Do not place your application dependencies here; they belong + // in the individual module build.gradle files + } +} + +allprojects { + repositories { + google() + mavenCentral() + } +} + +tasks.register('clean', Delete) { + delete rootProject.layout.buildDirectory +} diff --git a/tests/unit-tests/proj.android/gradle.properties b/tests/unit-tests/proj.android/gradle.properties new file mode 100644 index 000000000000..376e286a02de --- /dev/null +++ b/tests/unit-tests/proj.android/gradle.properties @@ -0,0 +1,42 @@ +# Project-wide Gradle settings. + +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. + +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html + +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +org.gradle.jvmargs=-Xmx2048M -Dkotlin.daemon.jvm.options\="-Xmx2048M" -XX\:+HeapDumpOnOutOfMemoryError -Dfile.encoding\=UTF-8 + +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. More details, visit +# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects +# org.gradle.parallel=true + +# Android SDK version that will be used as the compile project +PROP_COMPILE_SDK_VERSION=34 + +# Android SDK version that will be used as the earliest version of android this application can run on +PROP_MIN_SDK_VERSION=17 + +# Android SDK version that will be used as the latest version of android this application has been tested on +PROP_TARGET_SDK_VERSION=34 + +# List of CPU Archtexture to build that application with +# Available architextures (armeabi-v7a | arm64-v8a | x86) +# To build for multiple architexture, use the `:` between them +# Example - __1K_ARCHS=armeabi-v7a:arm64-v8a:x86 +__1K_ARCHS=arm64-v8a + +# uncomment it and fill in sign information for generate signed apk +#KEY_STORE_FILE=file path of keystore +#KEY_STORE_PASSWORD=password of keystore +#KEY_ALIAS=alias of key +#KEY_PASSWORD=password of key + +android.injected.testOnly=false +android.useAndroidX=true + diff --git a/tests/unit-tests/proj.android/gradle/wrapper/gradle-wrapper.jar b/tests/unit-tests/proj.android/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 000000000000..e6441136f3d4 Binary files /dev/null and b/tests/unit-tests/proj.android/gradle/wrapper/gradle-wrapper.jar differ diff --git a/tests/unit-tests/proj.android/gradle/wrapper/gradle-wrapper.properties b/tests/unit-tests/proj.android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 000000000000..4a9a63185e7e --- /dev/null +++ b/tests/unit-tests/proj.android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Sat Apr 6 23:59:59 CST 2024 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists \ No newline at end of file diff --git a/tests/unit-tests/proj.android/gradlew b/tests/unit-tests/proj.android/gradlew new file mode 100644 index 000000000000..97de990bb40f --- /dev/null +++ b/tests/unit-tests/proj.android/gradlew @@ -0,0 +1,249 @@ +#!/bin/sh + +# +# Copyright © 2015-2021 the original authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# +############################################################################## + +# Attempt to set APP_HOME + +# Resolve links: $0 may be a link +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac +done + +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD=maximum + +warn () { + echo "$*" +} >&2 + +die () { + echo + echo "$*" + echo + exit 1 +} >&2 + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD=$JAVA_HOME/jre/sh/java + else + JAVACMD=$JAVA_HOME/bin/java + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +fi + +# Increase the maximum file descriptors if we can. +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC2039,SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac +fi + +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. + +# For Cygwin or MSYS, switch paths to Windows format before running java +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + + # Now convert the arguments - kludge to limit ourselves to /bin/sh + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) + fi + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg + done +fi + + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='-Dfile.encoding=UTF-8 "-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command: +# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments, +# and any embedded shellness will be escaped. +# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be +# treated as '${Hostname}' itself on the command line. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' + +exec "$JAVACMD" "$@" diff --git a/tests/unit-tests/proj.android/gradlew.bat b/tests/unit-tests/proj.android/gradlew.bat new file mode 100644 index 000000000000..16e26a11510c --- /dev/null +++ b/tests/unit-tests/proj.android/gradlew.bat @@ -0,0 +1,92 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%"=="" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%"=="" set DIRNAME=. +@rem This is normally unused +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS=-Dfile.encoding=UTF-8 "-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if %ERRORLEVEL% equ 0 goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto execute + +echo. 1>&2 +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2 +echo. 1>&2 +echo Please set the JAVA_HOME variable in your environment to match the 1>&2 +echo location of your Java installation. 1>&2 + +goto fail + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* + +:end +@rem End local scope for the variables with windows NT shell +if %ERRORLEVEL% equ 0 goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +set EXIT_CODE=%ERRORLEVEL% +if %EXIT_CODE% equ 0 set EXIT_CODE=1 +if not ""=="%GRADLE_EXIT_CONSOLE%" exit %EXIT_CODE% +exit /b %EXIT_CODE% + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/tests/unit-tests/proj.android/settings.gradle b/tests/unit-tests/proj.android/settings.gradle new file mode 100644 index 000000000000..eabd7c53e1cf --- /dev/null +++ b/tests/unit-tests/proj.android/settings.gradle @@ -0,0 +1,20 @@ +import java.nio.file.Paths +import java.nio.file.Files + +def ENGINE_ROOT=Paths.get("${System.env.AX_ROOT}") +if(Files.exists(ENGINE_ROOT)) { + println("Determine ENGINE_JAVA_LIBPATH with system env var AX_ROOT") + ENGINE_ROOT = ENGINE_ROOT.toAbsolutePath().toString() +} +else { + println("Determine ENGINE_JAVA_LIBPATH with relative to settingsDir") + ENGINE_ROOT = settingsDir.getPath() + "/../../.." +} + +def ENGINE_JAVA_LIBPATH = ENGINE_ROOT + '/core/platform/android/libaxmol'; + +include ':libaxmol' +project(':libaxmol').projectDir = new File(ENGINE_JAVA_LIBPATH) +include ':UnitTests' +project(':UnitTests').projectDir = new File(settingsDir, 'app') +rootProject.name = "unit-tests" diff --git a/tests/unit-tests/proj.ios/LaunchScreenBackground.png b/tests/unit-tests/proj.ios/LaunchScreenBackground.png new file mode 100644 index 000000000000..12552f6ef679 Binary files /dev/null and b/tests/unit-tests/proj.ios/LaunchScreenBackground.png differ diff --git a/tests/unit-tests/proj.ios/Prefix.pch b/tests/unit-tests/proj.ios/Prefix.pch new file mode 100644 index 000000000000..3da08ad7ffb9 --- /dev/null +++ b/tests/unit-tests/proj.ios/Prefix.pch @@ -0,0 +1,12 @@ +// +// Prefix header for all source files of the 'iphone' target in the 'iphone' project +// + +#ifdef __OBJC__ + #import + #import +#endif + +#ifdef __cplusplus + #include "cocos2d.h" +#endif \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/Source/RootViewController.h b/tests/unit-tests/proj.ios/Source/RootViewController.h new file mode 100644 index 000000000000..db9efc534424 --- /dev/null +++ b/tests/unit-tests/proj.ios/Source/RootViewController.h @@ -0,0 +1,32 @@ +/**************************************************************************** + Copyright (c) 2013 cocos2d-x.org + Copyright (c) 2013-2016 Chukong Technologies Inc. + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#import + +@interface RootViewController : UIViewController { +} +- (BOOL)prefersStatusBarHidden; +@end diff --git a/tests/unit-tests/proj.ios/Source/RootViewController.mm b/tests/unit-tests/proj.ios/Source/RootViewController.mm new file mode 100644 index 000000000000..342a2045540d --- /dev/null +++ b/tests/unit-tests/proj.ios/Source/RootViewController.mm @@ -0,0 +1,107 @@ +/**************************************************************************** + Copyright (c) 2013 cocos2d-x.org + Copyright (c) 2013-2016 Chukong Technologies Inc. + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#import "RootViewController.h" + +@implementation RootViewController + +/* + // The designated initializer. Override if you create the controller programmatically and want to perform +customization that is not appropriate for viewDidLoad. +- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { + if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) { + // Custom initialization + } + return self; +} +*/ + +/* +// Implement loadView to create a view hierarchy programmatically, without using a nib. +- (void)loadView { +} +*/ + +/* +// Implement viewDidLoad to do additional setup after loading the view, typically from a nib. +- (void)viewDidLoad { + [super viewDidLoad]; +} + +*/ +// Override to allow orientations other than the default portrait orientation. +// This method is deprecated on ios6 +- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation +{ + return UIInterfaceOrientationIsLandscape(interfaceOrientation); +} + +// For ios6, use supportedInterfaceOrientations & shouldAutorotate instead +- (NSUInteger)supportedInterfaceOrientations +{ +#ifdef __IPHONE_6_0 + return UIInterfaceOrientationMaskAllButUpsideDown; +#endif +} + +- (BOOL)shouldAutorotate +{ + return YES; +} + +// fix not hide status on ios7 +- (BOOL)prefersStatusBarHidden +{ + return YES; +} + +// Controls the application's preferred home indicator auto-hiding when this view controller is shown. +- (BOOL)prefersHomeIndicatorAutoHidden +{ + return YES; +} + +- (void)didReceiveMemoryWarning +{ + // Releases the view if it doesn't have a superview. + [super didReceiveMemoryWarning]; + + // Release any cached data, images, etc that aren't in use. +} + +- (void)viewDidUnload +{ + [super viewDidUnload]; + // Release any retained subviews of the main view. + // e.g. self.myOutlet = nil; +} + +- (void)dealloc +{ + [super dealloc]; +} + +@end diff --git a/tests/unit-tests/proj.ios/Source/testsAppDelegate.h b/tests/unit-tests/proj.ios/Source/testsAppDelegate.h new file mode 100644 index 000000000000..be2772401e69 --- /dev/null +++ b/tests/unit-tests/proj.ios/Source/testsAppDelegate.h @@ -0,0 +1,36 @@ +/**************************************************************************** + Copyright (c) 2013 cocos2d-x.org + Copyright (c) 2013-2016 Chukong Technologies Inc. + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#import + +@class RootViewController; + +@interface AppController : NSObject { + UIWindow* window; + RootViewController* viewController; +} + +@end diff --git a/tests/unit-tests/proj.ios/Source/testsAppDelegate.mm b/tests/unit-tests/proj.ios/Source/testsAppDelegate.mm new file mode 100644 index 000000000000..195d311d4aee --- /dev/null +++ b/tests/unit-tests/proj.ios/Source/testsAppDelegate.mm @@ -0,0 +1,167 @@ +/**************************************************************************** + Copyright (c) 2013 cocos2d-x.org + Copyright (c) 2013-2016 Chukong Technologies Inc. + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#import "testsAppDelegate.h" + +#import "platform/ios/EAGLView-ios.h" +#import "cocos2d.h" +#import "AppDelegate.h" +#import "RootViewController.h" + +@implementation AppController + +#pragma mark - +#pragma mark Application lifecycle + +// cocos2d application instance +static AppDelegate s_sharedApplication; + +- (BOOL)application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions +{ + + ax::Application* app = ax::Application::getInstance(); + app->initGLContextAttrs(); + ax::GLViewImpl::convertAttrs(); + + // Override point for customization after application launch. + + // Add the view controller's view to the window and display. + window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; + + // Init the EAGLView + EAGLView* eaglView = [EAGLView viewWithFrame:[window bounds] + pixelFormat:(NSString*)ax::GLViewImpl::_pixelFormat + depthFormat:ax::GLViewImpl::_depthFormat + preserveBackbuffer:NO + sharegroup:nil + multiSampling:ax::GLViewImpl::_multisamplingCount > 0 ? YES : NO + numberOfSamples:ax::GLViewImpl::_multisamplingCount]; + +#if !defined(AX_TARGET_OS_TVOS) + [eaglView setMultipleTouchEnabled:YES]; +#endif + + // Use RootViewController manage EAGLView + viewController = [[RootViewController alloc] initWithNibName:nil bundle:nil]; +#if !defined(AX_TARGET_OS_TVOS) + viewController.extendedLayoutIncludesOpaqueBars = YES; +#endif + viewController.view = eaglView; + + // Set RootViewController to window + if ([[UIDevice currentDevice].systemVersion floatValue] < 6.0) + { + // warning: addSubView doesn't work on iOS6 + [window addSubview:viewController.view]; + } + else + { + // use this method on ios6 + [window setRootViewController:viewController]; + } + + [window makeKeyAndVisible]; + +#if !defined(AX_TARGET_OS_TVOS) + [viewController prefersStatusBarHidden]; +#endif + + // IMPORTANT: Setting the GLView should be done after creating the RootViewController + ax::GLView* glView = ax::GLViewImpl::createWithEAGLView(eaglView); + ax::Director::getInstance()->setGLView(glView); + + app->run(); + + return YES; +} + +- (void)applicationWillResignActive:(UIApplication*)application +{ + /* + Sent when the application is about to move from active to inactive state. This can occur for certain types of + temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and + it begins the transition to the background state. Use this method to pause ongoing tasks, disable timers, and + throttle down OpenGL ES frame rates. Games should use this method to pause the game. + */ + // We don't need to call this method any more. It will interrupt user defined game pause&resume logic + // ax::Director::getInstance()->pause(); +} + +- (void)applicationDidBecomeActive:(UIApplication*)application +{ + /* + Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was + previously in the background, optionally refresh the user interface. + */ + // We don't need to call this method any more. It will interrupt user defined game pause&resume logic + // ax::Director::getInstance()->resume(); +} + +- (void)applicationDidEnterBackground:(UIApplication*)application +{ + /* + Use this method to release shared resources, save user data, invalidate timers, and store enough application state + information to restore your application to its current state in case it is terminated later. If your application + supports background execution, called instead of applicationWillTerminate: when the user quits. + */ + ax::Application::getInstance()->applicationDidEnterBackground(); +} + +- (void)applicationWillEnterForeground:(UIApplication*)application +{ + /* + Called as part of transition from the background to the inactive state: here you can undo many of the changes made + on entering the background. + */ + ax::Application::getInstance()->applicationWillEnterForeground(); +} + +- (void)applicationWillTerminate:(UIApplication*)application +{ + /* + Called when the application is about to terminate. + See also applicationDidEnterBackground:. + */ +} + +#pragma mark - +#pragma mark Memory management + +- (void)applicationDidReceiveMemoryWarning:(UIApplication*)application +{ + /* + Free up as much memory as possible by purging cached data objects that can be recreated (or reloaded from disk) + later. + */ +} + +- (void)dealloc +{ + [window release]; + [super dealloc]; +} + +@end diff --git a/tests/unit-tests/proj.ios/exportoptions.plist b/tests/unit-tests/proj.ios/exportoptions.plist new file mode 100644 index 000000000000..b87b8a96ed23 --- /dev/null +++ b/tests/unit-tests/proj.ios/exportoptions.plist @@ -0,0 +1,15 @@ + + + + + compileBitcode + + method + development + provisioningProfiles + + Bundle Identifier + Provision Profile Name + + + diff --git a/tests/unit-tests/proj.ios/main.m b/tests/unit-tests/proj.ios/main.m new file mode 100644 index 000000000000..59bc34dfe91b --- /dev/null +++ b/tests/unit-tests/proj.ios/main.m @@ -0,0 +1,18 @@ +// +// main.m +// iphone +// +// Created by Walzer on 10-11-16. +// Copyright 2010 __MyCompanyName__. All rights reserved. +// + +#import + + +int main(int argc, char *argv[]) { + + NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; + int retVal = UIApplicationMain(argc, argv, nil, @"AppController"); + [pool release]; + return retVal; +} diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Contents.json b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 000000000000..8e4b1753cef4 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,158 @@ +{ + "images" : [ + { + "filename" : "Icon-20@2x.png", + "idiom" : "iphone", + "scale" : "2x", + "size" : "20x20" + }, + { + "filename" : "Icon-20@3x.png", + "idiom" : "iphone", + "scale" : "3x", + "size" : "20x20" + }, + { + "filename" : "Icon-29.png", + "idiom" : "iphone", + "scale" : "1x", + "size" : "29x29" + }, + { + "filename" : "Icon-29@2x.png", + "idiom" : "iphone", + "scale" : "2x", + "size" : "29x29" + }, + { + "filename" : "Icon-29@3x.png", + "idiom" : "iphone", + "scale" : "3x", + "size" : "29x29" + }, + { + "filename" : "Icon-40@2x.png", + "idiom" : "iphone", + "scale" : "2x", + "size" : "40x40" + }, + { + "filename" : "Icon-40@3x.png", + "idiom" : "iphone", + "scale" : "3x", + "size" : "40x40" + }, + { + "filename" : "Icon-57.png", + "idiom" : "iphone", + "scale" : "1x", + "size" : "57x57" + }, + { + "filename" : "Icon-57@2x.png", + "idiom" : "iphone", + "scale" : "2x", + "size" : "57x57" + }, + { + "filename" : "Icon-60@2x.png", + "idiom" : "iphone", + "scale" : "2x", + "size" : "60x60" + }, + { + "filename" : "Icon-60@3x.png", + "idiom" : "iphone", + "scale" : "3x", + "size" : "60x60" + }, + { + "filename" : "Icon-20.png", + "idiom" : "ipad", + "scale" : "1x", + "size" : "20x20" + }, + { + "filename" : "Icon-20@2x.png", + "idiom" : "ipad", + "scale" : "2x", + "size" : "20x20" + }, + { + "filename" : "Icon-29.png", + "idiom" : "ipad", + "scale" : "1x", + "size" : "29x29" + }, + { + "filename" : "Icon-29@2x.png", + "idiom" : "ipad", + "scale" : "2x", + "size" : "29x29" + }, + { + "filename" : "Icon-40.png", + "idiom" : "ipad", + "scale" : "1x", + "size" : "40x40" + }, + { + "filename" : "Icon-40@2x.png", + "idiom" : "ipad", + "scale" : "2x", + "size" : "40x40" + }, + { + "filename" : "Icon-50.png", + "idiom" : "ipad", + "scale" : "1x", + "size" : "50x50" + }, + { + "filename" : "Icon-50@2x.png", + "idiom" : "ipad", + "scale" : "2x", + "size" : "50x50" + }, + { + "filename" : "Icon-72.png", + "idiom" : "ipad", + "scale" : "1x", + "size" : "72x72" + }, + { + "filename" : "Icon-72@2x.png", + "idiom" : "ipad", + "scale" : "2x", + "size" : "72x72" + }, + { + "filename" : "Icon-76.png", + "idiom" : "ipad", + "scale" : "1x", + "size" : "76x76" + }, + { + "filename" : "Icon-76@2x.png", + "idiom" : "ipad", + "scale" : "2x", + "size" : "76x76" + }, + { + "filename" : "Icon-83.5@2x.png", + "idiom" : "ipad", + "scale" : "2x", + "size" : "83.5x83.5" + }, + { + "filename" : "Icon-1024.png", + "idiom" : "ios-marketing", + "scale" : "1x", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-1024.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-1024.png new file mode 100644 index 000000000000..85cbb94ce6dd Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-1024.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-20.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-20.png new file mode 100644 index 000000000000..1074a9b4e634 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-20.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-20@2x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-20@2x.png new file mode 100644 index 000000000000..929b9def460f Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-20@2x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-20@3x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-20@3x.png new file mode 100644 index 000000000000..fc8ecd8d8080 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-20@3x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-29.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-29.png new file mode 100644 index 000000000000..c2883966ee27 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-29.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png new file mode 100644 index 000000000000..c19e45def01c Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-29@3x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-29@3x.png new file mode 100644 index 000000000000..e61fa4f05397 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-29@3x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-40.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-40.png new file mode 100644 index 000000000000..1efd3c4e0c15 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-40.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png new file mode 100644 index 000000000000..2e2f44e52ed0 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png new file mode 100644 index 000000000000..269b34c0c6ee Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-50.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-50.png new file mode 100644 index 000000000000..915788d845e6 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-50.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-50@2x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-50@2x.png new file mode 100644 index 000000000000..d1c1122ae82e Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-50@2x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-57.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-57.png new file mode 100644 index 000000000000..73f1ff231341 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-57.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-57@2x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-57@2x.png new file mode 100644 index 000000000000..693d5cd44a25 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-57@2x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png new file mode 100644 index 000000000000..c49abfbb5ba5 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png new file mode 100644 index 000000000000..a3d5a05171fe Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-72.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-72.png new file mode 100644 index 000000000000..bcc2be0e21a5 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-72.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png new file mode 100644 index 000000000000..e4bc4608e932 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-72@2x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-76.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-76.png new file mode 100644 index 000000000000..8098aa34fa03 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-76.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png new file mode 100644 index 000000000000..9358e43cb95b Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png new file mode 100644 index 000000000000..e0cbc2d41e74 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png differ diff --git a/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/Contents.json b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/Contents.json new file mode 100644 index 000000000000..da4a164c9186 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/ios/Images.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/ios/Info.plist b/tests/unit-tests/proj.ios/targets/ios/Info.plist new file mode 100644 index 000000000000..6a5e22f8a600 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/ios/Info.plist @@ -0,0 +1,45 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleDisplayName + ${PROJECT_NAME} + CFBundleExecutable + ${MACOSX_BUNDLE_EXECUTABLE_NAME} + CFBundleIconFile + Icon-57.png + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PROJECT_NAME} + CFBundleShortVersionString + 1.0 + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1 + LSRequiresIPhoneOS + + UIAppFonts + + UILaunchStoryboardName + LaunchScreen + UIPrerenderedIcon + + UIStatusBarHidden + + UISupportedInterfaceOrientations + + UIInterfaceOrientationLandscapeRight + UIInterfaceOrientationLandscapeLeft + + NSHumanReadableCopyright + Copyright © 2019. All rights reserved. + + diff --git a/tests/unit-tests/proj.ios/targets/ios/LaunchScreen.storyboard b/tests/unit-tests/proj.ios/targets/ios/LaunchScreen.storyboard new file mode 100644 index 000000000000..068bbaa87904 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/ios/LaunchScreen.storyboard @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/AccentColor.colorset/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 000000000000..0407a30bfa36 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,20 @@ +{ + "colors" : [ + { + "color" : { + "color-space" : "display-p3", + "components" : { + "alpha" : "1.000", + "blue" : "0.447", + "green" : "0.282", + "red" : "0.129" + } + }, + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json new file mode 100644 index 000000000000..008b25dac408 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json @@ -0,0 +1,11 @@ +{ + "images" : [ + { + "idiom" : "tv", + "size" : "1280x768", + "filename" : "icon-0.png" + } + ], + "author" : "Store Assets Generator", + "version" : "0.4.0" +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/icon-0.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/icon-0.png new file mode 100644 index 000000000000..2547e99d2bcc Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/icon-0.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json new file mode 100644 index 000000000000..f652e9b44178 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "Store Assets Generator", + "version" : "0.4.0" + } +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Contents.json new file mode 100644 index 000000000000..5d09d3be4131 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Contents.json @@ -0,0 +1,17 @@ +{ + "info" : { + "author" : "Store Assets Generator", + "version" : "0.4.0" + }, + "layers" : [ + { + "filename" : "Front.imagestacklayer" + }, + { + "filename" : "Middle.imagestacklayer" + }, + { + "filename" : "Back.imagestacklayer" + } + ] +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json new file mode 100644 index 000000000000..008b25dac408 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json @@ -0,0 +1,11 @@ +{ + "images" : [ + { + "idiom" : "tv", + "size" : "1280x768", + "filename" : "icon-0.png" + } + ], + "author" : "Store Assets Generator", + "version" : "0.4.0" +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/icon-0.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/icon-0.png new file mode 100644 index 000000000000..64a5fa627775 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/icon-0.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json new file mode 100644 index 000000000000..929319b6ff7a --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : "0.4.0", + "author" : "Store Assets Generator" + } +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json new file mode 100644 index 000000000000..008b25dac408 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json @@ -0,0 +1,11 @@ +{ + "images" : [ + { + "idiom" : "tv", + "size" : "1280x768", + "filename" : "icon-0.png" + } + ], + "author" : "Store Assets Generator", + "version" : "0.4.0" +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/icon-0.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/icon-0.png new file mode 100644 index 000000000000..0448d2b6d6cc Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/icon-0.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json new file mode 100644 index 000000000000..f652e9b44178 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "Store Assets Generator", + "version" : "0.4.0" + } +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json new file mode 100644 index 000000000000..1e90ad97da11 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json @@ -0,0 +1,18 @@ +{ + "images" : [ + { + "size" : "400x240", + "idiom" : "tv", + "filename" : "icon-400.png", + "scale" : "1x" + }, + { + "size" : "400x240", + "idiom" : "tv", + "filename" : "icon-800.png", + "scale" : "2x" + } + ], + "author" : "Store Assets Generator", + "version" : "0.4.0" +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/icon-400.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/icon-400.png new file mode 100644 index 000000000000..110bdcde9db5 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/icon-400.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/icon-800.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/icon-800.png new file mode 100644 index 000000000000..3b8f94251ef1 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/icon-800.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json new file mode 100644 index 000000000000..929319b6ff7a --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : "0.4.0", + "author" : "Store Assets Generator" + } +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Contents.json new file mode 100644 index 000000000000..dda6d337e318 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Contents.json @@ -0,0 +1,17 @@ +{ + "info" : { + "version" : "0.4.0", + "author" : "Store Assets Generator" + }, + "layers" : [ + { + "filename" : "Front.imagestacklayer" + }, + { + "filename" : "Middle.imagestacklayer" + }, + { + "filename" : "Back.imagestacklayer" + } + ] +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json new file mode 100644 index 000000000000..1e90ad97da11 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json @@ -0,0 +1,18 @@ +{ + "images" : [ + { + "size" : "400x240", + "idiom" : "tv", + "filename" : "icon-400.png", + "scale" : "1x" + }, + { + "size" : "400x240", + "idiom" : "tv", + "filename" : "icon-800.png", + "scale" : "2x" + } + ], + "author" : "Store Assets Generator", + "version" : "0.4.0" +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/icon-400.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/icon-400.png new file mode 100644 index 000000000000..e0e8b0a86eb4 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/icon-400.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/icon-800.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/icon-800.png new file mode 100644 index 000000000000..15e6ba8660ab Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/icon-800.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json new file mode 100644 index 000000000000..929319b6ff7a --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : "0.4.0", + "author" : "Store Assets Generator" + } +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json new file mode 100644 index 000000000000..1e90ad97da11 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json @@ -0,0 +1,18 @@ +{ + "images" : [ + { + "size" : "400x240", + "idiom" : "tv", + "filename" : "icon-400.png", + "scale" : "1x" + }, + { + "size" : "400x240", + "idiom" : "tv", + "filename" : "icon-800.png", + "scale" : "2x" + } + ], + "author" : "Store Assets Generator", + "version" : "0.4.0" +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/icon-400.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/icon-400.png new file mode 100644 index 000000000000..af2de409387b Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/icon-400.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/icon-800.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/icon-800.png new file mode 100644 index 000000000000..c5a689adbb27 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/icon-800.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json new file mode 100644 index 000000000000..929319b6ff7a --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "version" : "0.4.0", + "author" : "Store Assets Generator" + } +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Contents.json new file mode 100644 index 000000000000..93db39306b19 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Contents.json @@ -0,0 +1,32 @@ +{ + "info" : { + "author" : "Store Assets Generator", + "version" : "0.4.0" + }, + "assets" : [ + { + "filename" : "App Icon - App Store.imagestack", + "role" : "primary-app-icon", + "idiom" : "tv", + "size" : "1280x768" + }, + { + "idiom" : "tv", + "filename" : "App Icon.imagestack", + "size" : "400x240", + "role" : "primary-app-icon" + }, + { + "size" : "2320x720", + "filename" : "Top Shelf Image Wide.imageset", + "idiom" : "tv", + "role" : "top-shelf-image-wide" + }, + { + "role" : "top-shelf-image", + "size" : "1920x720", + "filename" : "Top Shelf Image.imageset", + "idiom" : "tv" + } + ] +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/Contents.json new file mode 100644 index 000000000000..707d2e02e469 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/Contents.json @@ -0,0 +1,18 @@ +{ + "images" : [ + { + "size" : "2320x720", + "idiom" : "tv", + "filename" : "icon-2320.png", + "scale" : "1x" + }, + { + "size" : "2320x720", + "idiom" : "tv", + "filename" : "icon-4640.png", + "scale" : "2x" + } + ], + "author" : "Store Assets Generator", + "version" : "0.4.0" +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/icon-2320.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/icon-2320.png new file mode 100644 index 000000000000..70980452625a Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/icon-2320.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/icon-4640.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/icon-4640.png new file mode 100644 index 000000000000..5623a83c8f5d Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image Wide.imageset/icon-4640.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/Contents.json new file mode 100644 index 000000000000..0d9a5d26ebf6 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/Contents.json @@ -0,0 +1,18 @@ +{ + "images" : [ + { + "size" : "1920x720", + "idiom" : "tv", + "filename" : "icon-1920.png", + "scale" : "1x" + }, + { + "size" : "1920x720", + "idiom" : "tv", + "filename" : "icon-3840.png", + "scale" : "2x" + } + ], + "author" : "Store Assets Generator", + "version" : "0.4.0" +} \ No newline at end of file diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/icon-1920.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/icon-1920.png new file mode 100644 index 000000000000..14a2836e3f68 Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/icon-1920.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/icon-3840.png b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/icon-3840.png new file mode 100644 index 000000000000..0220abc9f5ec Binary files /dev/null and b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Brand Assets.brandassets/Top Shelf Image.imageset/icon-3840.png differ diff --git a/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Contents.json b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Contents.json new file mode 100644 index 000000000000..73c00596a7fc --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Images.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/tests/unit-tests/proj.ios/targets/tvos/Info.plist b/tests/unit-tests/proj.ios/targets/tvos/Info.plist new file mode 100644 index 000000000000..55da67af4f2e --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/Info.plist @@ -0,0 +1,41 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleDisplayName + ${PROJECT_NAME} + CFBundleExecutable + ${MACOSX_BUNDLE_EXECUTABLE_NAME} + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PROJECT_NAME} + CFBundleShortVersionString + 1.0 + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + 1 + UIAppFonts + + UILaunchStoryboardName + LaunchScreen + UIPrerenderedIcon + + UIStatusBarHidden + + UISupportedInterfaceOrientations + + UIInterfaceOrientationLandscapeRight + UIInterfaceOrientationLandscapeLeft + + NSHumanReadableCopyright + Copyright © 2019. All rights reserved. + + diff --git a/tests/unit-tests/proj.ios/targets/tvos/LaunchScreen.storyboard b/tests/unit-tests/proj.ios/targets/tvos/LaunchScreen.storyboard new file mode 100644 index 000000000000..b8319fd33500 --- /dev/null +++ b/tests/unit-tests/proj.ios/targets/tvos/LaunchScreen.storyboard @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/tests/unit-tests/proj.linux/main.cpp b/tests/unit-tests/proj.linux/main.cpp new file mode 100644 index 000000000000..43723a58074f --- /dev/null +++ b/tests/unit-tests/proj.linux/main.cpp @@ -0,0 +1,34 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include "AppDelegate.h" + +USING_NS_AX; + +int main(int argc, char** argv) +{ + AppDelegate app; + return app.run(argc, argv); +} diff --git a/tests/unit-tests/proj.mac/Icon.icns b/tests/unit-tests/proj.mac/Icon.icns new file mode 100644 index 000000000000..8f6f945eedd6 Binary files /dev/null and b/tests/unit-tests/proj.mac/Icon.icns differ diff --git a/tests/unit-tests/proj.mac/Info.plist b/tests/unit-tests/proj.mac/Info.plist new file mode 100644 index 000000000000..8e5f027c0675 --- /dev/null +++ b/tests/unit-tests/proj.mac/Info.plist @@ -0,0 +1,48 @@ + + + + + ATSApplicationFontsPath + . + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${MACOSX_BUNDLE_EXECUTABLE_NAME} + CFBundleIconFile + Icon + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PROJECT_NAME} + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + + NSHumanReadableCopyright + Copyright © 2019. All rights reserved. + NSMainNibFile + MainMenu + NSPrincipalClass + NSApplication + UIAppFonts + + fonts/A Damn Mess.ttf + fonts/Abberancy.ttf + fonts/Abduction.ttf + fonts/Paint Boy.ttf + fonts/Schwarzwald.ttf + fonts/Scissor Cuts.ttf + + + diff --git a/tests/unit-tests/proj.mac/Prefix.pch b/tests/unit-tests/proj.mac/Prefix.pch new file mode 100644 index 000000000000..aa71e766458f --- /dev/null +++ b/tests/unit-tests/proj.mac/Prefix.pch @@ -0,0 +1,11 @@ +// +// Prefix header for all source files of the 'Paralaxer' target in the 'Paralaxer' project +// + +#ifdef __OBJC__ + #import +#endif + +#ifdef __cplusplus + #include "cocos2d.h" +#endif \ No newline at end of file diff --git a/tests/unit-tests/proj.mac/en.lproj/InfoPlist.strings b/tests/unit-tests/proj.mac/en.lproj/InfoPlist.strings new file mode 100644 index 000000000000..477b28ff8f86 --- /dev/null +++ b/tests/unit-tests/proj.mac/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + diff --git a/tests/unit-tests/proj.mac/main.cpp b/tests/unit-tests/proj.mac/main.cpp new file mode 100644 index 000000000000..00b9c61d8b2d --- /dev/null +++ b/tests/unit-tests/proj.mac/main.cpp @@ -0,0 +1,33 @@ +/**************************************************************************** + Copyright (c) 2010 cocos2d-x.org + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ +#include "AppDelegate.h" + +USING_NS_AX; + +int main(int argc, char** argv) +{ + AppDelegate app; + return app.run(argc, argv); +} diff --git a/tests/cpp-tests/Source/UnitTest/RefPtrTest.h b/tests/unit-tests/proj.wasm/main.cpp similarity index 82% rename from tests/cpp-tests/Source/UnitTest/RefPtrTest.h rename to tests/unit-tests/proj.wasm/main.cpp index 5ace294f9bfb..96e3ed2fae01 100644 --- a/tests/cpp-tests/Source/UnitTest/RefPtrTest.h +++ b/tests/unit-tests/proj.wasm/main.cpp @@ -22,19 +22,19 @@ THE SOFTWARE. ****************************************************************************/ -#ifndef __REF_PTR_TEST_H__ -#define __REF_PTR_TEST_H__ +#include "AppDelegate.h" +#include "axmol.h" -#include "UnitTest.h" +#include +#include +#include +#include -class RefPtrTest : public UnitTestDemo -{ -public: - CREATE_FUNC(RefPtrTest); - - virtual void onEnter() override; +USING_NS_AX; - virtual std::string subtitle() const override; -}; - -#endif /* __REF_PTR_TEST_H__ */ +int main(int argc, char** argv) +{ + // create the application instance + AppDelegate app; + return Application::getInstance()->run(); +} diff --git a/tests/unit-tests/proj.win32/build-cfg.json b/tests/unit-tests/proj.win32/build-cfg.json new file mode 100644 index 000000000000..aae4d7a054f5 --- /dev/null +++ b/tests/unit-tests/proj.win32/build-cfg.json @@ -0,0 +1,8 @@ +{ + "copy_resources": [ + { + "from": "../Resources", + "to": "" + } + ] +} diff --git a/tests/unit-tests/proj.win32/main.cpp b/tests/unit-tests/proj.win32/main.cpp new file mode 100644 index 000000000000..43723a58074f --- /dev/null +++ b/tests/unit-tests/proj.win32/main.cpp @@ -0,0 +1,34 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + Copyright (c) 2019-present Axmol Engine contributors (see AUTHORS.md). + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include "AppDelegate.h" + +USING_NS_AX; + +int main(int argc, char** argv) +{ + AppDelegate app; + return app.run(argc, argv); +} diff --git a/tests/unit-tests/proj.winrt/App.cpp b/tests/unit-tests/proj.winrt/App.cpp new file mode 100644 index 000000000000..40da28d7b5f1 --- /dev/null +++ b/tests/unit-tests/proj.winrt/App.cpp @@ -0,0 +1,152 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#include "App.h" + +#include "OpenGLESPage.h" + +using namespace winrt; +using namespace Windows::ApplicationModel; +using namespace Windows::ApplicationModel::Activation; +using namespace Windows::Foundation; +using namespace Windows::Foundation::Collections; +using namespace Windows::UI::Xaml::Media::Animation; +using namespace Windows::UI::Xaml; +using namespace Windows::UI::Xaml::Controls; +using namespace Windows::UI::Xaml::Controls::Primitives; +using namespace Windows::UI::Xaml::Data; +using namespace Windows::UI::Xaml::Input; +using namespace Windows::UI::Xaml::Interop; +using namespace Windows::UI::Xaml::Media; +using namespace Windows::UI::Xaml::Navigation; +using namespace AxmolAppWinRT; +using namespace AxmolAppWinRT::implementation; + +/// +/// Creates the singleton application object. This is the first line of authored code +/// executed, and as such is the logical equivalent of main() or WinMain(). +/// +App::App() +{ + Suspending({ this, &App::OnSuspending }); + Resuming({this, &App::OnResuming}); + + // Resuming({ this, &AppOnResuming }); + +#if defined _DEBUG && !defined DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION + UnhandledException([this](IInspectable const&, UnhandledExceptionEventArgs const& e) + { + if (IsDebuggerPresent()) + { + auto errorMessage = e.Message(); + __debugbreak(); + } + }); +#endif +} + +/// +/// Invoked when the application is launched normally by the end user. Other entry points +/// will be used such as when the application is launched to open a specific file. +/// +/// Details about the launch request and process. +void App::OnLaunched(LaunchActivatedEventArgs const& e) +{ + Frame rootFrame{ nullptr }; + auto content = Window::Current().Content(); + if (content) + { + rootFrame = content.try_as(); + } + + // Do not repeat app initialization when the Window already has content, + // just ensure that the window is active + if (rootFrame == nullptr) + { + // Create a Frame to act as the navigation context and associate it with + // a SuspensionManager key + rootFrame = Frame(); + + rootFrame.NavigationFailed({ this, &App::OnNavigationFailed }); + + if (e.PreviousExecutionState() == ApplicationExecutionState::Terminated) + { + // Restore the saved session state only when appropriate, scheduling the + // final launch steps after the restore is complete + } + } + + if (e.PrelaunchActivated() == false) + { + if (rootFrame.Content() == nullptr) + { + // When the navigation stack isn't restored navigate to the first page, + // configuring the new page by passing required information as a navigation + // parameter + rootFrame.Content(winrt::make(&mOpenGLES)); + //rootFrame.Navigate(xaml_typename(), box_value(e.Arguments())); + mPage = rootFrame.Content(); + } + // Place the frame in the current Window + Window::Current().Content(rootFrame); + // Ensure the current window is active + Window::Current().Activate(); + } +} + +/// +/// Invoked when application execution is being suspended. Application state is saved +/// without knowing whether the application will be terminated or resumed with the contents +/// of memory still intact. +/// +/// The source of the suspend request. +/// Details about the suspend request. +void App::OnSuspending([[maybe_unused]] IInspectable const& sender, [[maybe_unused]] SuspendingEventArgs const& e) +{ + // Save application state and stop any background activity +} + +/// +/// Invoked when application execution is being resumed. +/// +/// The source of the resume request. +/// Details about the resume request. +void App::OnResuming(IInspectable const& sender, IInspectable const& args) +{ + (void)sender; // Unused parameter + (void)args; // Unused parameter + + if (mPage) + mPage.as()->SetVisibility(true); +} + +/// +/// Invoked when Navigation to a certain page fails +/// +/// The Frame which failed navigation +/// Details about the navigation failure +void App::OnNavigationFailed(IInspectable const&, NavigationFailedEventArgs const& e) +{ + //throw hresult_error(E_FAIL, hstring(L"Failed to load Page ") + e.SourcePageType().Name); +} diff --git a/tests/unit-tests/proj.winrt/App.h b/tests/unit-tests/proj.winrt/App.h new file mode 100644 index 000000000000..ea506f99a313 --- /dev/null +++ b/tests/unit-tests/proj.winrt/App.h @@ -0,0 +1,46 @@ +/**************************************************************************** + Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd. + + https://axmolengine.github.io/ + + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + ****************************************************************************/ + +#pragma once + +#include "pch.h" + +#include "App.xaml.g.h" +#include "OpenGLES.h" + +using namespace winrt; + +namespace winrt::AxmolAppWinRT::implementation +{ + struct App : AppT + { + App(); + void OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs const&); + void OnSuspending(IInspectable const&, Windows::ApplicationModel::SuspendingEventArgs const&); + void OnResuming(IInspectable const&, IInspectable const&); + void OnNavigationFailed(IInspectable const&, Windows::UI::Xaml::Navigation::NavigationFailedEventArgs const&); + Windows::Foundation::IInspectable mPage; + OpenGLES mOpenGLES; + }; +} diff --git a/tests/unit-tests/proj.winrt/App.idl b/tests/unit-tests/proj.winrt/App.idl new file mode 100644 index 000000000000..94961d907d22 --- /dev/null +++ b/tests/unit-tests/proj.winrt/App.idl @@ -0,0 +1,3 @@ +namespace AxmolAppWinRT +{ +} diff --git a/tests/unit-tests/proj.winrt/App.xaml b/tests/unit-tests/proj.winrt/App.xaml new file mode 100644 index 000000000000..d4d5a34bbb4d --- /dev/null +++ b/tests/unit-tests/proj.winrt/App.xaml @@ -0,0 +1,12 @@ + + + + + unit-tests + + + diff --git a/tests/unit-tests/proj.winrt/Content/LockScreenLogo.scale-200.png b/tests/unit-tests/proj.winrt/Content/LockScreenLogo.scale-200.png new file mode 100644 index 000000000000..735f57adb5df Binary files /dev/null and b/tests/unit-tests/proj.winrt/Content/LockScreenLogo.scale-200.png differ diff --git a/tests/unit-tests/proj.winrt/Content/SplashScreen.scale-200.png b/tests/unit-tests/proj.winrt/Content/SplashScreen.scale-200.png new file mode 100644 index 000000000000..023e7f1feda7 Binary files /dev/null and b/tests/unit-tests/proj.winrt/Content/SplashScreen.scale-200.png differ diff --git a/tests/unit-tests/proj.winrt/Content/Square150x150Logo.scale-200.png b/tests/unit-tests/proj.winrt/Content/Square150x150Logo.scale-200.png new file mode 100644 index 000000000000..af49fec1a548 Binary files /dev/null and b/tests/unit-tests/proj.winrt/Content/Square150x150Logo.scale-200.png differ diff --git a/tests/unit-tests/proj.winrt/Content/Square44x44Logo.scale-200.png b/tests/unit-tests/proj.winrt/Content/Square44x44Logo.scale-200.png new file mode 100644 index 000000000000..ce342a2ec8a6 Binary files /dev/null and b/tests/unit-tests/proj.winrt/Content/Square44x44Logo.scale-200.png differ diff --git a/tests/unit-tests/proj.winrt/Content/Square44x44Logo.targetsize-24_altform-unplated.png b/tests/unit-tests/proj.winrt/Content/Square44x44Logo.targetsize-24_altform-unplated.png new file mode 100644 index 000000000000..f6c02ce97e0a Binary files /dev/null and b/tests/unit-tests/proj.winrt/Content/Square44x44Logo.targetsize-24_altform-unplated.png differ diff --git a/tests/unit-tests/proj.winrt/Content/StoreLogo.png b/tests/unit-tests/proj.winrt/Content/StoreLogo.png new file mode 100644 index 000000000000..7385b56c0e4d Binary files /dev/null and b/tests/unit-tests/proj.winrt/Content/StoreLogo.png differ diff --git a/tests/unit-tests/proj.winrt/Content/Wide310x150Logo.scale-200.png b/tests/unit-tests/proj.winrt/Content/Wide310x150Logo.scale-200.png new file mode 100644 index 000000000000..288995b397fd Binary files /dev/null and b/tests/unit-tests/proj.winrt/Content/Wide310x150Logo.scale-200.png differ diff --git a/tests/unit-tests/proj.winrt/Package.appxmanifest b/tests/unit-tests/proj.winrt/Package.appxmanifest new file mode 100644 index 000000000000..4ab53ce59eec --- /dev/null +++ b/tests/unit-tests/proj.winrt/Package.appxmanifest @@ -0,0 +1,43 @@ + + + + + + unit-tests + Microsoft Open Technologies, Inc. + Content\StoreLogo.png + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/tests/unit-tests/proj.winrt/pch.cpp b/tests/unit-tests/proj.winrt/pch.cpp new file mode 100644 index 000000000000..bcb5590be1b3 --- /dev/null +++ b/tests/unit-tests/proj.winrt/pch.cpp @@ -0,0 +1 @@ +#include "pch.h" diff --git a/tests/unit-tests/proj.winrt/pch.h b/tests/unit-tests/proj.winrt/pch.h new file mode 100644 index 000000000000..b559e3664916 --- /dev/null +++ b/tests/unit-tests/proj.winrt/pch.h @@ -0,0 +1,15 @@ +#pragma once +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include diff --git a/tools/cmdline/build.ps1 b/tools/cmdline/build.ps1 index 553c287da308..c26862d906b6 100644 --- a/tools/cmdline/build.ps1 +++ b/tools/cmdline/build.ps1 @@ -2,7 +2,7 @@ # usage: pwsh build.ps1 -p -a # options # -p: build target platform: win32,winuwp(winrt),linux,android,osx,ios,tvos,wasm -# for android: will search ndk in sdk_root which is specified by env:ANDROID_HOME first, +# for android: will search ndk in sdk_root which is specified by env:ANDROID_HOME first, # if not found, by default will install ndk-r16b or can be specified by option: -cc 'ndk-r23c' # -a: build arch: x86,x64,armv7,arm64; for android can be list by ';', i.e: 'arm64;x64' # -cc: toolchain: for win32 you can specific -cc clang to use llvm-clang, please install llvm-clang from https://github.com/llvm/llvm-project/releases @@ -12,15 +12,15 @@ # -d: specify project dir to compile, i.e. -d /path/your/project/ # -f: force generate native project files. Useful if no changes are detected, such as with resource updates. # examples: -# - win32: +# - win32: # - pwsh build.ps1 -p win32 # - pwsh build.ps1 -p win32 -cc clang # - winuwp: pwsh build.ps1 -p winuwp # - linux: pwsh build.ps1 -p linux -# - android: +# - android: # - pwsh build.ps1 -p android -a arm64 # - pwsh build.ps1 -p android -a 'arm64;x64' -# - osx: +# - osx: # - pwsh build.ps1 -p osx -a x64 # - pwsh build.ps1 -p osx -a arm64 # - ios: pwsh build.ps1 -p ios -a x64 @@ -46,7 +46,7 @@ $options = @{p = $null; d = $null; xc = @(); xb = @(); } $optName = $null foreach ($arg in $args) { if (!$optName) { - if ($arg.StartsWith('-')) { + if ($arg.StartsWith('-')) { $optName = $arg.SubString(1).TrimEnd(':') } if ($1k_switch_options.Contains("$optName")) { @@ -118,6 +118,7 @@ if ($is_axmol_engine -and $is_android) { 'cpp-tests' = 'tests/cpp-tests' 'fairygui-tests' = 'tests/fairygui-tests' 'live2d-tests' = 'tests/live2d-tests' + 'unit-tests' = 'tests/unit-tests' } if (!$builtin_targets.Contains($cmake_target)) { throw "specified target '$cmake_target' not present in engine"