blob: 3d7b95af198563eed1fb31f79f42b62dfb5952d6 [file] [log] [blame]
Radek Krejcice24ab82015-10-08 15:37:02 +02001cmake_minimum_required(VERSION 2.6)
Radek Krejcice24ab82015-10-08 15:37:02 +02002
David Sedlákddde4492018-09-30 21:34:38 +02003# list of all the tests in each directory
Radek Krejci2e32e392017-05-26 13:25:46 +02004set(tests test_io test_fd_comm test_init_destroy_client test_init_destroy_server test_time test_client_thread)
David Sedlákddde4492018-09-30 21:34:38 +02005set(client_tests )
Michal Vasko061561f2016-02-08 15:36:22 +01006
David Sedlákddde4492018-09-30 21:34:38 +02007# add -Wl,--wrap flags
8set(test test_client_ssh)
9set(${test}_mock_funcs connect ssh_connect ssh_userauth_none ssh_userauth_kbdint ssh_is_connected ssh_channel_open_session ssh_channel_request_subsystem ssh_channel_is_closed ssh_channel_write ssh_channel_poll_timeout ssh_userauth_password nc_handshake_io nc_ctx_check_and_fill)
10set(${test}_wrap_link_flags "-Wl")
11foreach(mock_func IN LISTS ${test}_mock_funcs)
12 set(${test}_wrap_link_flags "${${test}_wrap_link_flags},--wrap=${mock_func}")
13endforeach()
14
David Sedlák6fdf1ec2018-09-30 21:42:31 +020015set(test test_client_tls)
16set(${test}_mock_funcs connect SSL_connect nc_send_hello_io nc_handshake_io nc_ctx_check_and_fill)
17set(${test}_wrap_link_flags "-Wl")
18foreach(mock_func IN LISTS ${test}_mock_funcs)
19 set(${test}_wrap_link_flags "${${test}_wrap_link_flags},--wrap=${mock_func}")
20endforeach()
21
David Sedlákddde4492018-09-30 21:34:38 +020022#append tests depending on SSH/TLS
Michal Vasko8f0c0282016-02-29 10:17:14 +010023if (ENABLE_SSH OR ENABLE_TLS)
Michal Vaskoa7b8ca52016-03-01 12:09:29 +010024 list(APPEND tests test_server_thread)
David Sedlákddde4492018-09-30 21:34:38 +020025 if (ENABLE_SSH)
26 list(APPEND client_tests test_client_ssh)
27 endif()
28
29 if (ENABLE_TLS)
David Sedlák6fdf1ec2018-09-30 21:42:31 +020030 list(APPEND client_tests test_client_tls)
David Sedlákddde4492018-09-30 21:34:38 +020031 endif()
Michal Vasko061561f2016-02-08 15:36:22 +010032endif()
Michal Vasko294d4c62016-02-01 10:10:27 +010033
David Sedlákddde4492018-09-30 21:34:38 +020034foreach(src IN LISTS libsrc)
35 list(APPEND test_srcs "../${src}")
36endforeach()
37add_library(testobj OBJECT ${test_srcs})
38
Michal Vasko294d4c62016-02-01 10:10:27 +010039foreach(test_name IN LISTS tests)
David Sedlákddde4492018-09-30 21:34:38 +020040 add_executable(${test_name} $<TARGET_OBJECTS:testobj> ${test_name}.c)
Michal Vasko294d4c62016-02-01 10:10:27 +010041 target_link_libraries(${test_name} ${CMOCKA_LIBRARIES} ${LIBYANG_LIBRARIES} netconf2)
David Sedlákddde4492018-09-30 21:34:38 +020042 set_target_properties(${test_name} PROPERTIES LINK_FLAGS "${${test_name}_wrap_link_flags}")
43 add_test(NAME ${test_name} COMMAND $<TARGET_FILE:${test_name}>)
44endforeach()
45
46foreach(test_name IN LISTS client_tests)
47 add_executable(${test_name} $<TARGET_OBJECTS:testobj> ./client/${test_name}.c)
48 target_link_libraries(${test_name} ${CMOCKA_LIBRARIES} ${LIBYANG_LIBRARIES} netconf2)
49 set_target_properties(${test_name} PROPERTIES LINK_FLAGS "${${test_name}_wrap_link_flags}")
50 add_test(NAME ${test_name} COMMAND $<TARGET_FILE:${test_name}>)
Michal Vasko061561f2016-02-08 15:36:22 +010051endforeach()
Radek Krejcice24ab82015-10-08 15:37:02 +020052
Michal Vasko061561f2016-02-08 15:36:22 +010053if (ENABLE_VALGRIND_TESTS)
Michal Vasko294d4c62016-02-01 10:10:27 +010054 find_program(valgrind_FOUND valgrind)
Michal Vasko061561f2016-02-08 15:36:22 +010055 if (valgrind_FOUND)
56 foreach (test_name IN LISTS tests)
Radek Krejci16c94f62017-05-26 10:53:30 +020057 add_test(${test_name}_valgrind valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1 --suppressions=${PROJECT_SOURCE_DIR}/tests/ld.supp ${CMAKE_BINARY_DIR}/tests/${test_name})
Michal Vasko061561f2016-02-08 15:36:22 +010058 endforeach()
David Sedlákddde4492018-09-30 21:34:38 +020059
60 foreach (test_name IN LISTS client_tests)
61 add_test(${test_name}_valgrind valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1 --suppressions=${PROJECT_SOURCE_DIR}/tests/ld.supp ${CMAKE_BINARY_DIR}/tests/${test_name})
62 endforeach()
Michal Vasko061561f2016-02-08 15:36:22 +010063 else (valgrind_FOUND)
Michal Vasko294d4c62016-02-01 10:10:27 +010064 Message("-- valgrind executable not found! Disabling memory leaks tests")
Michal Vasko061561f2016-02-08 15:36:22 +010065 endif()
Radek Krejcice24ab82015-10-08 15:37:02 +020066endif()
67
Jan Kundrátcf15d6c2017-10-26 18:07:56 +020068include_directories(${CMAKE_SOURCE_DIR}/src ${PROJECT_BINARY_DIR})
69configure_file("${PROJECT_SOURCE_DIR}/tests/config.h.in" "${PROJECT_BINARY_DIR}/tests/config.h" ESCAPE_QUOTES @ONLY)