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. |
Václav Kubernát | 8483414 | 2020-02-07 19:25:55 +0100 | [diff] [blame] | 33 | set(CMAKE_CXX_FLAGS "-Wall -Wextra -pedantic -Woverloaded-virtual -Wimplicit-fallthrough ${CMAKE_CXX_FLAGS}") |
Jan Kundrát | fb83190 | 2018-05-26 18:58:52 +0200 | [diff] [blame] | 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 | ) |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 81 | target_link_libraries(utils path ast_values Boost::boost) |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 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 |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 91 | src/data_query.cpp |
Václav Kubernát | e7a9fa3 | 2018-08-22 13:56:35 +0200 | [diff] [blame] | 92 | ) |
| 93 | target_link_libraries(datastoreaccess PUBLIC Boost::boost) |
| 94 | |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 95 | add_library(sysrepoaccess STATIC |
| 96 | src/sysrepo_access.cpp |
| 97 | ) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 98 | |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 99 | target_link_libraries(sysrepoaccess datastoreaccess ast_values ${SYSREPO_LIBRARIES}) |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 100 | link_directories(${SYSREPO_LIBRARY_DIRS}) |
| 101 | target_include_directories(sysrepoaccess SYSTEM PRIVATE ${SYSREPO_INCLUDE_DIRS}) |
| 102 | |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 103 | add_library(netconfaccess STATIC |
| 104 | src/netconf-client.cpp |
| 105 | src/netconf_access.cpp |
| 106 | ) |
| 107 | |
Jan Kundrát | e5378f6 | 2020-01-16 13:46:21 +0100 | [diff] [blame] | 108 | 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] | 109 | link_directories(${LIBNETCONF2_LIBRARY_DIRS}) |
| 110 | target_include_directories(netconfaccess SYSTEM PRIVATE ${LIBNETCONF2_INCLUDE_DIRS}) |
| 111 | |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 112 | add_library(yangschema STATIC |
| 113 | src/yang_schema.cpp |
Václav Kubernát | 02a7115 | 2020-01-21 14:52:51 +0100 | [diff] [blame] | 114 | src/libyang_utils.cpp |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 115 | ) |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 116 | target_link_libraries(yangschema schemas utils ${LIBYANG_LIBRARIES}) |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 117 | # Ensure that this doesn't override Boost's -isystem -- see the log for details. |
| 118 | target_include_directories(yangschema SYSTEM PRIVATE ${LIBYANG_INCLUDEDIR}) |
| 119 | link_directories(${LIBYANG_LIBRARY_DIRS}) |
| 120 | |
Jan Kundrát | 578347c | 2018-08-09 15:02:06 +0200 | [diff] [blame] | 121 | add_library(parser STATIC |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame] | 122 | src/parser.cpp |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 123 | src/ast_commands.cpp |
Václav Kubernát | 195eeea | 2018-05-18 13:52:36 +0200 | [diff] [blame] | 124 | src/parser_context.cpp |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame] | 125 | src/interpreter.cpp |
Václav Kubernát | 329c6c3 | 2019-02-06 16:41:53 +0100 | [diff] [blame] | 126 | src/ast_handlers.cpp |
Václav Kubernát | cb3af40 | 2020-02-12 16:49:17 +0100 | [diff] [blame] | 127 | src/completion.cpp |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 128 | ) |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 129 | target_link_libraries(parser schemas utils ast_values) |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 130 | |
Václav Kubernát | 7310938 | 2018-09-14 19:52:03 +0200 | [diff] [blame] | 131 | |
| 132 | add_library(sysreposubscription STATIC |
| 133 | tests/mock/sysrepo_subscription.cpp |
| 134 | ) |
| 135 | |
| 136 | target_link_libraries(sysreposubscription ${SYSREPO_LIBRARIES}) |
| 137 | link_directories(${SYSREPO_LIBRARY_DIRS}) |
| 138 | target_include_directories(sysreposubscription SYSTEM PRIVATE ${SYSREPO_INCLUDE_DIRS}) |
| 139 | |
Václav Kubernát | b79f3ca | 2020-02-04 15:56:01 +0100 | [diff] [blame] | 140 | add_executable(sysrepo-cli |
| 141 | src/cli.cpp |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 142 | ) |
Václav Kubernát | b79f3ca | 2020-02-04 15:56:01 +0100 | [diff] [blame] | 143 | target_compile_definitions(sysrepo-cli PRIVATE SYSREPO_CLI) |
| 144 | target_include_directories(sysrepo-cli PRIVATE ${REPLXX_PATH}) |
| 145 | target_link_libraries(sysrepo-cli sysrepoaccess yangschema docopt parser ${REPLXX_LIBRARY}) |
Václav Kubernát | 2b68461 | 2018-08-09 18:55:24 +0200 | [diff] [blame] | 146 | if(CMAKE_CXX_FLAGS MATCHES "-stdlib=libc\\+\\+") |
Václav Kubernát | b79f3ca | 2020-02-04 15:56:01 +0100 | [diff] [blame] | 147 | target_link_libraries(sysrepo-cli c++experimental) |
Václav Kubernát | 2b68461 | 2018-08-09 18:55:24 +0200 | [diff] [blame] | 148 | else() |
Václav Kubernát | b79f3ca | 2020-02-04 15:56:01 +0100 | [diff] [blame] | 149 | target_link_libraries(sysrepo-cli stdc++fs) |
Václav Kubernát | 2b68461 | 2018-08-09 18:55:24 +0200 | [diff] [blame] | 150 | endif() |
| 151 | |
Václav Kubernát | b79f3ca | 2020-02-04 15:56:01 +0100 | [diff] [blame] | 152 | add_dependencies(sysrepo-cli target-NETCONF_CLI_VERSION) |
| 153 | target_include_directories(sysrepo-cli PRIVATE ${PROJECT_BINARY_DIR}) |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 154 | |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 155 | include(CTest) |
| 156 | if(BUILD_TESTING) |
| 157 | enable_testing() |
Jan Kundrát | c381e63 | 2019-03-14 13:39:11 +0100 | [diff] [blame] | 158 | find_package(trompeloeil 33 REQUIRED) |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 159 | find_package(doctest 2.3.1 REQUIRED) |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 160 | |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 161 | add_library(DoctestIntegration STATIC |
| 162 | tests/doctest_integration.cpp |
Václav Kubernát | 26b5608 | 2020-02-03 18:28:56 +0100 | [diff] [blame] | 163 | tests/trompeloeil_doctest.hpp |
Jan Kundrát | c381e63 | 2019-03-14 13:39:11 +0100 | [diff] [blame] | 164 | tests/wait-a-bit-longer.cpp |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 165 | ) |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 166 | 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] | 167 | target_link_libraries(DoctestIntegration doctest::doctest trompeloeil) |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 168 | target_compile_definitions(DoctestIntegration PUBLIC DOCTEST_CONFIG_SUPER_FAST_ASSERTS) |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 169 | |
Václav Kubernát | 7310938 | 2018-09-14 19:52:03 +0200 | [diff] [blame] | 170 | if (NOT SYSREPOCTL_EXECUTABLE) |
| 171 | find_program(SYSREPOCTL_EXECUTABLE sysrepoctl) |
| 172 | endif() |
| 173 | if (NOT SYSREPOCTL_EXECUTABLE) |
| 174 | message(FATAL_ERROR "Unable to find sysrepoctl, set SYSREPOCTL_EXECUTABLE manually.") |
| 175 | endif() |
| 176 | |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 177 | if (NOT SYSREPOCFG_EXECUTABLE) |
| 178 | find_program(SYSREPOCFG_EXECUTABLE sysrepocfg) |
| 179 | endif() |
| 180 | if (NOT SYSREPOCFG_EXECUTABLE) |
| 181 | message(FATAL_ERROR "Unable to find sysrepocfg, set SYSREPOCFG_EXECUTABLE manually.") |
| 182 | endif() |
Václav Kubernát | 7310938 | 2018-09-14 19:52:03 +0200 | [diff] [blame] | 183 | |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 184 | if (NOT SYSREPOD_EXECUTABLE) |
| 185 | find_program(SYSREPOD_EXECUTABLE sysrepod) |
| 186 | endif() |
| 187 | if (NOT SYSREPOD_EXECUTABLE) |
| 188 | message(FATAL_ERROR "Unable to find sysrepod, set SYSREPOD_EXECUTABLE manually.") |
| 189 | endif() |
| 190 | |
| 191 | if (NOT SYSREPO_PLUGIND_EXECUTABLE) |
| 192 | find_program(SYSREPO_PLUGIND_EXECUTABLE sysrepo-plugind) |
| 193 | endif() |
| 194 | if (NOT SYSREPO_PLUGIND_EXECUTABLE) |
| 195 | message(FATAL_ERROR "Unable to find sysrepo-plugind, set SYSREPO_EXECUTABLE manually.") |
| 196 | endif() |
| 197 | |
| 198 | if (NOT NETOPEER2_EXECUTABLE) |
| 199 | find_program(NETOPEER2_EXECUTABLE netopeer2-server) |
| 200 | endif() |
| 201 | if (NOT NETOPEER2_EXECUTABLE) |
| 202 | message(FATAL_ERROR "Unable to find netopeer2-server, set NETOPEER2_EXECUTABLE manually.") |
| 203 | endif() |
| 204 | |
Jan Kundrát | e323627 | 2019-09-27 09:45:26 +0200 | [diff] [blame] | 205 | if (NOT FAKEROOT_EXECUTABLE) |
| 206 | find_program(FAKEROOT_EXECUTABLE fakeroot) |
| 207 | endif() |
| 208 | if (NOT FAKEROOT_EXECUTABLE) |
| 209 | message(FATAL_ERROR "Unable to find fakeroot, set FAKEROOT_EXECUTABLE manually.") |
| 210 | endif() |
| 211 | |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 212 | set(NETOPEER_SOCKET_PATH "${CMAKE_CURRENT_BINARY_DIR}/netopeer2-server.sock") |
Jan Kundrát | e103449 | 2020-01-16 23:09:09 +0100 | [diff] [blame] | 213 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/tests/start_daemons.sh.in ${CMAKE_CURRENT_BINARY_DIR}/start_daemons.sh @ONLY) |
| 214 | 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] | 215 | |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 216 | function(setup_datastore_tests) |
Jan Kundrát | e103449 | 2020-01-16 23:09:09 +0100 | [diff] [blame] | 217 | 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] | 218 | add_test(NAME start_daemons COMMAND ${FAKEROOT_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/start_daemons.sh) |
Václav Kubernát | 1acf4f1 | 2020-01-31 15:54:34 +0100 | [diff] [blame] | 219 | add_test(NAME example-schema_init |
| 220 | COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/tests/sysrepoctl-manage-module.sh ${SYSREPOCTL_EXECUTABLE} ${SYSREPOCFG_EXECUTABLE} install ${CMAKE_CURRENT_SOURCE_DIR}/tests/example-schema.yang ) |
| 221 | add_test(NAME example-schema_cleanup |
| 222 | COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/tests/sysrepoctl-manage-module.sh ${SYSREPOCTL_EXECUTABLE} ${SYSREPOCFG_EXECUTABLE} uninstall ${CMAKE_CURRENT_SOURCE_DIR}/tests/example-schema.yang ) |
Jan Kundrát | e103449 | 2020-01-16 23:09:09 +0100 | [diff] [blame] | 223 | add_test(NAME kill_daemons COMMAND ${CMAKE_CURRENT_SOURCE_DIR}/tests/kill_daemons.sh) |
Václav Kubernát | 1acf4f1 | 2020-01-31 15:54:34 +0100 | [diff] [blame] | 224 | set_tests_properties(example-schema_init PROPERTIES FIXTURES_REQUIRED netopeer_running FIXTURES_SETUP example-schema_setup) |
| 225 | set_tests_properties(example-schema_cleanup PROPERTIES FIXTURES_CLEANUP example-schema_setup) |
| 226 | set_tests_properties(setup_netopeer start_daemons kill_daemons example-schema_init example-schema_cleanup PROPERTIES RESOURCE_LOCK sysrepo) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 227 | set_tests_properties(setup_netopeer PROPERTIES FIXTURES_SETUP netopeer_configured) |
| 228 | set_tests_properties(start_daemons PROPERTIES FIXTURES_REQUIRED netopeer_configured FIXTURES_SETUP netopeer_running) |
Václav Kubernát | 1acf4f1 | 2020-01-31 15:54:34 +0100 | [diff] [blame] | 229 | set_property(TEST kill_daemons APPEND PROPERTY DEPENDS example-schema_cleanup) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 230 | endfunction() |
| 231 | |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 232 | function(cli_test name) |
| 233 | if (${ARGC} GREATER 1) # this is how CMake does optional arguments |
| 234 | add_executable(test_${name} |
| 235 | tests/${ARGV1} |
| 236 | ) |
| 237 | else() |
| 238 | add_executable(test_${name} |
| 239 | tests/${name}.cpp |
| 240 | ) |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 241 | endif() |
Václav Kubernát | 43908fb | 2020-01-02 19:05:51 +0100 | [diff] [blame] | 242 | target_link_libraries(test_${name} DoctestIntegration parser datastoreaccess) |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 243 | if(NOT CMAKE_CROSSCOMPILING) |
| 244 | add_test(test_${name} test_${name}) |
| 245 | endif() |
| 246 | target_include_directories(test_${name} PRIVATE ${CMAKE_CURRENT_BINARY_DIR}) |
Jan Kundrát | cc4c1f2 | 2018-08-09 15:00:03 +0200 | [diff] [blame] | 247 | endfunction() |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 248 | |
Václav Kubernát | 1acf4f1 | 2020-01-31 15:54:34 +0100 | [diff] [blame] | 249 | function(datastore_test_impl name model backend) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 250 | set(TESTNAME test_${name}_${backend}) |
| 251 | cli_test(${name}_${backend} ${name}.cpp) |
Václav Kubernát | 1acf4f1 | 2020-01-31 15:54:34 +0100 | [diff] [blame] | 252 | set_tests_properties(${TESTNAME} PROPERTIES FIXTURES_REQUIRED ${model}_setup RESOURCE_LOCK sysrepo) |
| 253 | set_property(TEST ${TESTNAME} APPEND PROPERTY FIXTURES_REQUIRED netopeer_running) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 254 | target_include_directories(${TESTNAME} PRIVATE ${PROJECT_SOURCE_DIR}/tests/mock) |
| 255 | if (${backend} STREQUAL "sysrepo") |
| 256 | target_link_libraries(${TESTNAME} sysrepoaccess) |
| 257 | elseif (${backend} STREQUAL "netconf") |
| 258 | target_link_libraries(${TESTNAME} netconfaccess) |
| 259 | else() |
| 260 | message(FATAL_ERROR "Unknown backend ${backend}") |
| 261 | endif() |
| 262 | target_link_libraries(${TESTNAME} yangschema sysreposubscription) |
| 263 | |
| 264 | target_compile_definitions(${TESTNAME} PRIVATE ${backend}_BACKEND) |
| 265 | endfunction() |
| 266 | |
Václav Kubernát | 1acf4f1 | 2020-01-31 15:54:34 +0100 | [diff] [blame] | 267 | function(datastore_test name model) |
| 268 | datastore_test_impl(${name} ${model} sysrepo) |
| 269 | datastore_test_impl(${name} ${model} netconf) |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 270 | endfunction() |
| 271 | |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 272 | cli_test(cd) |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 273 | cli_test(ls) |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 274 | cli_test(presence_containers) |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 275 | cli_test(leaf_editing) |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 276 | cli_test(yang) |
| 277 | target_link_libraries(test_yang yangschema) |
Václav Kubernát | 4108e0d | 2018-10-29 13:32:22 +0100 | [diff] [blame] | 278 | cli_test(utils) |
| 279 | cli_test(path_completion) |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 280 | cli_test(command_completion) |
Václav Kubernát | 989b5de | 2019-02-20 16:28:35 +0100 | [diff] [blame] | 281 | cli_test(enum_completion) |
Václav Kubernát | f5f64f0 | 2019-03-19 17:15:47 +0100 | [diff] [blame] | 282 | cli_test(list_manipulation) |
Václav Kubernát | 1446fe1 | 2019-10-02 19:32:51 +0200 | [diff] [blame] | 283 | cli_test(parser_methods) |
Václav Kubernát | 5395e71 | 2019-12-03 18:24:33 +0100 | [diff] [blame] | 284 | cli_test(path_utils) |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 285 | target_link_libraries(test_path_utils path) |
Václav Kubernát | 43908fb | 2020-01-02 19:05:51 +0100 | [diff] [blame] | 286 | cli_test(keyvalue_completion) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 287 | |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 288 | setup_datastore_tests() |
Václav Kubernát | 1acf4f1 | 2020-01-31 15:54:34 +0100 | [diff] [blame] | 289 | datastore_test(datastore_access example-schema) |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 290 | datastore_test(data_query example-schema) |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 291 | endif() |
| 292 | |
Jan Kundrát | cf5c636 | 2020-01-16 22:54:47 +0100 | [diff] [blame] | 293 | option(WITH_PYTHON_BINDINGS "Create and install Python3 bindings for accessing datastores" OFF) |
| 294 | if(WITH_PYTHON_BINDINGS) |
| 295 | set(PYBIND11_CPP_STANDARD -std=c++17) |
| 296 | find_package(pybind11 REQUIRED) |
| 297 | pybind11_add_module(netconf_cli_py src/python_netconf.cpp) |
| 298 | target_link_libraries(netconf_cli_py PUBLIC netconfaccess) |
| 299 | |
| 300 | if(BUILD_TESTING) |
| 301 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/tests/python_netconfaccess.py |
| 302 | ${CMAKE_CURRENT_BINARY_DIR}/tests_python_netconfaccess.py @ONLY) |
| 303 | add_test(NAME test_netconf_cli_py COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/tests_python_netconfaccess.py) |
Václav Kubernát | 1acf4f1 | 2020-01-31 15:54:34 +0100 | [diff] [blame] | 304 | set_tests_properties(test_netconf_cli_py PROPERTIES FIXTURES_REQUIRED netopeer_running RESOURCE_LOCK sysrepo DEPENDS example-schema_cleanup) |
Václav Kubernát | 0177a93 | 2020-01-22 11:17:55 +0100 | [diff] [blame] | 305 | 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] | 306 | |
| 307 | set(sanitizer_active OFF) |
| 308 | # FIXME: this just sucks. The detection is very unreliable (one could use something like |
| 309 | # -fsanitize=address,undefined and we are screwed), and especially clang's query for preload |
| 310 | # is obviously unportable because we hardcode host's architecture. |
| 311 | # This is super-ugly. Perhaps it would be better just to outright disable everything, but hey, |
| 312 | # I need to test this on my laptop where I'm using ASAN by default, and it kinda-almost-works |
| 313 | # there with just one patch to libyang :). |
| 314 | if (${CMAKE_CXX_FLAGS} MATCHES "-fsanitize=address") |
| 315 | set(sanitizer_active ON) |
| 316 | set(gcc_sanitizer_preload libasan.so) |
| 317 | set(clang_sanitizer_preload libclang_rt.asan-x86_64.so) |
| 318 | endif() |
| 319 | |
| 320 | if (sanitizer_active) |
| 321 | if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") |
| 322 | execute_process(COMMAND ${CMAKE_CXX_COMPILER} -print-file-name=${clang_sanitizer_preload} |
| 323 | OUTPUT_VARIABLE LIBxSAN_FULL_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) |
| 324 | elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") |
| 325 | execute_process(COMMAND ${CMAKE_CXX_COMPILER} -print-file-name=${gcc_sanitizer_preload} |
| 326 | OUTPUT_VARIABLE LIBxSAN_FULL_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) |
| 327 | else() |
| 328 | message(ERROR "Cannot determine correct sanitizer library for LD_PRELOAD") |
| 329 | endif() |
| 330 | set_property(TEST test_netconf_cli_py APPEND PROPERTY ENVIRONMENT |
| 331 | LD_PRELOAD=${LIBxSAN_FULL_PATH} |
| 332 | ASAN_OPTIONS=detect_leaks=0 # they look harmless, but they are annoying |
| 333 | ) |
| 334 | endif() |
| 335 | endif() |
| 336 | endif() |
| 337 | |
Jan Kundrát | 608818b | 2018-03-02 13:43:53 +0100 | [diff] [blame] | 338 | if(WITH_DOCS) |
| 339 | set(doxyfile_in ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in) |
| 340 | set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile) |
| 341 | configure_file(${doxyfile_in} ${doxyfile} @ONLY) |
| 342 | add_custom_target(doc |
| 343 | COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile} |
| 344 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 345 | COMMENT "Generating API documentation with Doxygen" |
| 346 | VERBATIM |
| 347 | SOURCES ${doxyfile_in} |
| 348 | ) |
| 349 | endif() |
Jan Kundrát | 10f4990 | 2018-05-22 17:01:45 +0200 | [diff] [blame] | 350 | |
| 351 | install(TARGETS |
Václav Kubernát | b79f3ca | 2020-02-04 15:56:01 +0100 | [diff] [blame] | 352 | sysrepo-cli |
Jan Kundrát | 10f4990 | 2018-05-22 17:01:45 +0200 | [diff] [blame] | 353 | RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/) |