2018-07-26 15:37:10 -07:00
|
|
|
# Use the IN_LIST operator if available (for gtest)
|
|
|
|
|
if(POLICY CMP0057)
|
|
|
|
|
cmake_policy(SET CMP0057 NEW)
|
|
|
|
|
endif()
|
|
|
|
|
|
2018-03-12 10:37:56 -07:00
|
|
|
# For now, Google Test is NOT required */
|
|
|
|
|
find_package(GTest)
|
|
|
|
|
|
|
|
|
|
# If not found, print a status message and return
|
|
|
|
|
if(NOT GTEST_FOUND)
|
|
|
|
|
message(STATUS "Install Google Test to enable additional unit testing")
|
|
|
|
|
return ()
|
|
|
|
|
endif()
|
|
|
|
|
|
|
|
|
|
# Unit tests - C common header methods
|
2018-07-20 10:08:18 -07:00
|
|
|
add_executable(test_unit_common_h api/api_common_h_unit.cxx)
|
2018-07-26 15:37:10 -07:00
|
|
|
target_link_libraries(test_unit_common_h ${GTEST_BOTH_LIBRARIES} mraa)
|
2018-07-20 10:08:18 -07:00
|
|
|
target_include_directories(test_unit_common_h
|
2018-03-12 10:37:56 -07:00
|
|
|
PRIVATE "${CMAKE_SOURCE_DIR}" "${CMAKE_SOURCE_DIR}/api" "${CMAKE_SOURCE_DIR}/api/mraa")
|
2018-07-26 15:37:10 -07:00
|
|
|
gtest_add_tests(test_unit_common_h "" api/api_common_h_unit.cxx)
|
2018-07-20 10:08:18 -07:00
|
|
|
list(APPEND GTEST_UNIT_TEST_TARGETS test_unit_common_h)
|
2018-03-12 10:37:56 -07:00
|
|
|
|
|
|
|
|
# Unit tests - C++ common header methods
|
2018-07-20 10:08:18 -07:00
|
|
|
add_executable(test_unit_common_hpp api/api_common_hpp_unit.cxx)
|
2018-07-26 15:37:10 -07:00
|
|
|
target_link_libraries(test_unit_common_hpp ${GTEST_BOTH_LIBRARIES} mraa)
|
2018-07-20 10:08:18 -07:00
|
|
|
target_include_directories(test_unit_common_hpp PRIVATE "${CMAKE_SOURCE_DIR}/api")
|
2018-07-26 15:37:10 -07:00
|
|
|
gtest_add_tests(test_unit_common_hpp "" api/api_common_hpp_unit.cxx)
|
2018-07-20 10:08:18 -07:00
|
|
|
list(APPEND GTEST_UNIT_TEST_TARGETS test_unit_common_hpp)
|
2018-03-12 10:37:56 -07:00
|
|
|
|
2018-07-20 10:08:18 -07:00
|
|
|
if (FTDI4222 AND USBPLAT)
|
2018-06-01 14:59:39 -07:00
|
|
|
# Unit tests - Test platform extenders (as much as possible)
|
2018-07-20 10:08:18 -07:00
|
|
|
add_executable(test_unit_ftdi4222 platform_extender/platform_extender.cxx)
|
2018-07-26 15:37:10 -07:00
|
|
|
target_link_libraries(test_unit_ftdi4222 ${GTEST_BOTH_LIBRARIES} mraa-platform-ft4222 dl)
|
2018-07-20 10:08:18 -07:00
|
|
|
target_include_directories(test_unit_ftdi4222 PRIVATE "${PROJECT_SOURCE_DIR}/api"
|
2018-06-01 14:59:39 -07:00
|
|
|
"${PROJECT_SOURCE_DIR}/api/mraa"
|
|
|
|
|
"${PROJECT_SOURCE_DIR}/include")
|
2018-07-26 15:37:10 -07:00
|
|
|
gtest_add_tests(test_unit_ftdi4222 "" platform_extender/platform_extender.cxx)
|
2018-07-20 10:08:18 -07:00
|
|
|
list(APPEND GTEST_UNIT_TEST_TARGETS test_unit_ftdi4222)
|
2018-06-01 14:59:39 -07:00
|
|
|
endif ()
|
|
|
|
|
|
2018-07-20 10:08:18 -07:00
|
|
|
# Unit tests - test C initio header methods on MOCK platform only
|
|
|
|
|
if (DETECTED_ARCH STREQUAL "MOCK")
|
|
|
|
|
add_executable(test_unit_ioinit_h api/mraa_initio_h_unit.cxx)
|
2018-07-26 15:37:10 -07:00
|
|
|
target_link_libraries(test_unit_ioinit_h ${GTEST_BOTH_LIBRARIES} mraa)
|
2018-07-20 10:08:18 -07:00
|
|
|
target_include_directories(test_unit_ioinit_h PRIVATE "${CMAKE_SOURCE_DIR}/api")
|
2018-07-26 15:37:10 -07:00
|
|
|
gtest_add_tests(test_unit_ioinit_h "" api/mraa_initio_h_unit.cxx)
|
2018-07-20 10:08:18 -07:00
|
|
|
list(APPEND GTEST_UNIT_TEST_TARGETS test_unit_ioinit_h)
|
2018-07-26 15:37:10 -07:00
|
|
|
|
|
|
|
|
add_executable(test_unit_ioinit_hpp api/mraa_initio_hpp_unit.cxx)
|
|
|
|
|
target_link_libraries(test_unit_ioinit_hpp ${GTEST_BOTH_LIBRARIES} mraa)
|
|
|
|
|
target_include_directories(test_unit_ioinit_hpp PRIVATE "${CMAKE_SOURCE_DIR}/api")
|
|
|
|
|
gtest_add_tests(test_unit_ioinit_hpp "" api/mraa_initio_hpp_unit.cxx)
|
|
|
|
|
list(APPEND GTEST_UNIT_TEST_TARGETS test_unit_ioinit_hpp)
|
2018-07-20 10:08:18 -07:00
|
|
|
endif()
|
2018-03-21 15:44:36 +02:00
|
|
|
|
2018-07-20 10:08:18 -07:00
|
|
|
# Add a target for all unit tests
|
|
|
|
|
add_custom_target(test_unit_all ALL DEPENDS ${GTEST_UNIT_TEST_TARGETS})
|