tests: Added properly working custom unit tests
This commit is contained in:
parent
3e5d6cf88c
commit
1b6035d6c6
1
dist/Brewfile
vendored
1
dist/Brewfile
vendored
@ -8,7 +8,6 @@ brew "python3"
|
||||
brew "freetype2"
|
||||
brew "libmagic"
|
||||
brew "pkg-config"
|
||||
brew "catch2"
|
||||
|
||||
# TODO: Remove this when XCode version of clang will support the same level as LLVM 10
|
||||
brew "llvm"
|
||||
|
3
dist/Dockerfile
vendored
3
dist/Dockerfile
vendored
@ -16,8 +16,7 @@ RUN pacman -S --needed --noconfirm \
|
||||
capstone \
|
||||
python3 \
|
||||
freetype2 \
|
||||
gtk3 \
|
||||
catch2
|
||||
gtk3
|
||||
|
||||
# Clone ImHex
|
||||
RUN git clone https://github.com/WerWolv/ImHex --recurse-submodules /root/ImHex
|
||||
|
1
dist/ImHex-9999.ebuild
vendored
1
dist/ImHex-9999.ebuild
vendored
@ -29,6 +29,5 @@ RDEPEND="${DEPEND}
|
||||
dev-libs/capstone
|
||||
dev-cpp/nlohmann_json
|
||||
x11-libs/gtk+
|
||||
dev-cpp/catch
|
||||
"
|
||||
BDEPEND="${DEPEND}"
|
||||
|
3
dist/get_deps_archlinux.sh
vendored
3
dist/get_deps_archlinux.sh
vendored
@ -9,5 +9,4 @@ pacman -S --needed \
|
||||
capstone \
|
||||
python3 \
|
||||
freetype2 \
|
||||
gtk3 \
|
||||
catch2
|
||||
gtk3
|
||||
|
1
dist/get_deps_debian.sh
vendored
1
dist/get_deps_debian.sh
vendored
@ -26,7 +26,6 @@ apt install -y \
|
||||
python3-dev \
|
||||
libfreetype-dev \
|
||||
libgtk-3-dev \
|
||||
catch
|
||||
|
||||
echo "Please consider this before running cmake (useful on e.g. Ubuntu 20.04):"
|
||||
echo "export CXX=g++-10"
|
||||
|
3
dist/get_deps_fedora.sh
vendored
3
dist/get_deps_fedora.sh
vendored
@ -10,5 +10,4 @@ dnf install \
|
||||
mbedtls-devel \
|
||||
python-devel \
|
||||
freetype-devel \
|
||||
gtk3 \
|
||||
catch-devel
|
||||
gtk3
|
||||
|
3
dist/get_deps_msys2.sh
vendored
3
dist/get_deps_msys2.sh
vendored
@ -11,5 +11,4 @@ pacman -S --needed --noconfirm \
|
||||
mingw-w64-x86_64-mbedtls \
|
||||
mingw-w64-x86_64-python \
|
||||
mingw-w64-x86_64-freetype \
|
||||
mingw-w64-x86_64-dlfcn \
|
||||
mingw-w64-x86_64-catch
|
||||
mingw-w64-x86_64-dlfcn
|
||||
|
3
dist/msys2/PKGBUILD
vendored
3
dist/msys2/PKGBUILD
vendored
@ -18,8 +18,7 @@ makedepends=("${MINGW_PACKAGE_PREFIX}-gcc"
|
||||
"${MINGW_PACKAGE_PREFIX}-mbedtls"
|
||||
"${MINGW_PACKAGE_PREFIX}-polly"
|
||||
"${MINGW_PACKAGE_PREFIX}-python"
|
||||
"${MINGW_PACKAGE_PREFIX}-freetype"
|
||||
"${MINGW_PACKAGE_PREFIX}-catch")
|
||||
"${MINGW_PACKAGE_PREFIX}-freetype")
|
||||
|
||||
source=()
|
||||
sha256sums=()
|
||||
|
@ -1,15 +1,21 @@
|
||||
cmake_minimum_required(VERSION 3.16)
|
||||
|
||||
project(algorithms_tests)
|
||||
project(algorithms_test)
|
||||
|
||||
find_package(Catch2 REQUIRED)
|
||||
|
||||
add_executable(algorithms_tests source/hash.cpp)
|
||||
target_include_directories(algorithms_tests PRIVATE include)
|
||||
target_link_libraries(algorithms_tests libimhex Catch2::Catch2)
|
||||
# Add new tests here #
|
||||
set(AVAILABLE_TESTS
|
||||
TestSucceeding
|
||||
TestFailing
|
||||
)
|
||||
|
||||
set_target_properties(algorithms_tests PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
|
||||
|
||||
include(CTest)
|
||||
include(Catch)
|
||||
catch_discover_tests(algorithms_tests TEST_PREFIX "Algorithms/")
|
||||
add_executable(algorithms_test source/hash.cpp source/main.cpp include/tests.hpp)
|
||||
target_include_directories(algorithms_test PRIVATE include)
|
||||
target_link_libraries(algorithms_test libimhex)
|
||||
|
||||
set_target_properties(algorithms_test PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
|
||||
|
||||
foreach (test IN LISTS AVAILABLE_TESTS)
|
||||
add_test(NAME "Algorithms/${test}" COMMAND algorithms_test "${test}" WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
|
||||
endforeach ()
|
75
tests/algorithms/include/tests.hpp
Normal file
75
tests/algorithms/include/tests.hpp
Normal file
@ -0,0 +1,75 @@
|
||||
#pragma once
|
||||
|
||||
#include <hex.hpp>
|
||||
#include <utility>
|
||||
#include <hex/helpers/utils.hpp>
|
||||
|
||||
#include <string>
|
||||
#include <map>
|
||||
#include <functional>
|
||||
|
||||
#define TEST_SEQUENCE(...) static auto ANONYMOUS_VARIABLE(TEST_SEQUENCE) = ::hex::test::TestSequenceExecutor(__VA_ARGS__) + []() -> int
|
||||
#define TEST_FAIL() return EXIT_FAILURE;
|
||||
#define TEST_SUCCESS() return EXIT_SUCCESS;
|
||||
#define FAILING true
|
||||
|
||||
namespace hex::test {
|
||||
|
||||
struct Test {
|
||||
std::function<int()> function;
|
||||
bool shouldFail;
|
||||
};
|
||||
|
||||
class Tests {
|
||||
public:
|
||||
static auto addTest(const std::string &name, const std::function<int()> &func, bool shouldFail) noexcept {
|
||||
s_tests.insert({ name, { func, shouldFail } });
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static auto& get()noexcept {
|
||||
return s_tests;
|
||||
}
|
||||
private:
|
||||
static inline std::map<std::string, Test> s_tests;
|
||||
};
|
||||
|
||||
template<class F>
|
||||
class TestSequence {
|
||||
public:
|
||||
TestSequence(const std::string& name, F func, bool shouldFail) noexcept {
|
||||
Tests::addTest(name, func, shouldFail);
|
||||
}
|
||||
|
||||
TestSequence& operator=(TestSequence &&) = delete;
|
||||
};
|
||||
|
||||
struct TestSequenceExecutor {
|
||||
explicit TestSequenceExecutor(std::string name, bool shouldFail = false) noexcept : m_name(std::move(name)), m_shouldFail(shouldFail) {
|
||||
|
||||
}
|
||||
|
||||
[[nodiscard]]
|
||||
const auto& getName() const noexcept {
|
||||
return this->m_name;
|
||||
}
|
||||
|
||||
[[nodiscard]]
|
||||
bool shouldFail() const noexcept {
|
||||
return this->m_shouldFail;
|
||||
}
|
||||
|
||||
private:
|
||||
std::string m_name;
|
||||
bool m_shouldFail;
|
||||
};
|
||||
|
||||
|
||||
template <typename F>
|
||||
TestSequence<F> operator+(TestSequenceExecutor executor, F&& f) noexcept {
|
||||
return TestSequence<F>(executor.getName(), std::forward<F>(f), executor.shouldFail());
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,5 +1,11 @@
|
||||
#define CATCH_CONFIG_MAIN
|
||||
#include <catch2/catch.hpp>
|
||||
|
||||
#include <hex/helpers/crypto.hpp>
|
||||
#include "test_provider.hpp"
|
||||
#include "tests.hpp"
|
||||
|
||||
TEST_SEQUENCE("TestSucceeding") {
|
||||
TEST_SUCCESS();
|
||||
};
|
||||
|
||||
TEST_SEQUENCE("TestFailing", FAILING) {
|
||||
TEST_FAIL();
|
||||
};
|
52
tests/algorithms/source/main.cpp
Normal file
52
tests/algorithms/source/main.cpp
Normal file
@ -0,0 +1,52 @@
|
||||
#include <hex.hpp>
|
||||
#include <hex/helpers/utils.hpp>
|
||||
#include <hex/helpers/logger.hpp>
|
||||
#include "tests.hpp"
|
||||
|
||||
#include <cstdlib>
|
||||
|
||||
int test(int argc, char **argv) {
|
||||
// Check if a test to run has been provided
|
||||
if (argc != 2) {
|
||||
hex::log::fatal("Invalid number of arguments specified! {}", argc);
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
// Check if that test exists
|
||||
std::string testName = argv[1];
|
||||
if (!hex::test::Tests::get().contains(testName)) {
|
||||
hex::log::fatal("No test with name {} found!", testName);
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
auto test = hex::test::Tests::get()[testName];
|
||||
|
||||
auto result = test.function();
|
||||
|
||||
if (test.shouldFail) {
|
||||
switch (result) {
|
||||
case EXIT_SUCCESS: return EXIT_FAILURE;
|
||||
case EXIT_FAILURE: return EXIT_SUCCESS;
|
||||
default: return result;
|
||||
}
|
||||
} else {
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
int result = EXIT_SUCCESS;
|
||||
|
||||
for (u32 i = 0; i < 16; i++) {
|
||||
result = test(argc, argv);
|
||||
if (result != EXIT_SUCCESS)
|
||||
break;
|
||||
}
|
||||
|
||||
if (result == EXIT_SUCCESS)
|
||||
hex::log::info("Success!");
|
||||
else
|
||||
hex::log::info("Failed!");
|
||||
|
||||
return result;
|
||||
}
|
@ -22,7 +22,6 @@ set(AVAILABLE_TESTS
|
||||
)
|
||||
|
||||
|
||||
|
||||
add_executable(pattern_language_tests source/main.cpp source/tests.cpp)
|
||||
target_include_directories(pattern_language_tests PRIVATE include)
|
||||
target_link_libraries(pattern_language_tests libimhex)
|
||||
|
Loading…
Reference in New Issue
Block a user