2020-03-03 04:15:18 +00:00
|
|
|
if (WITH_HIVE)
|
2020-05-17 19:41:48 +00:00
|
|
|
add_custom_target(hive_build DEPENDS liblokinet pyllarp)
|
2020-03-03 04:15:18 +00:00
|
|
|
add_custom_target(hive ${CMAKE_COMMAND} -E
|
2020-03-03 05:37:05 +00:00
|
|
|
env PYTHONPATH="$ENV{PYTHONPATH}:${CMAKE_BINARY_DIR}/pybind"
|
2020-03-03 04:15:18 +00:00
|
|
|
${PYTHON_EXECUTABLE} -m pytest
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/hive
|
|
|
|
DEPENDS
|
2020-03-03 19:56:33 +00:00
|
|
|
hive_build)
|
2020-03-03 04:15:18 +00:00
|
|
|
endif()
|
|
|
|
|
2020-02-22 20:07:43 +00:00
|
|
|
# Old gtest-based tests; new tests should use Catch2, instead.
|
2020-05-17 19:41:48 +00:00
|
|
|
add_executable(testAll
|
|
|
|
# helpers
|
|
|
|
main.cpp
|
|
|
|
crypto/mock_crypto.cpp
|
|
|
|
dht/mock_context.cpp
|
|
|
|
test_util.cpp
|
|
|
|
# actual test cases
|
2019-07-02 21:28:28 +00:00
|
|
|
config/test_llarp_config_ini.cpp
|
2019-02-09 16:16:00 +00:00
|
|
|
crypto/test_llarp_crypto_types.cpp
|
|
|
|
crypto/test_llarp_crypto.cpp
|
2019-12-09 19:29:33 +00:00
|
|
|
crypto/test_llarp_key_manager.cpp
|
2019-02-09 16:16:00 +00:00
|
|
|
dht/test_llarp_dht_bucket.cpp
|
|
|
|
dht/test_llarp_dht_explorenetworkjob.cpp
|
|
|
|
dht/test_llarp_dht_kademlia.cpp
|
|
|
|
dht/test_llarp_dht_key.cpp
|
|
|
|
dht/test_llarp_dht_node.cpp
|
|
|
|
dht/test_llarp_dht_tx.cpp
|
|
|
|
dht/test_llarp_dht_txowner.cpp
|
|
|
|
dns/test_llarp_dns_dns.cpp
|
|
|
|
exit/test_llarp_exit_context.cpp
|
|
|
|
link/test_llarp_link.cpp
|
2019-05-28 19:45:09 +00:00
|
|
|
llarp_test.cpp
|
2019-02-09 16:16:00 +00:00
|
|
|
net/test_llarp_net.cpp
|
2020-01-31 20:23:48 +00:00
|
|
|
router/test_llarp_router_version.cpp
|
2019-02-09 16:16:00 +00:00
|
|
|
routing/llarp_routing_transfer_traffic.cpp
|
|
|
|
routing/test_llarp_routing_obtainexitmessage.cpp
|
|
|
|
service/test_llarp_service_address.cpp
|
|
|
|
service/test_llarp_service_identity.cpp
|
2019-02-19 09:43:17 +00:00
|
|
|
test_libabyss.cpp
|
2019-02-09 16:16:00 +00:00
|
|
|
test_llarp_encrypted_frame.cpp
|
|
|
|
test_llarp_router_contact.cpp
|
2019-03-13 20:01:10 +00:00
|
|
|
test_md5.cpp
|
2019-09-01 12:58:27 +00:00
|
|
|
util/meta/test_llarp_util_memfn.cpp
|
|
|
|
util/meta/test_llarp_util_traits.cpp
|
2019-02-09 16:16:00 +00:00
|
|
|
util/test_llarp_util_aligned.cpp
|
|
|
|
util/test_llarp_util_bencode.cpp
|
|
|
|
util/test_llarp_util_encode.cpp
|
2020-01-21 18:21:11 +00:00
|
|
|
util/test_llarp_util_log_level.cpp
|
2019-09-01 13:26:16 +00:00
|
|
|
util/thread/test_llarp_util_queue_manager.cpp
|
|
|
|
util/thread/test_llarp_util_queue.cpp
|
|
|
|
util/thread/test_llarp_util_thread_pool.cpp
|
2019-02-09 17:48:34 +00:00
|
|
|
)
|
|
|
|
|
2020-05-17 19:41:48 +00:00
|
|
|
target_link_libraries(testAll PUBLIC gmock gtest liblokinet)
|
|
|
|
target_include_directories(testAll PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
2019-02-09 16:16:00 +00:00
|
|
|
|
2020-02-23 19:35:25 +00:00
|
|
|
if(WIN32)
|
2020-05-17 19:41:48 +00:00
|
|
|
target_sources(testAll PUBLIC "${CMAKE_CURRENT_SOURCE_DIR}/win32/test.rc")
|
|
|
|
target_link_libraries(testAll PUBLIC ws2_32 iphlpapi shlwapi)
|
2020-02-23 19:35:25 +00:00
|
|
|
endif()
|
2019-06-10 16:42:29 +00:00
|
|
|
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
|
2020-05-17 19:41:48 +00:00
|
|
|
target_link_directories(testAll PRIVATE /usr/local/lib)
|
2019-07-02 21:28:28 +00:00
|
|
|
endif()
|
2020-02-10 17:12:20 +00:00
|
|
|
|
2020-02-17 13:24:57 +00:00
|
|
|
add_subdirectory(Catch2)
|
|
|
|
|
2020-05-17 19:41:48 +00:00
|
|
|
add_executable(catchAll
|
2020-02-14 21:11:54 +00:00
|
|
|
nodedb/test_nodedb.cpp
|
2020-02-10 17:12:20 +00:00
|
|
|
path/test_path.cpp
|
2020-02-23 19:35:25 +00:00
|
|
|
util/test_llarp_util_bits.cpp
|
|
|
|
util/test_llarp_util_printer.cpp
|
2020-02-22 19:55:53 +00:00
|
|
|
util/test_llarp_util_str.cpp
|
2020-02-24 15:26:46 +00:00
|
|
|
util/test_llarp_util_decaying_hashset.cpp
|
2020-03-16 23:26:18 +00:00
|
|
|
config/test_llarp_config_definition.cpp
|
2020-03-17 21:17:35 +00:00
|
|
|
config/test_llarp_config_output.cpp
|
2020-05-08 17:23:21 +00:00
|
|
|
net/test_ip_address.cpp
|
|
|
|
net/test_sock_addr.cpp
|
2020-02-10 17:12:20 +00:00
|
|
|
check_main.cpp)
|
|
|
|
|
2020-05-17 19:41:48 +00:00
|
|
|
target_link_libraries(catchAll PUBLIC liblokinet Catch2::Catch2)
|
|
|
|
target_include_directories(catchAll PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
|
2020-02-22 20:07:43 +00:00
|
|
|
|
|
|
|
# Custom targets to invoke the different test suites:
|
2020-05-17 19:41:48 +00:00
|
|
|
add_custom_target(catch COMMAND catchAll)
|
|
|
|
add_custom_target(rungtest COMMAND testAll)
|
2020-02-10 17:12:20 +00:00
|
|
|
|
2020-02-22 20:07:43 +00:00
|
|
|
# Add a custom "check" target that runs all the test suites:
|
|
|
|
add_custom_target(check DEPENDS rungtest catch)
|