From 20f3d98d637c5992c53f19590c15fa923f4eedcd Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Sat, 19 Apr 2025 14:48:48 +0200 Subject: Move katja into a separate repository --- tests/CMakeLists.txt | 15 --------------- tests/database.cpp | 14 -------------- tests/repository.cpp | 13 ------------- 3 files changed, 42 deletions(-) delete mode 100644 tests/CMakeLists.txt delete mode 100644 tests/database.cpp delete mode 100644 tests/repository.cpp (limited to 'tests') diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt deleted file mode 100644 index 33ddc98..0000000 --- a/tests/CMakeLists.txt +++ /dev/null @@ -1,15 +0,0 @@ -find_package(Boost CONFIG COMPONENTS unit_test_framework REQUIRED) - -file(GLOB KATJA_TEST_SOURCES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.cpp) - -foreach(test_source ${KATJA_TEST_SOURCES}) - get_filename_component(test_name ${test_source} NAME_WE) - set(tester ${test_name}-tester) - - add_executable(${tester} ${test_source}) - - target_compile_definitions(${tester} PRIVATE "BOOST_TEST_DYN_LINK=1") - target_link_libraries(${tester} LINK_PRIVATE katja Boost::unit_test_framework) - - add_test(NAME ${test_name} COMMAND ${tester}) -endforeach() diff --git a/tests/database.cpp b/tests/database.cpp deleted file mode 100644 index d895804..0000000 --- a/tests/database.cpp +++ /dev/null @@ -1,14 +0,0 @@ -#define BOOST_TEST_MODULE database tests - -#include -#include "katja/database.hpp" - -BOOST_AUTO_TEST_CASE(generate_package_identifier) -{ - katja::database_package actual("libarchive-3.7.8-i586-1_slack15.0"); - - BOOST_TEST(actual.name == "libarchive"); - BOOST_TEST(actual.version == "3.7.8"); - BOOST_TEST(actual.architecture == "i586"); - BOOST_TEST(actual.build_tag == "1_slack15.0"); -} diff --git a/tests/repository.cpp b/tests/repository.cpp deleted file mode 100644 index 1f1fb19..0000000 --- a/tests/repository.cpp +++ /dev/null @@ -1,13 +0,0 @@ -#define BOOST_TEST_MODULE repository tests - -#include -#include "katja/repository.hpp" - -BOOST_AUTO_TEST_CASE(construct_valid_database_package) -{ - katja::package_identifier given{ "libarchive", "3.7.8", "i586", "slackware" }; - std::string actual = given.to_string(); - std::string expected = "libarchive;3.7.8;i586;slackware"; - - BOOST_TEST(actual == expected); -} -- cgit v1.2.3