CMakeLists.txt 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. include_directories(${PROJECT_SOURCE_DIR}/include)
  2. include_directories(${PROJECT_SOURCE_DIR}/deps)
  3. include_directories(${PROJECT_SOURCE_DIR}/src)
  4. include_directories(${PROJECT_SOURCE_DIR}/plugins)
  5. include_directories(${PROJECT_BINARY_DIR}/src_generated)
  6. include_directories(${CHECK_INCLUDE_DIRS})
  7. find_package(Check REQUIRED)
  8. find_package(Threads REQUIRED)
  9. set(LIBS ${CHECK_LIBRARIES} ${open62541_LIBRARIES})
  10. if(NOT WIN32)
  11. list(APPEND LIBS pthread m)
  12. if (NOT APPLE)
  13. list(APPEND LIBS rt subunit)
  14. endif()
  15. else()
  16. list(APPEND LIBS ws2_32)
  17. endif()
  18. if(UA_ENABLE_MULTITHREADING)
  19. list(APPEND LIBS urcu-cds urcu urcu-common)
  20. endif()
  21. if(CMAKE_COMPILER_IS_GNUCC OR "x${CMAKE_C_COMPILER_ID}" STREQUAL "xClang")
  22. add_definitions(-Wno-sign-conversion)
  23. endif()
  24. # Valgrind definition
  25. set(UA_TEST_WITH_VALGRIND ON)
  26. SET(VALGRIND_FLAGS --quiet --trace-children=yes --leak-check=full)
  27. macro(add_test_valgrind TEST_NAME)
  28. IF(UA_TEST_WITH_VALGRIND)
  29. add_test(${TEST_NAME}
  30. valgrind --error-exitcode=1 ${VALGRIND_FLAGS} ${ARGN} )
  31. ELSE()
  32. add_test(${TEST_NAME} ${ARGN})
  33. ENDIF()
  34. endmacro()
  35. # the unit test are built directly on the open62541 object files. so they can
  36. # access symbols that are hidden/not exported to the shared library
  37. add_executable(check_types_builtin check_types_builtin.c $<TARGET_OBJECTS:open62541-object>)
  38. target_link_libraries(check_types_builtin ${LIBS})
  39. add_test_valgrind(types_builtin ${CMAKE_CURRENT_BINARY_DIR}/check_types_builtin)
  40. add_executable(check_types_memory check_types_memory.c $<TARGET_OBJECTS:open62541-object>)
  41. target_link_libraries(check_types_memory ${LIBS})
  42. add_test_valgrind(types_memory ${CMAKE_CURRENT_BINARY_DIR}/check_types_memory)
  43. add_executable(check_types_range check_types_range.c $<TARGET_OBJECTS:open62541-object>)
  44. target_link_libraries(check_types_range ${LIBS})
  45. add_test_valgrind(types_range ${CMAKE_CURRENT_BINARY_DIR}/check_types_range)
  46. add_executable(check_chunking check_chunking.c $<TARGET_OBJECTS:open62541-object>)
  47. target_link_libraries(check_chunking ${LIBS})
  48. add_test_valgrind(chunking ${CMAKE_CURRENT_BINARY_DIR}/check_chunking)
  49. add_executable(check_services_view check_services_view.c $<TARGET_OBJECTS:open62541-object>)
  50. target_link_libraries(check_services_view ${LIBS})
  51. add_test_valgrind(services_view ${CMAKE_CURRENT_BINARY_DIR}/check_services_view)
  52. add_executable(check_services_attributes check_services_attributes.c $<TARGET_OBJECTS:open62541-object>)
  53. target_link_libraries(check_services_attributes ${LIBS})
  54. add_test_valgrind(services_attributes ${CMAKE_CURRENT_BINARY_DIR}/check_services_attributes)
  55. add_executable(check_services_nodemanagement check_services_nodemanagement.c $<TARGET_OBJECTS:open62541-object>)
  56. target_link_libraries(check_services_nodemanagement ${LIBS})
  57. add_test_valgrind(services_nodemanagement ${CMAKE_CURRENT_BINARY_DIR}/check_services_nodemanagement)
  58. add_executable(check_services_subscriptions check_services_subscriptions.c $<TARGET_OBJECTS:open62541-object>)
  59. target_link_libraries(check_services_subscriptions ${LIBS})
  60. add_test_valgrind(check_services_subscriptions ${CMAKE_CURRENT_BINARY_DIR}/check_services_subscriptions)
  61. add_executable(check_nodestore check_nodestore.c $<TARGET_OBJECTS:open62541-object>)
  62. target_link_libraries(check_nodestore ${LIBS})
  63. add_test_valgrind(nodestore ${CMAKE_CURRENT_BINARY_DIR}/check_nodestore)
  64. add_executable(check_session check_session.c $<TARGET_OBJECTS:open62541-object>)
  65. target_link_libraries(check_session ${LIBS})
  66. add_test_valgrind(session ${CMAKE_CURRENT_BINARY_DIR}/check_session)
  67. add_executable(check_server_jobs check_server_jobs.c $<TARGET_OBJECTS:open62541-object>)
  68. target_link_libraries(check_server_jobs ${LIBS})
  69. add_test_valgrind(check_server_jobs ${CMAKE_CURRENT_BINARY_DIR}/check_server_jobs)
  70. add_executable(check_server_userspace check_server_userspace.c $<TARGET_OBJECTS:open62541-object>)
  71. target_link_libraries(check_server_userspace ${LIBS})
  72. add_test_valgrind(check_server_userspace ${CMAKE_CURRENT_BINARY_DIR}/check_server_userspace)
  73. # test with canned interactions from files
  74. add_custom_command(OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/client_HELOPN.bin
  75. ${CMAKE_CURRENT_BINARY_DIR}/client_CLO.bin
  76. ${CMAKE_CURRENT_BINARY_DIR}/client_CreateActivateSession.bin
  77. ${CMAKE_CURRENT_BINARY_DIR}/client_Browse.bin
  78. ${CMAKE_CURRENT_BINARY_DIR}/client_Read.bin
  79. ${CMAKE_CURRENT_BINARY_DIR}/client_Write.bin
  80. PRE_BUILD
  81. COMMAND python ${PROJECT_SOURCE_DIR}/tools/hex2bin.py
  82. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_HELOPN.hex
  83. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_CLO.hex
  84. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_CreateActivateSession.hex
  85. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_Browse.hex
  86. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_Read.hex
  87. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_Write.hex
  88. DEPENDS ${PROJECT_SOURCE_DIR}/tools/hex2bin.py
  89. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_HELOPN.hex
  90. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_CLO.hex
  91. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_CreateActivateSession.hex
  92. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_Browse.hex
  93. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_Read.hex
  94. ${CMAKE_CURRENT_SOURCE_DIR}/dumps/client_Write.hex)
  95. add_custom_target(client_HELOPN.bin DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/client_HELOPN.bin")
  96. add_custom_target(client_CreateActivateSession.bin DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/client_CreateActivateSession.bin")
  97. add_executable(check_server_binary_messages check_server_binary_messages.c testing_networklayers.c $<TARGET_OBJECTS:open62541-object>)
  98. target_include_directories(check_server_binary_messages PRIVATE ${PROJECT_SOURCE_DIR}/src/server)
  99. target_link_libraries(check_server_binary_messages ${LIBS})
  100. add_dependencies(check_server_binary_messages client_HELOPN.bin)
  101. add_test_valgrind(check_server_binary_messages_browse ${CMAKE_CURRENT_BINARY_DIR}/check_server_binary_messages
  102. ${CMAKE_CURRENT_BINARY_DIR}/client_HELOPN.bin
  103. ${CMAKE_CURRENT_BINARY_DIR}/client_CreateActivateSession.bin
  104. ${CMAKE_CURRENT_BINARY_DIR}/client_Browse.bin
  105. ${CMAKE_CURRENT_BINARY_DIR}/client_CLO.bin)
  106. add_test_valgrind(check_server_binary_messages_read ${CMAKE_CURRENT_BINARY_DIR}/check_server_binary_messages
  107. ${CMAKE_CURRENT_BINARY_DIR}/client_HELOPN.bin
  108. ${CMAKE_CURRENT_BINARY_DIR}/client_CreateActivateSession.bin
  109. ${CMAKE_CURRENT_BINARY_DIR}/client_Read.bin
  110. ${CMAKE_CURRENT_BINARY_DIR}/client_CLO.bin)
  111. add_test_valgrind(check_server_binary_messages_write ${CMAKE_CURRENT_BINARY_DIR}/check_server_binary_messages
  112. ${CMAKE_CURRENT_BINARY_DIR}/client_HELOPN.bin
  113. ${CMAKE_CURRENT_BINARY_DIR}/client_CreateActivateSession.bin
  114. ${CMAKE_CURRENT_BINARY_DIR}/client_Write.bin
  115. ${CMAKE_CURRENT_BINARY_DIR}/client_CLO.bin)
  116. add_executable(check_client check_client.c $<TARGET_OBJECTS:open62541-object>)
  117. target_link_libraries(check_client ${LIBS})
  118. add_test_valgrind(check_client ${CMAKE_CURRENT_BINARY_DIR}/check_client)
  119. add_executable(check_client_subscriptions check_client_subscriptions.c $<TARGET_OBJECTS:open62541-object>)
  120. target_link_libraries(check_client_subscriptions ${LIBS})
  121. add_test_valgrind(check_client_subscriptions ${CMAKE_CURRENT_BINARY_DIR}/check_client_subscriptions)
  122. add_executable(check_utils check_utils.c $<TARGET_OBJECTS:open62541-object>)
  123. target_link_libraries(check_utils ${LIBS})
  124. add_test_valgrind(check_utils ${CMAKE_CURRENT_BINARY_DIR}/check_utils)