Jan Kundrát | d9d26a9 | 2018-02-22 12:49:21 +0100 | [diff] [blame] | 1 | project(netconf-cli LANGUAGES CXX) |
| 2 | cmake_minimum_required(VERSION 3.0) |
Jan Kundrát | 763db1e | 2018-05-25 15:43:51 +0200 | [diff] [blame] | 3 | set(CMAKE_CXX_STANDARD 17) |
Jan Kundrát | d9d26a9 | 2018-02-22 12:49:21 +0100 | [diff] [blame] | 4 | set(CMAKE_CXX_STANDARD_REQUIRED ON) |
Jan Kundrát | 8569e1b | 2020-01-16 13:47:19 +0100 | [diff] [blame] | 5 | set(CMAKE_POSITION_INDEPENDENT_CODE TRUE) |
Jan Kundrát | d47f655 | 2018-03-02 13:40:11 +0100 | [diff] [blame] | 6 | |
| 7 | include(GNUInstallDirs) |
| 8 | |
| 9 | # Set a default build type if none was specified. This was shamelessly stolen |
| 10 | # from VTK's cmake setup because these guys produce both CMake and a project that |
| 11 | # manipulates this variable, and the web is full of posts where people say that |
| 12 | # it is apparently evil to just set the build type in a way an earlier version of |
| 13 | # this patch did. Oh, and the location of this check/update matters, apparently. |
| 14 | # |
| 15 | # Yes, this is just plain crazy. |
| 16 | if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) |
| 17 | message(STATUS "Setting build type to 'RelWithDebInfo' as none was specified.") |
| 18 | set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "Choose the type of build." FORCE) |
| 19 | # Set the possible values of build type for cmake-gui |
| 20 | set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo") |
| 21 | endif() |
| 22 | |
| 23 | # -Werror is not a default for sanity reasons (one cannot know what warnings a future compiler |
| 24 | # might bring along), but it's a default in debug mode. The idea is that developers should care |
| 25 | # about a warning-free build, and that this is easier than messing with yet another configure option. |
| 26 | set(CMAKE_CXX_FLAGS_DEBUG "-Werror ${CMAKE_CXX_FLAGS_DEBUG}") |
| 27 | |
| 28 | # I don't want to duplicate the compiler's optimizations |
| 29 | set(CMAKE_CXX_FLAGS "-O2 ${CMAKE_CXX_FLAGS}") |
| 30 | |
| 31 | # Build warnings are useful tools (and this project should be warning-free anyway), enable them on all |
| 32 | # configurations. They are warnings, not errors. |
Jan Kundrát | fb83190 | 2018-05-26 18:58:52 +0200 | [diff] [blame] | 33 | set(CMAKE_CXX_FLAGS "-Wall -Wextra -pedantic -Woverloaded-virtual ${CMAKE_CXX_FLAGS}") |
| 34 | |
| 35 | if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") |
| 36 | set(CMAKE_CXX_FLAGS "-Wsuggest-override ${CMAKE_CXX_FLAGS}") |
| 37 | endif() |
Jan Kundrát | d47f655 | 2018-03-02 13:40:11 +0100 | [diff] [blame] | 38 | |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 39 | set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/") |
| 40 | |
| 41 | add_custom_target(git-version-cmake-ide |
| 42 | cmake/ProjectGitVersion.cmake |
| 43 | cmake/ProjectGitVersionRunner.cmake |
| 44 | ) |
| 45 | include(cmake/ProjectGitVersion.cmake) |
| 46 | prepare_git_version(NETCONF_CLI_VERSION "0.0") |
| 47 | |
Jan Kundrát | 608818b | 2018-03-02 13:43:53 +0100 | [diff] [blame] | 48 | find_package(Doxygen) |
| 49 | option(WITH_DOCS "Create and install internal documentation (needs Doxygen)" ${DOXYGEN_FOUND}) |
| 50 | |
Jan Kundrát | d47f655 | 2018-03-02 13:40:11 +0100 | [diff] [blame] | 51 | find_package(docopt REQUIRED) |
Jan Kundrát | 03caee8 | 2018-03-08 14:16:56 +0100 | [diff] [blame] | 52 | find_package(Boost REQUIRED) |
Jan Kundrát | 8d8efe8 | 2019-10-18 10:21:36 +0200 | [diff] [blame] | 53 | find_library(REPLXX_LIBRARY NAMES replxx replxx-d REQUIRED) |
Václav Kubernát | a395d33 | 2019-02-13 16:49:20 +0100 | [diff] [blame] | 54 | find_path(REPLXX_PATH replxx.hxx) |
| 55 | if("${REPLXX_PATH}" STREQUAL REPLXX_PATH-NOTFOUND) |
| 56 | message(FATAL_ERROR "Cannot find the \"replxx.hxx\" include file for the replxx library.") |
| 57 | endif() |
Jan Kundrát | 608818b | 2018-03-02 13:43:53 +0100 | [diff] [blame] | 58 | |
Jan Kundrát | e05448a | 2018-06-13 15:54:33 +0200 | [diff] [blame] | 59 | find_package(PkgConfig) |
| 60 | pkg_check_modules(LIBYANG REQUIRED libyang-cpp>=0.15.111) |
Jan Kundrát | bd17836 | 2019-02-05 19:00:04 +0100 | [diff] [blame] | 61 | # TODO: bump to 0.7.8 once it is tagged |
| 62 | pkg_check_modules(SYSREPO REQUIRED libSysrepo-cpp>=0.7.7) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 63 | pkg_check_modules(LIBNETCONF2 REQUIRED libnetconf2>=0.12.47) |
Jan Kundrát | e05448a | 2018-06-13 15:54:33 +0200 | [diff] [blame] | 64 | |
Václav Kubernát | b96eef7 | 2018-05-04 19:10:22 +0200 | [diff] [blame] | 65 | # we don't need filename tracking, and we prefer to use header-only Boost |
| 66 | add_definitions(-DBOOST_SPIRIT_X3_NO_FILESYSTEM) |
| 67 | |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 68 | add_library(path STATIC |
| 69 | src/ast_path.cpp |
| 70 | ) |
| 71 | target_link_libraries(path Boost::boost) |
| 72 | |
| 73 | add_library(ast_values STATIC |
| 74 | src/ast_values.cpp |
| 75 | ) |
| 76 | target_link_libraries(ast_values Boost::boost) |
| 77 | |
| 78 | add_library(utils STATIC |
| 79 | src/utils.cpp |
| 80 | ) |
| 81 | target_link_libraries(utils path Boost::boost) |
| 82 | |
Jan Kundrát | 578347c | 2018-08-09 15:02:06 +0200 | [diff] [blame] | 83 | add_library(schemas STATIC |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 84 | src/static_schema.cpp |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame] | 85 | src/schema.cpp |
Jan Kundrát | 578347c | 2018-08-09 15:02:06 +0200 | [diff] [blame] | 86 | ) |
Jan Kundrát | e5378f6 | 2020-01-16 13:46:21 +0100 | [diff] [blame] | 87 | target_link_libraries(schemas PUBLIC path Boost::boost) |
Jan Kundrát | 578347c | 2018-08-09 15:02:06 +0200 | [diff] [blame] | 88 | |
Václav Kubernát | e7a9fa3 | 2018-08-22 13:56:35 +0200 | [diff] [blame] | 89 | add_library(datastoreaccess STATIC |
| 90 | src/datastore_access.cpp |
| 91 | ) |
| 92 | target_link_libraries(datastoreaccess PUBLIC Boost::boost) |
| 93 | |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 94 | add_library(sysrepoaccess STATIC |
| 95 | src/sysrepo_access.cpp |
| 96 | ) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 97 | |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 98 | target_link_libraries(sysrepoaccess datastoreaccess ast_values ${SYSREPO_LIBRARIES}) |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 99 | link_directories(${SYSREPO_LIBRARY_DIRS}) |
| 100 | target_include_directories(sysrepoaccess SYSTEM PRIVATE ${SYSREPO_INCLUDE_DIRS}) |
| 101 | |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 102 | add_library(netconfaccess STATIC |
| 103 | src/netconf-client.cpp |
| 104 | src/netconf_access.cpp |
| 105 | ) |
| 106 | |
Jan Kundrát | e5378f6 | 2020-01-16 13:46:21 +0100 | [diff] [blame] | 107 | target_link_libraries(netconfaccess datastoreaccess yangschema ast_values utils ${LIBNETCONF2_LIBRARIES}) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 108 | link_directories(${LIBNETCONF2_LIBRARY_DIRS}) |
| 109 | target_include_directories(netconfaccess SYSTEM PRIVATE ${LIBNETCONF2_INCLUDE_DIRS}) |
| 110 | |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 111 | add_library(yangschema STATIC |
| 112 | src/yang_schema.cpp |
Václav Kubernát | 02a7115 | 2020-01-21 14:52:51 +0100 | [diff] [blame] | 113 | src/libyang_utils.cpp |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 114 | ) |
Jan Kundrát | e5378f6 | 2020-01-16 13:46:21 +0100 | [diff] [blame] | 115 | target_link_libraries(yangschema schemas ${LIBYANG_LIBRARIES}) |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 116 | # Ensure that this doesn't override Boost's -isystem -- see the log for details. |
| 117 | target_include_directories(yangschema SYSTEM PRIVATE ${LIBYANG_INCLUDEDIR}) |
| 118 | link_directories(${LIBYANG_LIBRARY_DIRS}) |
| 119 | |
Jan Kundrát | 578347c | 2018-08-09 15:02:06 +0200 | [diff] [blame] | 120 | add_library(parser STATIC |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame] | 121 | src/parser.cpp |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 122 | src/ast_commands.cpp |
Václav Kubernát | 195eeea | 2018-05-18 13:52:36 +0200 | [diff] [blame] | 123 | src/parser_context.cpp |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame] | 124 | src/interpreter.cpp |
Václav Kubernát | 329c6c3 | 2019-02-06 16:41:53 +0100 | [diff] [blame] | 125 | src/ast_handlers.cpp |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 126 | ) |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 127 | target_link_libraries(parser schemas utils ast_values) |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 128 | |
Václav Kubernát | 7310938 | 2018-09-14 19:52:03 +0200 | [diff] [blame] | 129 | |
| 130 | add_library(sysreposubscription STATIC |
| 131 | tests/mock/sysrepo_subscription.cpp |
| 132 | ) |
| 133 | |
| 134 | target_link_libraries(sysreposubscription ${SYSREPO_LIBRARIES}) |
| 135 | link_directories(${SYSREPO_LIBRARY_DIRS}) |
| 136 | target_include_directories(sysreposubscription SYSTEM PRIVATE ${SYSREPO_INCLUDE_DIRS}) |
| 137 | |
Jan Kundrát | cc4c1f2 | 2018-08-09 15:00:03 +0200 | [diff] [blame] | 138 | add_executable(netconf-cli |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 139 | src/main.cpp |
| 140 | ) |
Václav Kubernát | a395d33 | 2019-02-13 16:49:20 +0100 | [diff] [blame] | 141 | target_include_directories(netconf-cli PRIVATE ${REPLXX_PATH}) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 142 | target_link_libraries(netconf-cli netconfaccess sysrepoaccess yangschema docopt parser ${REPLXX_LIBRARY}) |
Václav Kubernát | 2b68461 | 2018-08-09 18:55:24 +0200 | [diff] [blame] | 143 | if(CMAKE_CXX_FLAGS MATCHES "-stdlib=libc\\+\\+") |
| 144 | target_link_libraries(netconf-cli c++experimental) |
| 145 | else() |
| 146 | target_link_libraries(netconf-cli stdc++fs) |
| 147 | endif() |
| 148 | |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 149 | add_dependencies(netconf-cli target-NETCONF_CLI_VERSION) |
| 150 | target_include_directories(netconf-cli PRIVATE ${PROJECT_BINARY_DIR}) |
| 151 | |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 152 | include(CTest) |
| 153 | if(BUILD_TESTING) |
| 154 | enable_testing() |
Jan Kundrát | c381e63 | 2019-03-14 13:39:11 +0100 | [diff] [blame] | 155 | find_package(trompeloeil 33 REQUIRED) |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 156 | find_package(doctest 2.3.1 REQUIRED) |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 157 | |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 158 | add_library(DoctestIntegration STATIC |
| 159 | tests/doctest_integration.cpp |
| 160 | tests/trompeloeil_doctest.h |
Jan Kundrát | c381e63 | 2019-03-14 13:39:11 +0100 | [diff] [blame] | 161 | tests/wait-a-bit-longer.cpp |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 162 | ) |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 163 | target_include_directories(DoctestIntegration PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/tests/ ${CMAKE_CURRENT_SOURCE_DIR}/src/) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 164 | target_link_libraries(DoctestIntegration doctest::doctest trompeloeil) |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 165 | target_compile_definitions(DoctestIntegration PUBLIC DOCTEST_CONFIG_SUPER_FAST_ASSERTS) |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 166 | |
Václav Kubernát | 7310938 | 2018-09-14 19:52:03 +0200 | [diff] [blame] | 167 | if (NOT SYSREPOCTL_EXECUTABLE) |
| 168 | find_program(SYSREPOCTL_EXECUTABLE sysrepoctl) |
| 169 | endif() |
| 170 | if (NOT SYSREPOCTL_EXECUTABLE) |
| 171 | message(FATAL_ERROR "Unable to find sysrepoctl, set SYSREPOCTL_EXECUTABLE manually.") |
| 172 | endif() |
| 173 | |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 174 | if (NOT SYSREPOCFG_EXECUTABLE) |
| 175 | find_program(SYSREPOCFG_EXECUTABLE sysrepocfg) |
| 176 | endif() |
| 177 | if (NOT SYSREPOCFG_EXECUTABLE) |
| 178 | message(FATAL_ERROR "Unable to find sysrepocfg, set SYSREPOCFG_EXECUTABLE manually.") |
| 179 | endif() |
Václav Kubernát | 7310938 | 2018-09-14 19:52:03 +0200 | [diff] [blame] | 180 | |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 181 | if (NOT SYSREPOD_EXECUTABLE) |
| 182 | find_program(SYSREPOD_EXECUTABLE sysrepod) |
| 183 | endif() |
| 184 | if (NOT SYSREPOD_EXECUTABLE) |
| 185 | message(FATAL_ERROR "Unable to find sysrepod, set SYSREPOD_EXECUTABLE manually.") |
| 186 | endif() |
| 187 | |
| 188 | if (NOT SYSREPO_PLUGIND_EXECUTABLE) |
| 189 | find_program(SYSREPO_PLUGIND_EXECUTABLE sysrepo-plugind) |
| 190 | endif() |
| 191 | if (NOT SYSREPO_PLUGIND_EXECUTABLE) |
| 192 | message(FATAL_ERROR "Unable to find sysrepo-plugind, set SYSREPO_EXECUTABLE manually.") |
| 193 | endif() |
| 194 | |
| 195 | if (NOT NETOPEER2_EXECUTABLE) |
| 196 | find_program(NETOPEER2_EXECUTABLE netopeer2-server) |
| 197 | endif() |
| 198 | if (NOT NETOPEER2_EXECUTABLE) |
| 199 | message(FATAL_ERROR "Unable to find netopeer2-server, set NETOPEER2_EXECUTABLE manually.") |
| 200 | endif() |
| 201 | |
Jan Kundrát | e323627 | 2019-09-27 09:45:26 +0200 | [diff] [blame] | 202 | if (NOT FAKEROOT_EXECUTABLE) |
| 203 | find_program(FAKEROOT_EXECUTABLE fakeroot) |
| 204 | endif() |
| 205 | if (NOT FAKEROOT_EXECUTABLE) |
| 206 | message(FATAL_ERROR "Unable to find fakeroot, set FAKEROOT_EXECUTABLE manually.") |
| 207 | endif() |
| 208 | |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 209 | set(NETOPEER_SOCKET_PATH "${CMAKE_CURRENT_BINARY_DIR}/netopeer2-server.sock") |
Jan Kundrát | e103449 | 2020-01-16 23:09:09 +0100 | [diff] [blame] | 210 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/tests/start_daemons.sh.in ${CMAKE_CURRENT_BINARY_DIR}/start_daemons.sh @ONLY) |
| 211 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/tests/netopeer_vars.hpp.in ${CMAKE_CURRENT_BINARY_DIR}/netopeer_vars.hpp @ONLY) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 212 | |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 213 | function(setup_datastore_tests) |
Jan Kundrát | e103449 | 2020-01-16 23:09:09 +0100 | [diff] [blame] | 214 | add_test(NAME setup_netopeer COMMAND ${SYSREPOCFG_EXECUTABLE} ietf-netconf-server -i ${CMAKE_CURRENT_SOURCE_DIR}/tests/netopeer-test-config.xml --datastore=startup --format=xml) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 215 | add_test(NAME start_daemons COMMAND ${FAKEROOT_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/start_daemons.sh) |
Jan Kundrát | e103449 | 2020-01-16 23:09:09 +0100 | [diff] [blame] | 216 | add_test(NAME kill_daemons COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/tests/kill_daemons.sh) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 217 | set_tests_properties(setup_netopeer start_daemons kill_daemons PROPERTIES RESOURCE_LOCK sysrepo) |
| 218 | set_tests_properties(setup_netopeer PROPERTIES FIXTURES_SETUP netopeer_configured) |
| 219 | set_tests_properties(start_daemons PROPERTIES FIXTURES_REQUIRED netopeer_configured FIXTURES_SETUP netopeer_running) |
| 220 | endfunction() |
| 221 | |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 222 | function(cli_test name) |
| 223 | if (${ARGC} GREATER 1) # this is how CMake does optional arguments |
| 224 | add_executable(test_${name} |
| 225 | tests/${ARGV1} |
| 226 | ) |
| 227 | else() |
| 228 | add_executable(test_${name} |
| 229 | tests/${name}.cpp |
| 230 | ) |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 231 | endif() |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 232 | target_link_libraries(test_${name} DoctestIntegration parser) |
| 233 | if(NOT CMAKE_CROSSCOMPILING) |
| 234 | add_test(test_${name} test_${name}) |
| 235 | endif() |
| 236 | target_include_directories(test_${name} PRIVATE ${CMAKE_CURRENT_BINARY_DIR}) |
Jan Kundrát | cc4c1f2 | 2018-08-09 15:00:03 +0200 | [diff] [blame] | 237 | endfunction() |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 238 | |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 239 | function(datastore_test_impl name model_path backend) |
| 240 | set(TESTNAME test_${name}_${backend}) |
| 241 | cli_test(${name}_${backend} ${name}.cpp) |
| 242 | add_test(NAME ${TESTNAME}_init COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/tests/sysrepoctl-manage-module.sh ${SYSREPOCTL_EXECUTABLE} ${SYSREPOCFG_EXECUTABLE} install ${model_path}) |
| 243 | add_test(NAME ${TESTNAME}_cleanup COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/tests/sysrepoctl-manage-module.sh ${SYSREPOCTL_EXECUTABLE} ${SYSREPOCFG_EXECUTABLE} uninstall ${model_path}) |
| 244 | set_tests_properties(${TESTNAME}_init PROPERTIES FIXTURES_REQUIRED netopeer_running FIXTURES_SETUP ${TESTNAME}_setup) |
| 245 | set_tests_properties(${TESTNAME} PROPERTIES FIXTURES_REQUIRED ${TESTNAME}_setup RESOURCE_LOCK sysrepo) |
| 246 | set_tests_properties(${TESTNAME}_cleanup PROPERTIES FIXTURES_CLEANUP ${TESTNAME}_setup) |
| 247 | target_include_directories(${TESTNAME} PRIVATE ${PROJECT_SOURCE_DIR}/tests/mock) |
| 248 | if (${backend} STREQUAL "sysrepo") |
| 249 | target_link_libraries(${TESTNAME} sysrepoaccess) |
| 250 | elseif (${backend} STREQUAL "netconf") |
| 251 | target_link_libraries(${TESTNAME} netconfaccess) |
| 252 | else() |
| 253 | message(FATAL_ERROR "Unknown backend ${backend}") |
| 254 | endif() |
| 255 | target_link_libraries(${TESTNAME} yangschema sysreposubscription) |
| 256 | |
| 257 | target_compile_definitions(${TESTNAME} PRIVATE ${backend}_BACKEND) |
| 258 | endfunction() |
| 259 | |
| 260 | function(datastore_test name model_path) |
| 261 | set(TESTNAME test_${name}) |
Jan Kundrát | e103449 | 2020-01-16 23:09:09 +0100 | [diff] [blame] | 262 | datastore_test_impl(${name} ${CMAKE_CURRENT_SOURCE_DIR}/tests/example-schema.yang sysrepo) |
| 263 | datastore_test_impl(${name} ${CMAKE_CURRENT_SOURCE_DIR}/tests/example-schema.yang netconf) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 264 | set_tests_properties(${TESTNAME}_netconf_init PROPERTIES DEPENDS ${TESTNAME}_sysrepo_cleanup) |
Václav Kubernát | 0177a93 | 2020-01-22 11:17:55 +0100 | [diff] [blame] | 265 | set_property(TEST kill_daemons APPEND PROPERTY DEPENDS ${TESTNAME}_sysrepo_cleanup) |
| 266 | set_property(TEST kill_daemons APPEND PROPERTY DEPENDS ${TESTNAME}_netconf_cleanup) |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 267 | endfunction() |
| 268 | |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 269 | cli_test(cd) |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 270 | cli_test(ls) |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 271 | cli_test(presence_containers) |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 272 | cli_test(leaf_editing) |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 273 | cli_test(yang) |
| 274 | target_link_libraries(test_yang yangschema) |
Václav Kubernát | 4108e0d | 2018-10-29 13:32:22 +0100 | [diff] [blame] | 275 | cli_test(utils) |
| 276 | cli_test(path_completion) |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 277 | cli_test(command_completion) |
Václav Kubernát | 989b5de | 2019-02-20 16:28:35 +0100 | [diff] [blame] | 278 | cli_test(enum_completion) |
Václav Kubernát | f5f64f0 | 2019-03-19 17:15:47 +0100 | [diff] [blame] | 279 | cli_test(list_manipulation) |
Václav Kubernát | 1446fe1 | 2019-10-02 19:32:51 +0200 | [diff] [blame] | 280 | cli_test(parser_methods) |
Václav Kubernát | 5395e71 | 2019-12-03 18:24:33 +0100 | [diff] [blame] | 281 | cli_test(path_utils) |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 282 | target_link_libraries(test_path_utils path) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 283 | |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 284 | setup_datastore_tests() |
Jan Kundrát | e103449 | 2020-01-16 23:09:09 +0100 | [diff] [blame] | 285 | datastore_test(datastore_access ${CMAKE_CURRENT_SOURCE_DIR}/tests/example-schema.yang) |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 286 | endif() |
| 287 | |
Jan Kundrát | cf5c636 | 2020-01-16 22:54:47 +0100 | [diff] [blame] | 288 | option(WITH_PYTHON_BINDINGS "Create and install Python3 bindings for accessing datastores" OFF) |
| 289 | if(WITH_PYTHON_BINDINGS) |
| 290 | set(PYBIND11_CPP_STANDARD -std=c++17) |
| 291 | find_package(pybind11 REQUIRED) |
| 292 | pybind11_add_module(netconf_cli_py src/python_netconf.cpp) |
| 293 | target_link_libraries(netconf_cli_py PUBLIC netconfaccess) |
| 294 | |
| 295 | if(BUILD_TESTING) |
| 296 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/tests/python_netconfaccess.py |
| 297 | ${CMAKE_CURRENT_BINARY_DIR}/tests_python_netconfaccess.py @ONLY) |
| 298 | add_test(NAME test_netconf_cli_py COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/tests_python_netconfaccess.py) |
| 299 | set_tests_properties(test_netconf_cli_py PROPERTIES FIXTURES_REQUIRED netopeer_running RESOURCE_LOCK sysrepo DEPENDS test_datastore_access_netconf_cleanup) |
Václav Kubernát | 0177a93 | 2020-01-22 11:17:55 +0100 | [diff] [blame] | 300 | set_property(TEST kill_daemons APPEND PROPERTY DEPENDS test_netconf_cli_py) |
Jan Kundrát | cf5c636 | 2020-01-16 22:54:47 +0100 | [diff] [blame] | 301 | |
| 302 | set(sanitizer_active OFF) |
| 303 | # FIXME: this just sucks. The detection is very unreliable (one could use something like |
| 304 | # -fsanitize=address,undefined and we are screwed), and especially clang's query for preload |
| 305 | # is obviously unportable because we hardcode host's architecture. |
| 306 | # This is super-ugly. Perhaps it would be better just to outright disable everything, but hey, |
| 307 | # I need to test this on my laptop where I'm using ASAN by default, and it kinda-almost-works |
| 308 | # there with just one patch to libyang :). |
| 309 | if (${CMAKE_CXX_FLAGS} MATCHES "-fsanitize=address") |
| 310 | set(sanitizer_active ON) |
| 311 | set(gcc_sanitizer_preload libasan.so) |
| 312 | set(clang_sanitizer_preload libclang_rt.asan-x86_64.so) |
| 313 | endif() |
| 314 | |
| 315 | if (sanitizer_active) |
| 316 | if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") |
| 317 | execute_process(COMMAND ${CMAKE_CXX_COMPILER} -print-file-name=${clang_sanitizer_preload} |
| 318 | OUTPUT_VARIABLE LIBxSAN_FULL_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) |
| 319 | elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") |
| 320 | execute_process(COMMAND ${CMAKE_CXX_COMPILER} -print-file-name=${gcc_sanitizer_preload} |
| 321 | OUTPUT_VARIABLE LIBxSAN_FULL_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) |
| 322 | else() |
| 323 | message(ERROR "Cannot determine correct sanitizer library for LD_PRELOAD") |
| 324 | endif() |
| 325 | set_property(TEST test_netconf_cli_py APPEND PROPERTY ENVIRONMENT |
| 326 | LD_PRELOAD=${LIBxSAN_FULL_PATH} |
| 327 | ASAN_OPTIONS=detect_leaks=0 # they look harmless, but they are annoying |
| 328 | ) |
| 329 | endif() |
| 330 | endif() |
| 331 | endif() |
| 332 | |
Jan Kundrát | 608818b | 2018-03-02 13:43:53 +0100 | [diff] [blame] | 333 | if(WITH_DOCS) |
| 334 | set(doxyfile_in ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in) |
| 335 | set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile) |
| 336 | configure_file(${doxyfile_in} ${doxyfile} @ONLY) |
| 337 | add_custom_target(doc |
| 338 | COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile} |
| 339 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 340 | COMMENT "Generating API documentation with Doxygen" |
| 341 | VERBATIM |
| 342 | SOURCES ${doxyfile_in} |
| 343 | ) |
| 344 | endif() |
Jan Kundrát | 10f4990 | 2018-05-22 17:01:45 +0200 | [diff] [blame] | 345 | |
| 346 | install(TARGETS |
| 347 | netconf-cli |
| 348 | RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/) |