blob: 9cc1a0f4b99217f4ab934317ddd38c6cd461f6d6 [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ák19af2662018-10-01 13:42:08 +02005set(client_tests test_client test_client_messages)
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)
David Sedlák493f2b12018-10-08 21:50:33 +02009set(${test}_mock_funcs connect ssh_connect ssh_userauth_none ssh_userauth_kbdint ssh_is_connected
10 ssh_channel_open_session ssh_channel_request_subsystem ssh_channel_is_close ssh_channel_write
11 ssh_channel_poll_timeout ssh_userauth_password nc_handshake_io nc_ctx_check_and_fill
12 ssh_userauth_try_publickey ssh_userauth_publickey)
David Sedlákddde4492018-09-30 21:34:38 +020013set(${test}_wrap_link_flags "-Wl")
14foreach(mock_func IN LISTS ${test}_mock_funcs)
15 set(${test}_wrap_link_flags "${${test}_wrap_link_flags},--wrap=${mock_func}")
16endforeach()
17
David Sedlák6fdf1ec2018-09-30 21:42:31 +020018set(test test_client_tls)
19set(${test}_mock_funcs connect SSL_connect nc_send_hello_io nc_handshake_io nc_ctx_check_and_fill)
20set(${test}_wrap_link_flags "-Wl")
21foreach(mock_func IN LISTS ${test}_mock_funcs)
22 set(${test}_wrap_link_flags "${${test}_wrap_link_flags},--wrap=${mock_func}")
23endforeach()
24
David Sedlákddde4492018-09-30 21:34:38 +020025#append tests depending on SSH/TLS
Michal Vasko8f0c0282016-02-29 10:17:14 +010026if (ENABLE_SSH OR ENABLE_TLS)
Michal Vaskoa7b8ca52016-03-01 12:09:29 +010027 list(APPEND tests test_server_thread)
David Sedlákddde4492018-09-30 21:34:38 +020028 if (ENABLE_SSH)
29 list(APPEND client_tests test_client_ssh)
30 endif()
31
32 if (ENABLE_TLS)
David Sedlák6fdf1ec2018-09-30 21:42:31 +020033 list(APPEND client_tests test_client_tls)
David Sedlákddde4492018-09-30 21:34:38 +020034 endif()
Michal Vasko061561f2016-02-08 15:36:22 +010035endif()
Michal Vasko294d4c62016-02-01 10:10:27 +010036
David Sedlákddde4492018-09-30 21:34:38 +020037foreach(src IN LISTS libsrc)
38 list(APPEND test_srcs "../${src}")
39endforeach()
40add_library(testobj OBJECT ${test_srcs})
41
Michal Vasko294d4c62016-02-01 10:10:27 +010042foreach(test_name IN LISTS tests)
David Sedlákddde4492018-09-30 21:34:38 +020043 add_executable(${test_name} $<TARGET_OBJECTS:testobj> ${test_name}.c)
Michal Vasko294d4c62016-02-01 10:10:27 +010044 target_link_libraries(${test_name} ${CMOCKA_LIBRARIES} ${LIBYANG_LIBRARIES} netconf2)
David Sedlákddde4492018-09-30 21:34:38 +020045 set_target_properties(${test_name} PROPERTIES LINK_FLAGS "${${test_name}_wrap_link_flags}")
46 add_test(NAME ${test_name} COMMAND $<TARGET_FILE:${test_name}>)
47endforeach()
48
49foreach(test_name IN LISTS client_tests)
50 add_executable(${test_name} $<TARGET_OBJECTS:testobj> ./client/${test_name}.c)
51 target_link_libraries(${test_name} ${CMOCKA_LIBRARIES} ${LIBYANG_LIBRARIES} netconf2)
52 set_target_properties(${test_name} PROPERTIES LINK_FLAGS "${${test_name}_wrap_link_flags}")
53 add_test(NAME ${test_name} COMMAND $<TARGET_FILE:${test_name}>)
Michal Vasko061561f2016-02-08 15:36:22 +010054endforeach()
Radek Krejcice24ab82015-10-08 15:37:02 +020055
Michal Vasko061561f2016-02-08 15:36:22 +010056if (ENABLE_VALGRIND_TESTS)
Michal Vasko294d4c62016-02-01 10:10:27 +010057 find_program(valgrind_FOUND valgrind)
Michal Vasko061561f2016-02-08 15:36:22 +010058 if (valgrind_FOUND)
59 foreach (test_name IN LISTS tests)
David Sedlák493f2b12018-10-08 21:50:33 +020060 add_test(${test_name}_valgrind valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1
61 --suppressions=${PROJECT_SOURCE_DIR}/tests/ld.supp ${CMAKE_BINARY_DIR}/tests/${test_name})
Michal Vasko061561f2016-02-08 15:36:22 +010062 endforeach()
David Sedlákddde4492018-09-30 21:34:38 +020063
64 foreach (test_name IN LISTS client_tests)
David Sedlák493f2b12018-10-08 21:50:33 +020065 add_test(${test_name}_valgrind valgrind --leak-check=full --show-leak-kinds=all --error-exitcode=1
66 --suppressions=${PROJECT_SOURCE_DIR}/tests/ld.supp ${CMAKE_BINARY_DIR}/tests/${test_name})
David Sedlákddde4492018-09-30 21:34:38 +020067 endforeach()
Michal Vasko061561f2016-02-08 15:36:22 +010068 else (valgrind_FOUND)
Michal Vasko294d4c62016-02-01 10:10:27 +010069 Message("-- valgrind executable not found! Disabling memory leaks tests")
Michal Vasko061561f2016-02-08 15:36:22 +010070 endif()
Radek Krejcice24ab82015-10-08 15:37:02 +020071endif()
72
Jan Kundrátcf15d6c2017-10-26 18:07:56 +020073include_directories(${CMAKE_SOURCE_DIR}/src ${PROJECT_BINARY_DIR})
74configure_file("${PROJECT_SOURCE_DIR}/tests/config.h.in" "${PROJECT_BINARY_DIR}/tests/config.h" ESCAPE_QUOTES @ONLY)