2015-09-03 20:10:50 +00:00
|
|
|
# QTest based tests
|
2016-04-05 17:22:00 +00:00
|
|
|
qt5_add_resources(SUBSURFACE_TEST_RESOURCES ../subsurface.qrc)
|
|
|
|
|
2017-02-24 06:52:07 +00:00
|
|
|
# Access test data (dive folder) from SUBSURFACE_SOURCE by default.
|
|
|
|
# In cross compilation cases or when test will not be executed at build time
|
|
|
|
# a differnt value can be set via cmake -DSUBSURFACE_TEST_DATA.
|
|
|
|
if(NOT SUBSURFACE_TEST_DATA)
|
2017-02-25 15:52:22 +00:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
|
|
# For windows case we expect tests to be executed
|
|
|
|
# with WORKING_DIRECTORY pointing to folder where test data can be found
|
|
|
|
set(SUBSURFACE_TEST_DATA .)
|
|
|
|
else()
|
|
|
|
set(SUBSURFACE_TEST_DATA ${SUBSURFACE_SOURCE})
|
|
|
|
endif()
|
2017-02-24 06:52:07 +00:00
|
|
|
endif()
|
|
|
|
|
2016-04-05 17:22:00 +00:00
|
|
|
add_library(RESOURCE_LIBRARY STATIC ${SUBSURFACE_TEST_RESOURCES})
|
|
|
|
|
2017-02-25 15:52:22 +00:00
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
|
|
|
|
|
|
# Prepare a staging_tests folder
|
|
|
|
# Test can run accessing data and dependecies for build time testing
|
|
|
|
# or can be deployed for target testing
|
|
|
|
# It inludes:
|
|
|
|
# - test data
|
|
|
|
# - test binaries (see TEST macro)
|
|
|
|
# - test binaries dependencies (see TEST macro)
|
|
|
|
set(WINDOWS_STAGING_TESTS ${CMAKE_BINARY_DIR}/staging_tests)
|
|
|
|
install(DIRECTORY ${SUBSURFACE_SOURCE}/dives DESTINATION ${WINDOWS_STAGING_TESTS})
|
|
|
|
|
|
|
|
# Check if we can run tests locally using wine
|
|
|
|
# Add a fake test used to ensure data is deployed to WINDOWS_STAGING_TESTS before running
|
|
|
|
find_program(WINE_PROGRAM wine)
|
|
|
|
if(WINE_PROGRAM)
|
|
|
|
add_test(
|
|
|
|
NAME InstallTestsDataAndDependencies
|
|
|
|
COMMAND "${CMAKE_COMMAND}" --build ${CMAKE_CURRENT_BINARY_DIR} --target install
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
# Helper macro TEST used to created rules to build, link, install and run tests
|
2015-09-03 20:10:50 +00:00
|
|
|
macro(TEST NAME FILE)
|
2016-04-05 17:22:00 +00:00
|
|
|
add_executable(${NAME} ${FILE} )
|
2017-02-25 15:52:22 +00:00
|
|
|
target_link_libraries(
|
|
|
|
${NAME}
|
|
|
|
subsurface_corelib
|
|
|
|
RESOURCE_LIBRARY
|
|
|
|
${QT_TEST_LIBRARIES}
|
|
|
|
${SUBSURFACE_LINK_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
|
|
# Re-install dependencies in WINDOWS_STAGING_TESTS (and not in WINDOWSSTAGING)
|
|
|
|
# to avoid packing testing related dlls in the installer
|
2017-03-11 04:41:56 +00:00
|
|
|
install(CODE "execute_process(COMMAND ${CMAKE_COMMAND} -DCMAKE_C_COMPILER=${CMAKE_C_COMPILER} -DSUBSURFACE_TARGET=${NAME} -DSUBSURFACE_SOURCE=${SUBSURFACE_SOURCE} -DSTAGING=${WINDOWS_STAGING_TESTS} -P ${CMAKE_SOURCE_DIR}/cmake/Modules/dlllist.cmake WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR})")
|
2017-02-25 15:52:22 +00:00
|
|
|
|
|
|
|
# Run test using wine
|
|
|
|
if(WINE_PROGRAM)
|
|
|
|
add_test(
|
|
|
|
NAME ${NAME}
|
|
|
|
COMMAND "$<TARGET_FILE:${NAME}>"
|
|
|
|
WORKING_DIRECTORY ${WINDOWS_STAGING_TESTS}
|
|
|
|
)
|
|
|
|
# Set WINEPATH (%PATH%) to WINDOWS_STAGING_TESTS allowing wine to find dlls
|
|
|
|
# WINEDEBUG=-all is used to avoid anoying winde debug outputs
|
|
|
|
set_tests_properties(${NAME} PROPERTIES ENVIRONMENT "WINEPATH=${WINDOWS_STAGING_TESTS};WINEDEBUG=-all")
|
|
|
|
set_tests_properties(${NAME} PROPERTIES DEPENDS PrepareTests)
|
|
|
|
endif()
|
|
|
|
else()
|
|
|
|
add_test(NAME ${NAME} COMMAND $<TARGET_FILE:${NAME}>)
|
|
|
|
endif()
|
2015-09-03 20:10:50 +00:00
|
|
|
endmacro()
|
|
|
|
|
|
|
|
enable_testing()
|
|
|
|
add_definitions(-g)
|
2017-02-24 06:52:07 +00:00
|
|
|
add_definitions(-DSUBSURFACE_TEST_DATA="${SUBSURFACE_TEST_DATA}")
|
2017-02-25 15:52:22 +00:00
|
|
|
|
2018-07-07 16:55:24 +00:00
|
|
|
# Build QML test runner
|
2018-07-12 16:24:38 +00:00
|
|
|
# add_executable demands relative path, therefore ../
|
|
|
|
add_executable(TestQML testqml.cpp ../subsurface-helper.cpp )
|
2018-07-07 16:55:24 +00:00
|
|
|
target_link_libraries(
|
|
|
|
TestQML
|
|
|
|
subsurface_corelib
|
|
|
|
RESOURCE_LIBRARY
|
|
|
|
${QT_TEST_LIBRARIES}
|
|
|
|
${SUBSURFACE_LINK_LIBRARIES}
|
|
|
|
)
|
|
|
|
|
|
|
|
# SSRF test cases (TBD, convert to standard qTest setup)
|
2015-09-03 20:10:50 +00:00
|
|
|
TEST(TestUnitConversion testunitconversion.cpp)
|
|
|
|
TEST(TestProfile testprofile.cpp)
|
|
|
|
TEST(TestGpsCoords testgpscoords.cpp)
|
|
|
|
TEST(TestParse testparse.cpp)
|
|
|
|
TEST(TestPlan testplan.cpp)
|
|
|
|
TEST(TestDiveSiteDuplication testdivesiteduplication.cpp)
|
|
|
|
TEST(TestRenumber testrenumber.cpp)
|
|
|
|
TEST(TestGitStorage testgitstorage.cpp)
|
2016-08-28 23:11:29 +00:00
|
|
|
TEST(TestPreferences testpreferences.cpp)
|
2017-02-21 09:27:31 +00:00
|
|
|
TEST(TestPicture testpicture.cpp)
|
2017-02-22 01:23:19 +00:00
|
|
|
TEST(TestMerge testmerge.cpp)
|
2018-04-09 08:09:34 +00:00
|
|
|
TEST(TestTagList testtaglist.cpp)
|
2018-07-15 16:58:22 +00:00
|
|
|
|
|
|
|
TEST(TestQPrefAnimations testqPrefAnimations.cpp)
|
2018-07-14 15:31:51 +00:00
|
|
|
TEST(TestQPrefCloudStorage testqPrefCloudStorage.cpp)
|
2018-07-15 16:58:22 +00:00
|
|
|
TEST(TestQPrefDisplay testqPrefDisplay.cpp)
|
2018-07-22 15:02:26 +00:00
|
|
|
TEST(TestQPrefDiveComputer testqPrefDiveComputer.cpp)
|
2018-07-23 16:14:43 +00:00
|
|
|
TEST(TestQPrefFacebook testqPrefFacebook.cpp)
|
2018-07-27 20:22:51 +00:00
|
|
|
TEST(TestQPrefProxy testqPrefProxy.cpp)
|
2018-07-07 16:55:24 +00:00
|
|
|
add_test(NAME TestQML COMMAND $<TARGET_FILE:TestQML> ${SUBSURFACE_SOURCE}/tests)
|
2017-02-21 09:27:31 +00:00
|
|
|
|
2015-09-03 20:10:50 +00:00
|
|
|
|
|
|
|
add_custom_target(check COMMAND ${CMAKE_CTEST_COMMAND}
|
|
|
|
DEPENDS
|
|
|
|
TestUnitConversion
|
|
|
|
TestProfile
|
|
|
|
TestGpsCoords
|
|
|
|
TestParse
|
|
|
|
TestGitStorage
|
|
|
|
TestPlan
|
|
|
|
TestDiveSiteDuplication
|
2016-08-28 23:11:29 +00:00
|
|
|
TestPreferences
|
2016-08-28 22:26:42 +00:00
|
|
|
TestRenumber
|
2017-02-21 09:27:31 +00:00
|
|
|
TestPicture
|
2017-02-22 01:23:19 +00:00
|
|
|
TestMerge
|
2018-04-09 08:09:34 +00:00
|
|
|
TestTagList
|
2018-07-15 16:58:22 +00:00
|
|
|
|
|
|
|
TestQPrefAnimations
|
2018-07-14 15:31:51 +00:00
|
|
|
TestQPrefCloudStorage
|
2018-07-15 16:58:22 +00:00
|
|
|
TestQPrefDisplay
|
2018-07-22 15:02:26 +00:00
|
|
|
TestQPrefDiveComputer
|
2018-07-23 16:14:43 +00:00
|
|
|
TestQPrefFacebook
|
2018-07-27 20:22:51 +00:00
|
|
|
TestQPrefProxy
|
2018-07-07 16:55:24 +00:00
|
|
|
TestQML
|
2016-08-28 22:26:42 +00:00
|
|
|
)
|
2017-02-25 15:27:43 +00:00
|
|
|
|
|
|
|
# useful for debugging CMake issues
|
|
|
|
# print_all_variables()
|