Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cmake
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2017-03-13 14:30:47 +0300
committerGhostkeeper <rubend@tutanota.com>2017-03-13 14:30:47 +0300
commitecc973951eaee43ae368600d4e4f5c3651f6dc17 (patch)
tree30a5d92ee2f913ed64d8aa81f1976a660061cf76 /cmake
parent8becc9b1191affb4db0d31aa8319861b17a78a90 (diff)
Support running unit tests for plug-ins
Diffstat (limited to 'cmake')
-rw-r--r--cmake/CuraTests.cmake40
1 files changed, 40 insertions, 0 deletions
diff --git a/cmake/CuraTests.cmake b/cmake/CuraTests.cmake
new file mode 100644
index 0000000000..d0cc842132
--- /dev/null
+++ b/cmake/CuraTests.cmake
@@ -0,0 +1,40 @@
+# Copyright (c) 2017 Ultimaker B.V.
+# Cura is released under the terms of the AGPLv3 or higher.
+
+enable_testing()
+include(CMakeParseArguments)
+
+function(cura_add_test)
+ set(_single_args NAME DIRECTORY PYTHONPATH)
+ cmake_parse_arguments("" "" "${_single_args}" "" ${ARGN})
+
+ if(NOT _NAME)
+ message(FATAL_ERROR "cura_add_test requires a test name argument")
+ endif()
+
+ if(NOT _DIRECTORY)
+ message(FATAL_ERROR "cura_add_test requires a directory to test")
+ endif()
+
+ if(NOT _PYTHONPATH)
+ set(_PYTHONPATH ${_DIRECTORY})
+ endif()
+
+ add_test(
+ NAME ${_NAME}
+ COMMAND ${PYTHON_EXECUTABLE} -m pytest --junitxml=${CMAKE_BINARY_DIR}/junit-${_NAME}.xml ${_DIRECTORY}
+ )
+ set_tests_properties(${_NAME} PROPERTIES ENVIRONMENT LANG=C)
+ set_tests_properties(${_NAME} PROPERTIES ENVIRONMENT PYTHONPATH=${_PYTHONPATH})
+endfunction()
+
+cura_add_test(NAME pytest-main DIRECTORY ${CMAKE_SOURCE_DIR}/tests PYTHONPATH ${CMAKE_SOURCE_DIR})
+
+file(GLOB_RECURSE _plugins plugins/*/__init__.py)
+foreach(_plugin ${_plugins})
+ get_filename_component(_plugin_directory ${_plugin} DIRECTORY)
+ if(EXISTS ${_plugin_directory}/tests)
+ get_filename_component(_plugin_name ${_plugin_directory} NAME)
+ cura_add_test(NAME pytest-${_plugin_name} DIRECTORY ${_plugin_directory} PYTHONPATH "${CMAKE_SOURCE_DIR}:${_plugin_directory}")
+ endif()
+endforeach()