2022-01-21 12:00:36 +08:00
|
|
|
add_library(sfml-test-main STATIC
|
|
|
|
DoctestMain.cpp
|
|
|
|
TestUtilities/SystemUtil.hpp
|
|
|
|
TestUtilities/SystemUtil.cpp
|
|
|
|
TestUtilities/WindowUtil.hpp
|
|
|
|
TestUtilities/WindowUtil.cpp
|
|
|
|
TestUtilities/GraphicsUtil.hpp
|
|
|
|
TestUtilities/GraphicsUtil.cpp
|
|
|
|
)
|
2022-02-28 12:37:24 +08:00
|
|
|
target_include_directories(sfml-test-main SYSTEM PUBLIC "${PROJECT_SOURCE_DIR}/extlibs/headers")
|
|
|
|
target_include_directories(sfml-test-main PUBLIC TestUtilities)
|
2022-01-21 12:00:36 +08:00
|
|
|
target_link_libraries(sfml-test-main PUBLIC SFML::System)
|
2022-05-05 01:11:07 +08:00
|
|
|
set_target_warnings(sfml-test-main)
|
2018-08-19 07:30:53 +08:00
|
|
|
|
|
|
|
SET(SYSTEM_SRC
|
2022-01-22 12:09:49 +08:00
|
|
|
System/Angle.cpp
|
|
|
|
System/Clock.cpp
|
2022-04-22 06:00:51 +08:00
|
|
|
System/Err.cpp
|
2022-01-22 12:09:49 +08:00
|
|
|
System/FileInputStream.cpp
|
|
|
|
System/Time.cpp
|
|
|
|
System/Vector2.cpp
|
|
|
|
System/Vector3.cpp
|
2015-04-29 03:54:03 +08:00
|
|
|
)
|
2021-12-29 13:28:50 +08:00
|
|
|
sfml_add_test(test-sfml-system "${SYSTEM_SRC}" SFML::System)
|
2015-04-29 03:54:03 +08:00
|
|
|
|
2022-03-25 01:49:00 +08:00
|
|
|
SET(WINDOW_SRC
|
|
|
|
Window/ContextSettings.cpp
|
|
|
|
Window/VideoMode.cpp
|
|
|
|
)
|
|
|
|
sfml_add_test(test-sfml-window "${WINDOW_SRC}" SFML::Window)
|
2018-08-19 07:30:53 +08:00
|
|
|
|
2022-03-25 01:49:00 +08:00
|
|
|
SET(GRAPHICS_SRC
|
|
|
|
Graphics/BlendMode.cpp
|
2022-04-09 08:52:48 +08:00
|
|
|
Graphics/CircleShape.cpp
|
2022-03-25 01:49:00 +08:00
|
|
|
Graphics/Color.cpp
|
2022-05-22 12:43:10 +08:00
|
|
|
Graphics/Glyph.cpp
|
2022-03-25 01:49:00 +08:00
|
|
|
Graphics/Rect.cpp
|
2022-04-09 08:33:50 +08:00
|
|
|
Graphics/RectangleShape.cpp
|
2022-03-17 00:05:48 +08:00
|
|
|
Graphics/Shape.cpp
|
2022-05-26 02:36:06 +08:00
|
|
|
Graphics/RenderStates.cpp
|
2022-03-25 01:49:00 +08:00
|
|
|
Graphics/Transform.cpp
|
|
|
|
Graphics/Transformable.cpp
|
|
|
|
Graphics/Vertex.cpp
|
|
|
|
Graphics/VertexArray.cpp
|
2022-05-22 13:03:49 +08:00
|
|
|
Graphics/View.cpp
|
2022-03-25 01:49:00 +08:00
|
|
|
)
|
|
|
|
sfml_add_test(test-sfml-graphics "${GRAPHICS_SRC}" SFML::Graphics)
|
2018-08-19 07:30:53 +08:00
|
|
|
|
2022-03-25 01:49:00 +08:00
|
|
|
SET(NETWORK_SRC
|
|
|
|
Network/Packet.cpp
|
|
|
|
)
|
|
|
|
sfml_add_test(test-sfml-network "${NETWORK_SRC}" SFML::Network)
|
2021-12-06 06:27:48 +08:00
|
|
|
|
2022-03-25 01:49:00 +08:00
|
|
|
SET(AUDIO_SRC
|
|
|
|
Audio/Dummy.cpp # TODO: Remove when there are real tests
|
|
|
|
)
|
|
|
|
sfml_add_test(test-sfml-audio "${AUDIO_SRC}" SFML::Audio)
|
2022-02-06 12:38:28 +08:00
|
|
|
|
2018-08-20 02:04:11 +08:00
|
|
|
# Automatically run the tests at the end of the build
|
2018-08-21 05:49:56 +08:00
|
|
|
add_custom_target(runtests ALL
|
2022-02-06 12:38:28 +08:00
|
|
|
DEPENDS test-sfml-system test-sfml-window test-sfml-graphics test-sfml-network test-sfml-audio
|
2018-08-19 07:30:53 +08:00
|
|
|
)
|
2018-11-30 02:38:27 +08:00
|
|
|
|
2022-02-06 12:38:28 +08:00
|
|
|
if(SFML_OS_WINDOWS AND NOT SFML_USE_SYSTEM_DEPS)
|
|
|
|
# Copy the binaries of SFML dependencies
|
|
|
|
list(APPEND BINARIES
|
|
|
|
"openal32.dll"
|
|
|
|
)
|
|
|
|
|
|
|
|
foreach (BINARY ${BINARIES})
|
|
|
|
if(ARCH_32BITS)
|
|
|
|
list(APPEND BINARY_PATHS "${PROJECT_SOURCE_DIR}/extlibs/bin/x86/${BINARY}")
|
|
|
|
elseif(ARCH_64BITS)
|
|
|
|
list(APPEND BINARY_PATHS "${PROJECT_SOURCE_DIR}/extlibs/bin/x64/${BINARY}")
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
|
|
|
|
add_custom_command(TARGET runtests
|
|
|
|
COMMENT "Copy binaries"
|
|
|
|
POST_BUILD COMMAND "${CMAKE_COMMAND}" -E copy ${BINARY_PATHS} "$<TARGET_FILE_DIR:test-sfml-system>"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(SFML_ENABLE_COVERAGE AND SFML_COMPILER_MSVC)
|
|
|
|
# Try to find and use OpenCppCoverage for coverage reporting when building with MSVC
|
|
|
|
find_program(OpenCppCoverage_BINARY "OpenCppCoverage.exe")
|
|
|
|
|
|
|
|
if(OpenCppCoverage_BINARY)
|
|
|
|
execute_process(COMMAND "${OpenCppCoverage_BINARY}" --help ERROR_VARIABLE OpenCppCoverage_HELP_OUTPUT OUTPUT_QUIET)
|
|
|
|
|
|
|
|
if(OpenCppCoverage_HELP_OUTPUT MATCHES "OpenCppCoverage Version: ([.0-9]+)")
|
|
|
|
set(OpenCppCoverage_VERSION "${CMAKE_MATCH_1}")
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
|
|
|
|
find_package_handle_standard_args(OpenCppCoverage
|
|
|
|
REQUIRED_VARS OpenCppCoverage_BINARY
|
|
|
|
VERSION_VAR OpenCppCoverage_VERSION
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(SFML_ENABLE_COVERAGE AND OpenCppCoverage_FOUND)
|
|
|
|
# Use OpenCppCoverage
|
|
|
|
message(STATUS "Using OpenCppCoverage to generate coverage report")
|
|
|
|
|
|
|
|
string(REPLACE "/" "\\" COVERAGE_EXCLUDE "${CMAKE_CTEST_COMMAND}")
|
|
|
|
string(REPLACE "/" "\\" COVERAGE_SRC "${PROJECT_SOURCE_DIR}/src")
|
|
|
|
string(REPLACE "/" "\\" COVERAGE_INCLUDE "${PROJECT_SOURCE_DIR}/include")
|
|
|
|
|
|
|
|
add_custom_command(TARGET runtests
|
|
|
|
COMMENT "Run tests"
|
|
|
|
POST_BUILD COMMAND "${OpenCppCoverage_BINARY}" ARGS --quiet --export_type cobertura:"${CMAKE_BINARY_DIR}/coverage.out" --cover_children --excluded_modules "${COVERAGE_EXCLUDE}" --sources "${COVERAGE_SRC}" --sources "${COVERAGE_INCLUDE}" -- "${CMAKE_CTEST_COMMAND}" --output-on-failure -C $<CONFIG>
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
# Run tests without a coverage runner
|
|
|
|
add_custom_command(TARGET runtests
|
|
|
|
COMMENT "Run tests"
|
|
|
|
POST_BUILD COMMAND "${CMAKE_CTEST_COMMAND}" --output-on-failure -C $<CONFIG>
|
|
|
|
)
|
|
|
|
endif()
|