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) |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 8 | include(CTest) |
Jan Kundrát | d47f655 | 2018-03-02 13:40:11 +0100 | [diff] [blame] | 9 | |
| 10 | # Set a default build type if none was specified. This was shamelessly stolen |
| 11 | # from VTK's cmake setup because these guys produce both CMake and a project that |
| 12 | # manipulates this variable, and the web is full of posts where people say that |
| 13 | # it is apparently evil to just set the build type in a way an earlier version of |
| 14 | # this patch did. Oh, and the location of this check/update matters, apparently. |
| 15 | # |
| 16 | # Yes, this is just plain crazy. |
| 17 | if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES) |
| 18 | message(STATUS "Setting build type to 'RelWithDebInfo' as none was specified.") |
| 19 | set(CMAKE_BUILD_TYPE RelWithDebInfo CACHE STRING "Choose the type of build." FORCE) |
| 20 | # Set the possible values of build type for cmake-gui |
| 21 | set_property(CACHE CMAKE_BUILD_TYPE PROPERTY STRINGS "Debug" "Release" "MinSizeRel" "RelWithDebInfo") |
| 22 | endif() |
| 23 | |
| 24 | # -Werror is not a default for sanity reasons (one cannot know what warnings a future compiler |
| 25 | # might bring along), but it's a default in debug mode. The idea is that developers should care |
| 26 | # about a warning-free build, and that this is easier than messing with yet another configure option. |
| 27 | set(CMAKE_CXX_FLAGS_DEBUG "-Werror ${CMAKE_CXX_FLAGS_DEBUG}") |
| 28 | |
| 29 | # I don't want to duplicate the compiler's optimizations |
| 30 | set(CMAKE_CXX_FLAGS "-O2 ${CMAKE_CXX_FLAGS}") |
| 31 | |
| 32 | # Build warnings are useful tools (and this project should be warning-free anyway), enable them on all |
| 33 | # configurations. They are warnings, not errors. |
Václav Kubernát | 8483414 | 2020-02-07 19:25:55 +0100 | [diff] [blame] | 34 | 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] | 35 | |
| 36 | if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") |
| 37 | set(CMAKE_CXX_FLAGS "-Wsuggest-override ${CMAKE_CXX_FLAGS}") |
| 38 | endif() |
Jan Kundrát | d47f655 | 2018-03-02 13:40:11 +0100 | [diff] [blame] | 39 | |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 40 | add_custom_target(git-version-cmake-ide |
| 41 | cmake/ProjectGitVersion.cmake |
| 42 | cmake/ProjectGitVersionRunner.cmake |
Jan Kundrát | 75c88c5 | 2020-11-12 01:51:26 +0100 | [diff] [blame] | 43 | cmake/DiscoverNetconfExecutables.cmake |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 44 | ) |
| 45 | include(cmake/ProjectGitVersion.cmake) |
| 46 | prepare_git_version(NETCONF_CLI_VERSION "0.0") |
| 47 | |
Jan Kundrát | c28a21b | 2020-11-11 15:45:43 +0100 | [diff] [blame] | 48 | # Boost.Process needs linking with threads, but doesn't have special CMake target which would do that for us. So, we |
| 49 | # need to link manually. This will hopefully change in the future. |
| 50 | # https://discourse.cmake.org/t/boost-process-target-doesnt-exist-for-thread-linking/2113 |
| 51 | set(THREADS_PREFER_PTHREAD_FLAG ON) |
| 52 | find_package(Threads) |
| 53 | |
Jan Kundrát | 608818b | 2018-03-02 13:43:53 +0100 | [diff] [blame] | 54 | find_package(Doxygen) |
| 55 | option(WITH_DOCS "Create and install internal documentation (needs Doxygen)" ${DOXYGEN_FOUND}) |
| 56 | |
Jan Kundrát | d47f655 | 2018-03-02 13:40:11 +0100 | [diff] [blame] | 57 | find_package(docopt REQUIRED) |
Václav Kubernát | e2e15ee | 2020-02-05 17:38:13 +0100 | [diff] [blame] | 58 | find_package(Boost REQUIRED COMPONENTS filesystem) |
Jan Kundrát | 8d8efe8 | 2019-10-18 10:21:36 +0200 | [diff] [blame] | 59 | find_library(REPLXX_LIBRARY NAMES replxx replxx-d REQUIRED) |
Václav Kubernát | a395d33 | 2019-02-13 16:49:20 +0100 | [diff] [blame] | 60 | find_path(REPLXX_PATH replxx.hxx) |
| 61 | if("${REPLXX_PATH}" STREQUAL REPLXX_PATH-NOTFOUND) |
| 62 | message(FATAL_ERROR "Cannot find the \"replxx.hxx\" include file for the replxx library.") |
| 63 | endif() |
Jan Kundrát | 608818b | 2018-03-02 13:43:53 +0100 | [diff] [blame] | 64 | |
Jan Kundrát | e05448a | 2018-06-13 15:54:33 +0200 | [diff] [blame] | 65 | find_package(PkgConfig) |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 66 | |
| 67 | set(ENABLE_SYSREPO_CLI AUTO CACHE STRING "Enable the `sysrepo-cli`") |
| 68 | set_property(CACHE ENABLE_SYSREPO_CLI PROPERTY STRINGS AUTO ON OFF) |
| 69 | set(ENABLE_FULL_TESTS AUTO CACHE STRING "Enable end-to-end tests via sysrepo and netopeer2") |
| 70 | set_property(CACHE ENABLE_FULL_TESTS PROPERTY STRINGS AUTO ON OFF) |
| 71 | if(NOT (ENABLE_SYSREPO_CLI STREQUAL ON OR ENABLE_SYSREPO_CLI STREQUAL OFF OR ENABLE_SYSREPO_CLI STREQUAL AUTO)) |
| 72 | message(FATAL_ERROR "ENABLE_SYSREPO_CLI must be one of ON, OFF, AUTO") |
| 73 | endif() |
| 74 | if(NOT (ENABLE_FULL_TESTS STREQUAL ON OR ENABLE_FULL_TESTS STREQUAL OFF OR ENABLE_FULL_TESTS STREQUAL AUTO)) |
| 75 | message(FATAL_ERROR "ENABLE_FULL_TESTS must be one of ON, OFF, AUTO") |
| 76 | endif() |
| 77 | if(NOT BUILD_TESTING AND ENABLE_FULL_TESTS STREQUAL ON) |
| 78 | message(FATAL_ERROR "Cannot combine ENABLE_FULL_TESTS=ON with BUILD_TESTING=OFF") |
| 79 | endif() |
| 80 | |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 81 | pkg_check_modules(LIBYANG REQUIRED libyang-cpp>=1.0.190 IMPORTED_TARGET libyang) |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 82 | pkg_check_modules(LIBNETCONF2 REQUIRED libnetconf2>=1.1.32 IMPORTED_TARGET libnetconf2) |
Jan Kundrát | e05448a | 2018-06-13 15:54:33 +0200 | [diff] [blame] | 83 | |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 84 | if(ENABLE_FULL_TESTS STREQUAL OFF AND ENABLE_SYSREPO_CLI STREQUAL OFF) |
| 85 | message(STATUS "Skipping sysrepo per configure options") |
| 86 | set(SYSREPO_FOUND 0) |
| 87 | else() |
| 88 | pkg_check_modules(SYSREPO sysrepo-cpp>=1.4.79 IMPORTED_TARGET sysrepo) |
| 89 | endif() |
| 90 | |
| 91 | if(SYSREPO_FOUND) |
| 92 | if(ENABLE_SYSREPO_CLI STREQUAL OFF) |
| 93 | message(STATUS "Skipping the `sysrepo-cli` per config option") |
| 94 | set(DO_ENABLE_SYSREPO_CLI OFF) |
| 95 | else() |
| 96 | message(STATUS "The `sysrepo-cli` will be available") |
| 97 | set(DO_ENABLE_SYSREPO_CLI ON) |
| 98 | endif() |
| 99 | |
| 100 | if(BUILD_TESTING) |
| 101 | include(cmake/DiscoverNetconfExecutables.cmake) |
| 102 | discover_netconf_executables() |
| 103 | |
| 104 | if(ENABLE_FULL_TESTS STREQUAL OFF) |
| 105 | message(STATUS "End-to-end NETCONF test suite disabled per config option") |
| 106 | set(DO_ENABLE_NETCONF_TESTS OFF) |
| 107 | else() |
| 108 | message(STATUS "End-to-end NETCONF test suite enabled") |
| 109 | set(DO_ENABLE_NETCONF_TESTS ON) |
| 110 | endif() |
| 111 | endif() |
| 112 | else() |
| 113 | if(ENABLE_SYSREPO_CLI STREQUAL ON) |
| 114 | message(FATAL_ERROR "Cannot find sysrepo-cpp which is required for the `sysrepo-cli`") |
| 115 | elseif(ENABLE_SYSREPO_CLI STREQUAL AUTO) |
| 116 | message(STATUS "Cannot find sysrepo-cpp, skipping the `sysrepo-cli`") |
| 117 | endif() |
| 118 | set(DO_ENABLE_SYSREPO_CLI OFF) |
| 119 | |
| 120 | if(BUILD_TESTING) |
| 121 | if(ENABLE_FULL_TESTS STREQUAL ON) |
| 122 | message(FATAL_ERROR "Cannot find sysrepo-cpp which is required for the end-to-end NETCONF test suite") |
| 123 | elseif(ENABLE_FULL_TESTS STREQUAL AUTO) |
| 124 | message(STATUS "Cannot find sysrepo-cpp, skipping the end-to-end NETCONF test suite") |
| 125 | endif() |
| 126 | set(DO_ENABLE_NETCONF_TESTS OFF) |
| 127 | endif() |
| 128 | endif() |
| 129 | |
Jan Kundrát | bb525b4 | 2020-02-04 11:56:59 +0100 | [diff] [blame] | 130 | include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src/) |
| 131 | |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 132 | add_library(ast_values STATIC |
| 133 | src/ast_values.cpp |
| 134 | ) |
Jan Kundrát | 688041f | 2020-03-31 10:02:49 +0200 | [diff] [blame] | 135 | target_link_libraries(ast_values PUBLIC Boost::boost) |
| 136 | |
| 137 | add_library(path STATIC |
| 138 | src/ast_path.cpp |
| 139 | ) |
| 140 | target_link_libraries(path PUBLIC ast_values Boost::boost) |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 141 | |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 142 | add_library(leaf_data_type STATIC |
| 143 | src/leaf_data_type.cpp |
| 144 | ) |
| 145 | target_link_libraries(leaf_data_type ast_values) |
| 146 | |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 147 | add_library(utils STATIC |
| 148 | src/utils.cpp |
| 149 | ) |
Jan Kundrát | 688041f | 2020-03-31 10:02:49 +0200 | [diff] [blame] | 150 | target_link_libraries(utils path ast_values) |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 151 | |
Jan Kundrát | 578347c | 2018-08-09 15:02:06 +0200 | [diff] [blame] | 152 | add_library(schemas STATIC |
Václav Kubernát | bddbb17 | 2018-06-13 16:27:39 +0200 | [diff] [blame] | 153 | src/static_schema.cpp |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame] | 154 | src/schema.cpp |
Jan Kundrát | 578347c | 2018-08-09 15:02:06 +0200 | [diff] [blame] | 155 | ) |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 156 | target_link_libraries(schemas PUBLIC path leaf_data_type Boost::boost) |
Jan Kundrát | 578347c | 2018-08-09 15:02:06 +0200 | [diff] [blame] | 157 | |
Václav Kubernát | e7a9fa3 | 2018-08-22 13:56:35 +0200 | [diff] [blame] | 158 | add_library(datastoreaccess STATIC |
| 159 | src/datastore_access.cpp |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 160 | src/data_query.cpp |
Václav Kubernát | e7a9fa3 | 2018-08-22 13:56:35 +0200 | [diff] [blame] | 161 | ) |
| 162 | target_link_libraries(datastoreaccess PUBLIC Boost::boost) |
| 163 | |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 164 | if(DO_ENABLE_SYSREPO_CLI OR DO_ENABLE_NETCONF_TESTS) |
| 165 | add_library(sysrepoaccess STATIC |
| 166 | src/sysrepo_access.cpp |
| 167 | ) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 168 | |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 169 | target_link_libraries(sysrepoaccess PUBLIC datastoreaccess ast_values PRIVATE PkgConfig::SYSREPO PkgConfig::LIBYANG) |
| 170 | endif() |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 171 | |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 172 | add_library(netconfaccess STATIC |
| 173 | src/netconf-client.cpp |
| 174 | src/netconf_access.cpp |
| 175 | ) |
| 176 | |
Václav Kubernát | 3ea893e | 2020-10-19 16:33:01 +0200 | [diff] [blame] | 177 | target_link_libraries(netconfaccess PUBLIC datastoreaccess yangschema ast_values utils PkgConfig::LIBNETCONF2 PRIVATE PkgConfig::LIBYANG) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 178 | |
Václav Kubernát | 74487df | 2020-06-04 01:29:28 +0200 | [diff] [blame] | 179 | add_library(yangaccess STATIC |
| 180 | src/yang_access.cpp |
| 181 | ) |
| 182 | |
Václav Kubernát | 3ea893e | 2020-10-19 16:33:01 +0200 | [diff] [blame] | 183 | target_link_libraries(yangaccess PUBLIC datastoreaccess yangschema PRIVATE PkgConfig::LIBYANG) |
Václav Kubernát | 74487df | 2020-06-04 01:29:28 +0200 | [diff] [blame] | 184 | |
Jan Kundrát | 2b33536 | 2020-11-05 20:40:45 +0100 | [diff] [blame] | 185 | add_library(yangutils STATIC |
Václav Kubernát | 02a7115 | 2020-01-21 14:52:51 +0100 | [diff] [blame] | 186 | src/libyang_utils.cpp |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 187 | ) |
Jan Kundrát | 2b33536 | 2020-11-05 20:40:45 +0100 | [diff] [blame] | 188 | target_link_libraries(yangutils PUBLIC PkgConfig::LIBYANG) |
Václav Kubernát | 2e4cafe | 2020-11-05 01:53:21 +0100 | [diff] [blame] | 189 | |
| 190 | add_library(yangschema STATIC |
| 191 | src/yang_schema.cpp |
| 192 | ) |
Jan Kundrát | 2b33536 | 2020-11-05 20:40:45 +0100 | [diff] [blame] | 193 | target_link_libraries(yangschema PUBLIC schemas utils yangutils PRIVATE PkgConfig::LIBYANG) |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 194 | |
Jan Kundrát | 578347c | 2018-08-09 15:02:06 +0200 | [diff] [blame] | 195 | add_library(parser STATIC |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame] | 196 | src/parser.cpp |
Václav Kubernát | 24df80e | 2018-06-06 15:18:03 +0200 | [diff] [blame] | 197 | src/ast_commands.cpp |
Václav Kubernát | 195eeea | 2018-05-18 13:52:36 +0200 | [diff] [blame] | 198 | src/parser_context.cpp |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame] | 199 | src/interpreter.cpp |
Václav Kubernát | 329c6c3 | 2019-02-06 16:41:53 +0100 | [diff] [blame] | 200 | src/ast_handlers.cpp |
Václav Kubernát | cb3af40 | 2020-02-12 16:49:17 +0100 | [diff] [blame] | 201 | src/completion.cpp |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 202 | ) |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 203 | target_link_libraries(parser schemas utils ast_values) |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 204 | |
Václav Kubernát | 48e9dfa | 2020-07-08 10:55:12 +0200 | [diff] [blame] | 205 | add_library(proxydatastore STATIC |
| 206 | src/proxy_datastore.cpp |
| 207 | ) |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 208 | target_link_libraries(proxydatastore PUBLIC datastoreaccess yangaccess) |
Václav Kubernát | 48e9dfa | 2020-07-08 10:55:12 +0200 | [diff] [blame] | 209 | |
Václav Kubernát | 74487df | 2020-06-04 01:29:28 +0200 | [diff] [blame] | 210 | # Links libraries, that aren't specific to a datastore type |
| 211 | function(cli_link_required cli_target) |
| 212 | target_include_directories(${cli_target} PRIVATE ${REPLXX_PATH}) |
Václav Kubernát | 48e9dfa | 2020-07-08 10:55:12 +0200 | [diff] [blame] | 213 | target_link_libraries(${cli_target} proxydatastore yangschema docopt parser ${REPLXX_LIBRARY}) |
Václav Kubernát | 74487df | 2020-06-04 01:29:28 +0200 | [diff] [blame] | 214 | add_dependencies(${cli_target} target-NETCONF_CLI_VERSION) |
| 215 | target_include_directories(${cli_target} PRIVATE ${PROJECT_BINARY_DIR}) |
| 216 | endfunction() |
| 217 | |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 218 | if(DO_ENABLE_SYSREPO_CLI) |
| 219 | add_executable(sysrepo-cli |
| 220 | src/cli.cpp |
| 221 | ) |
| 222 | target_compile_definitions(sysrepo-cli PRIVATE SYSREPO_CLI) |
| 223 | target_link_libraries(sysrepo-cli sysrepoaccess) |
| 224 | cli_link_required(sysrepo-cli) |
| 225 | list(APPEND cli_targets sysrepo-cli) |
| 226 | endif() |
Václav Kubernát | 2b68461 | 2018-08-09 18:55:24 +0200 | [diff] [blame] | 227 | |
Václav Kubernát | 74487df | 2020-06-04 01:29:28 +0200 | [diff] [blame] | 228 | add_executable(yang-cli |
| 229 | src/cli.cpp |
| 230 | ) |
| 231 | target_compile_definitions(yang-cli PRIVATE YANG_CLI) |
| 232 | cli_link_required(yang-cli) |
| 233 | target_link_libraries(yang-cli yangaccess) |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 234 | list(APPEND cli_targets yang-cli) |
Václav Kubernát | 619e654 | 2020-06-29 14:13:43 +0200 | [diff] [blame] | 235 | if(CMAKE_CXX_FLAGS MATCHES "-stdlib=libc\\+\\+" AND CMAKE_CXX_COMPILER_ID STREQUAL "Clang" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.0) |
| 236 | target_link_libraries(yang-cli c++experimental) |
| 237 | elseif(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 9.1) |
| 238 | target_link_libraries(yang-cli stdc++fs) |
| 239 | endif() |
| 240 | |
Václav Kubernát | e2e15ee | 2020-02-05 17:38:13 +0100 | [diff] [blame] | 241 | add_executable(netconf-cli |
| 242 | src/cli.cpp |
| 243 | src/cli-netconf.cpp |
| 244 | ) |
| 245 | target_compile_definitions(netconf-cli PRIVATE NETCONF_CLI) |
| 246 | |
Václav Kubernát | e2e15ee | 2020-02-05 17:38:13 +0100 | [diff] [blame] | 247 | target_link_libraries(netconf-cli netconfaccess Threads::Threads Boost::filesystem) |
| 248 | cli_link_required(netconf-cli) |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 249 | list(APPEND cli_targets netconf-cli) |
Václav Kubernát | 74487df | 2020-06-04 01:29:28 +0200 | [diff] [blame] | 250 | |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 251 | |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 252 | if(BUILD_TESTING) |
Jan Kundrát | c381e63 | 2019-03-14 13:39:11 +0100 | [diff] [blame] | 253 | find_package(trompeloeil 33 REQUIRED) |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 254 | find_package(doctest 2.3.1 REQUIRED) |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 255 | |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 256 | add_library(DoctestIntegration STATIC |
| 257 | tests/doctest_integration.cpp |
Václav Kubernát | 26b5608 | 2020-02-03 18:28:56 +0100 | [diff] [blame] | 258 | tests/trompeloeil_doctest.hpp |
Jan Kundrát | c381e63 | 2019-03-14 13:39:11 +0100 | [diff] [blame] | 259 | tests/wait-a-bit-longer.cpp |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 260 | ) |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 261 | 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] | 262 | target_link_libraries(DoctestIntegration doctest::doctest trompeloeil) |
Jan Kundrát | a33cf08 | 2019-03-28 11:55:57 +0100 | [diff] [blame] | 263 | target_compile_definitions(DoctestIntegration PUBLIC DOCTEST_CONFIG_SUPER_FAST_ASSERTS) |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 264 | |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 265 | if(DO_ENABLE_NETCONF_TESTS) |
| 266 | add_library(sysreposubscription STATIC |
| 267 | tests/mock/sysrepo_subscription.cpp |
| 268 | ) |
| 269 | target_link_libraries(sysreposubscription PUBLIC datastoreaccess PRIVATE PkgConfig::SYSREPO) |
Jan Kundrát | bb525b4 | 2020-02-04 11:56:59 +0100 | [diff] [blame] | 270 | |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 271 | file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/test_repositories) |
| 272 | file(MAKE_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/test_sockets) |
| 273 | endif() |
Václav Kubernát | d1beedc | 2020-09-07 12:09:05 +0200 | [diff] [blame] | 274 | |
| 275 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/tests/yang_access_test_vars.hpp.in ${CMAKE_CURRENT_BINARY_DIR}/yang_access_test_vars.hpp @ONLY) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 276 | |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 277 | function(cli_test name) |
| 278 | if (${ARGC} GREATER 1) # this is how CMake does optional arguments |
| 279 | add_executable(test_${name} |
| 280 | tests/${ARGV1} |
| 281 | ) |
| 282 | else() |
| 283 | add_executable(test_${name} |
| 284 | tests/${name}.cpp |
| 285 | ) |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 286 | endif() |
Václav Kubernát | 43908fb | 2020-01-02 19:05:51 +0100 | [diff] [blame] | 287 | target_link_libraries(test_${name} DoctestIntegration parser datastoreaccess) |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 288 | if(NOT CMAKE_CROSSCOMPILING) |
| 289 | add_test(test_${name} test_${name}) |
| 290 | endif() |
| 291 | target_include_directories(test_${name} PRIVATE ${CMAKE_CURRENT_BINARY_DIR}) |
Jan Kundrát | cc4c1f2 | 2018-08-09 15:00:03 +0200 | [diff] [blame] | 292 | endfunction() |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 293 | |
Václav Kubernát | 1acf4f1 | 2020-01-31 15:54:34 +0100 | [diff] [blame] | 294 | function(datastore_test_impl name model backend) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 295 | set(TESTNAME test_${name}_${backend}) |
Václav Kubernát | d1beedc | 2020-09-07 12:09:05 +0200 | [diff] [blame] | 296 | |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 297 | cli_test(${name}_${backend} ${name}.cpp) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 298 | target_include_directories(${TESTNAME} PRIVATE ${PROJECT_SOURCE_DIR}/tests/mock) |
| 299 | if (${backend} STREQUAL "sysrepo") |
| 300 | target_link_libraries(${TESTNAME} sysrepoaccess) |
| 301 | elseif (${backend} STREQUAL "netconf") |
| 302 | target_link_libraries(${TESTNAME} netconfaccess) |
Václav Kubernát | 74487df | 2020-06-04 01:29:28 +0200 | [diff] [blame] | 303 | elseif (${backend} STREQUAL "yang") |
| 304 | target_link_libraries(${TESTNAME} yangaccess) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 305 | else() |
| 306 | message(FATAL_ERROR "Unknown backend ${backend}") |
| 307 | endif() |
Václav Kubernát | 3ea893e | 2020-10-19 16:33:01 +0200 | [diff] [blame] | 308 | target_link_libraries(${TESTNAME} yangschema sysreposubscription proxydatastore PkgConfig::SYSREPO) |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 309 | |
| 310 | target_compile_definitions(${TESTNAME} PRIVATE ${backend}_BACKEND) |
Václav Kubernát | d1beedc | 2020-09-07 12:09:05 +0200 | [diff] [blame] | 311 | set_tests_properties(${TESTNAME} PROPERTIES FIXTURES_REQUIRED ${TESTNAME}_setup) |
| 312 | |
| 313 | add_test(NAME ${TESTNAME}_init COMMAND ${CMAKE_CURRENT_BINARY_DIR}/init_datastore.bash "${model}" "${backend}") |
| 314 | set_tests_properties(${TESTNAME}_init PROPERTIES FIXTURES_SETUP ${TESTNAME}_setup) |
| 315 | add_test(NAME ${TESTNAME}_cleanup COMMAND ${CMAKE_CURRENT_BINARY_DIR}/cleanup_datastore.bash "${backend}") |
| 316 | set_tests_properties(${TESTNAME}_cleanup PROPERTIES FIXTURES_CLEANUP ${TESTNAME}_setup) |
| 317 | |
| 318 | set_property(TEST ${TESTNAME} ${TESTNAME}_init ${TESTNAME}_cleanup APPEND PROPERTY ENVIRONMENT |
| 319 | "SYSREPO_REPOSITORY_PATH=${CMAKE_CURRENT_BINARY_DIR}/test_repositories/${TESTNAME}" |
| 320 | "SYSREPO_SHM_PREFIX=netconf-cli_${TESTNAME}" |
| 321 | "NETOPEER_SOCKET=${CMAKE_CURRENT_BINARY_DIR}/test_sockets/${TESTNAME}.sock" |
| 322 | ) |
| 323 | |
Václav Kubernát | 7d47864 | 2019-11-22 17:38:11 +0100 | [diff] [blame] | 324 | endfunction() |
| 325 | |
Václav Kubernát | 1acf4f1 | 2020-01-31 15:54:34 +0100 | [diff] [blame] | 326 | function(datastore_test name model) |
| 327 | datastore_test_impl(${name} ${model} sysrepo) |
| 328 | datastore_test_impl(${name} ${model} netconf) |
Václav Kubernát | 74487df | 2020-06-04 01:29:28 +0200 | [diff] [blame] | 329 | datastore_test_impl(${name} ${model} yang) |
Václav Kubernát | 8832481 | 2019-06-26 17:36:29 +0200 | [diff] [blame] | 330 | endfunction() |
| 331 | |
Václav Kubernát | d666296 | 2018-03-22 17:41:33 +0100 | [diff] [blame] | 332 | cli_test(cd) |
Václav Kubernát | 11afac7 | 2018-07-18 14:59:53 +0200 | [diff] [blame] | 333 | cli_test(ls) |
Václav Kubernát | b61336d | 2018-05-28 17:35:03 +0200 | [diff] [blame] | 334 | cli_test(presence_containers) |
Václav Kubernát | 0720424 | 2018-06-04 18:12:09 +0200 | [diff] [blame] | 335 | cli_test(leaf_editing) |
Václav Kubernát | 3a99f00 | 2020-03-31 02:27:41 +0200 | [diff] [blame] | 336 | target_link_libraries(test_leaf_editing leaf_data_type) |
Václav Kubernát | 0d4db44 | 2018-07-18 17:18:43 +0200 | [diff] [blame] | 337 | cli_test(yang) |
| 338 | target_link_libraries(test_yang yangschema) |
Václav Kubernát | 4108e0d | 2018-10-29 13:32:22 +0100 | [diff] [blame] | 339 | cli_test(utils) |
Jan Kundrát | 2b33536 | 2020-11-05 20:40:45 +0100 | [diff] [blame] | 340 | target_link_libraries(test_utils yangutils) |
Václav Kubernát | 4108e0d | 2018-10-29 13:32:22 +0100 | [diff] [blame] | 341 | cli_test(path_completion) |
Václav Kubernát | 5727242 | 2019-02-08 12:48:24 +0100 | [diff] [blame] | 342 | cli_test(command_completion) |
Václav Kubernát | 549b08f | 2020-05-14 22:19:36 +0200 | [diff] [blame] | 343 | cli_test(set_value_completion) |
| 344 | target_link_libraries(test_set_value_completion leaf_data_type) |
Václav Kubernát | f5f64f0 | 2019-03-19 17:15:47 +0100 | [diff] [blame] | 345 | cli_test(list_manipulation) |
Václav Kubernát | 5452ede | 2020-06-10 12:05:11 +0200 | [diff] [blame] | 346 | cli_test(interpreter) |
Václav Kubernát | 48e9dfa | 2020-07-08 10:55:12 +0200 | [diff] [blame] | 347 | target_link_libraries(test_interpreter proxydatastore) |
Václav Kubernát | 5395e71 | 2019-12-03 18:24:33 +0100 | [diff] [blame] | 348 | cli_test(path_utils) |
Václav Kubernát | 7edb537 | 2019-12-13 12:40:49 +0100 | [diff] [blame] | 349 | target_link_libraries(test_path_utils path) |
Václav Kubernát | 43908fb | 2020-01-02 19:05:51 +0100 | [diff] [blame] | 350 | cli_test(keyvalue_completion) |
Václav Kubernát | 3d787b1 | 2020-10-29 09:11:26 +0100 | [diff] [blame] | 351 | cli_test(prepare) |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 352 | |
Václav Kubernát | d1beedc | 2020-09-07 12:09:05 +0200 | [diff] [blame] | 353 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/tests/init_datastore.bash.in |
| 354 | ${CMAKE_CURRENT_BINARY_DIR}/init_datastore.bash @ONLY) |
| 355 | |
| 356 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/tests/cleanup_datastore.bash.in |
| 357 | ${CMAKE_CURRENT_BINARY_DIR}/cleanup_datastore.bash @ONLY) |
| 358 | |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 359 | if(DO_ENABLE_NETCONF_TESTS) |
| 360 | datastore_test(datastore_access ${CMAKE_CURRENT_SOURCE_DIR}/tests/example-schema.yang) |
| 361 | datastore_test(data_query ${CMAKE_CURRENT_SOURCE_DIR}/tests/example-schema.yang) |
| 362 | endif() |
Jan Kundrát | 5c80521 | 2018-03-02 13:57:12 +0100 | [diff] [blame] | 363 | endif() |
| 364 | |
Jan Kundrát | cf5c636 | 2020-01-16 22:54:47 +0100 | [diff] [blame] | 365 | option(WITH_PYTHON_BINDINGS "Create and install Python3 bindings for accessing datastores" OFF) |
| 366 | if(WITH_PYTHON_BINDINGS) |
| 367 | set(PYBIND11_CPP_STANDARD -std=c++17) |
| 368 | find_package(pybind11 REQUIRED) |
| 369 | pybind11_add_module(netconf_cli_py src/python_netconf.cpp) |
| 370 | target_link_libraries(netconf_cli_py PUBLIC netconfaccess) |
| 371 | |
| 372 | if(BUILD_TESTING) |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 373 | pybind11_add_module(sysrepo_subscription_py tests/mock/sysrepo_subscription_python.cpp) |
| 374 | target_link_libraries(sysrepo_subscription_py PUBLIC sysreposubscription utils) |
| 375 | |
Jan Kundrát | cf5c636 | 2020-01-16 22:54:47 +0100 | [diff] [blame] | 376 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/tests/python_netconfaccess.py |
Václav Kubernát | d1beedc | 2020-09-07 12:09:05 +0200 | [diff] [blame] | 377 | ${CMAKE_CURRENT_BINARY_DIR}/tests_python_netconfaccess.py COPYONLY) |
| 378 | |
Jan Kundrát | cf5c636 | 2020-01-16 22:54:47 +0100 | [diff] [blame] | 379 | add_test(NAME test_netconf_cli_py COMMAND ${PYTHON_EXECUTABLE} ${CMAKE_CURRENT_BINARY_DIR}/tests_python_netconfaccess.py) |
Václav Kubernát | d1beedc | 2020-09-07 12:09:05 +0200 | [diff] [blame] | 380 | set_tests_properties(test_netconf_cli_py PROPERTIES FIXTURES_REQUIRED test_netconf_cli_py_setup) |
| 381 | |
| 382 | add_test(NAME test_netconf_cli_py_init COMMAND ${CMAKE_CURRENT_BINARY_DIR}/init_datastore.bash ${CMAKE_CURRENT_SOURCE_DIR}/tests/example-schema.yang "netconf") |
| 383 | set_tests_properties(test_netconf_cli_py_init PROPERTIES FIXTURES_SETUP test_netconf_cli_py_setup) |
| 384 | add_test(NAME test_netconf_cli_py_cleanup COMMAND ${CMAKE_CURRENT_BINARY_DIR}/cleanup_datastore.bash "netconf") |
| 385 | set_tests_properties(test_netconf_cli_py_cleanup PROPERTIES FIXTURES_CLEANUP test_netconf_cli_py_setup) |
| 386 | |
| 387 | set_property(TEST test_netconf_cli_py test_netconf_cli_py_init test_netconf_cli_py_cleanup APPEND PROPERTY ENVIRONMENT |
| 388 | "SYSREPO_REPOSITORY_PATH=${CMAKE_CURRENT_BINARY_DIR}/test_repositories/test_netconf_cli_py" |
| 389 | "SYSREPO_SHM_PREFIX=netconf-cli_test_netconf_cli_py" |
| 390 | "NETOPEER_SOCKET=${CMAKE_CURRENT_BINARY_DIR}/test_sockets/test_netconf_cli_py.sock" |
| 391 | ) |
Jan Kundrát | cf5c636 | 2020-01-16 22:54:47 +0100 | [diff] [blame] | 392 | |
| 393 | set(sanitizer_active OFF) |
| 394 | # FIXME: this just sucks. The detection is very unreliable (one could use something like |
| 395 | # -fsanitize=address,undefined and we are screwed), and especially clang's query for preload |
| 396 | # is obviously unportable because we hardcode host's architecture. |
| 397 | # This is super-ugly. Perhaps it would be better just to outright disable everything, but hey, |
| 398 | # I need to test this on my laptop where I'm using ASAN by default, and it kinda-almost-works |
| 399 | # there with just one patch to libyang :). |
| 400 | if (${CMAKE_CXX_FLAGS} MATCHES "-fsanitize=address") |
| 401 | set(sanitizer_active ON) |
| 402 | set(gcc_sanitizer_preload libasan.so) |
| 403 | set(clang_sanitizer_preload libclang_rt.asan-x86_64.so) |
| 404 | endif() |
| 405 | |
| 406 | if (sanitizer_active) |
| 407 | if (CMAKE_CXX_COMPILER_ID STREQUAL "Clang") |
| 408 | execute_process(COMMAND ${CMAKE_CXX_COMPILER} -print-file-name=${clang_sanitizer_preload} |
| 409 | OUTPUT_VARIABLE LIBxSAN_FULL_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) |
| 410 | elseif (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") |
| 411 | execute_process(COMMAND ${CMAKE_CXX_COMPILER} -print-file-name=${gcc_sanitizer_preload} |
| 412 | OUTPUT_VARIABLE LIBxSAN_FULL_PATH OUTPUT_STRIP_TRAILING_WHITESPACE) |
| 413 | else() |
| 414 | message(ERROR "Cannot determine correct sanitizer library for LD_PRELOAD") |
| 415 | endif() |
| 416 | set_property(TEST test_netconf_cli_py APPEND PROPERTY ENVIRONMENT |
| 417 | LD_PRELOAD=${LIBxSAN_FULL_PATH} |
| 418 | ASAN_OPTIONS=detect_leaks=0 # they look harmless, but they are annoying |
| 419 | ) |
| 420 | endif() |
| 421 | endif() |
| 422 | endif() |
| 423 | |
Jan Kundrát | 608818b | 2018-03-02 13:43:53 +0100 | [diff] [blame] | 424 | if(WITH_DOCS) |
| 425 | set(doxyfile_in ${CMAKE_CURRENT_SOURCE_DIR}/Doxyfile.in) |
| 426 | set(doxyfile ${CMAKE_CURRENT_BINARY_DIR}/Doxyfile) |
| 427 | configure_file(${doxyfile_in} ${doxyfile} @ONLY) |
| 428 | add_custom_target(doc |
| 429 | COMMAND ${DOXYGEN_EXECUTABLE} ${doxyfile} |
| 430 | WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} |
| 431 | COMMENT "Generating API documentation with Doxygen" |
| 432 | VERBATIM |
| 433 | SOURCES ${doxyfile_in} |
| 434 | ) |
| 435 | endif() |
Jan Kundrát | 10f4990 | 2018-05-22 17:01:45 +0200 | [diff] [blame] | 436 | |
Jan Kundrát | bba5252 | 2020-11-11 17:40:31 +0100 | [diff] [blame] | 437 | install(TARGETS ${cli_targets} |
Jan Kundrát | 10f4990 | 2018-05-22 17:01:45 +0200 | [diff] [blame] | 438 | RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}/) |