Skip to content
Snippets Groups Projects
Commit 8211a237 authored by Pospelov, Gennady's avatar Pospelov, Gennady
Browse files

New PyExamples functional test machinery for embedded script testing

parent 64f2f827
No related branches found
No related tags found
No related merge requests found
......@@ -20,6 +20,7 @@ if(BORNAGAIN_PYTHON)
add_subdirectory(PyCore/export)
add_subdirectory(PyCore/persistence)
add_subdirectory(PyFit)
add_subdirectory(PyExamples)
endif()
if(BORNAGAIN_GUI)
......
###############################################################################
# Tests/Functional/PyExamples/CMakeLists.txt
#
# > Test functionality of all examples found in PY_EXAMPLES_DIR = <BornAgain>/Examples/python
# > Validates selected examples against reference files
#
###############################################################################
add_custom_target(TempQtCreatorTarget SOURCES check_functionality.py)
set(examples
simulation/ex01_BasicParticles/CylindersAndPrisms
)
set(test_script ${CMAKE_SOURCE_DIR}/Tests/Functional/PyExamples/check_functionality.py)
foreach(example ${examples})
set(script_path ${PY_EXAMPLES_DIR}/${example}.py)
get_filename_component(script_name ${script_path} NAME_WE)
set(test_name PyExamples/${script_name})
add_test(${test_name} ${PYTHON_EXECUTABLE} ${test_script} ${script_path})
set_tests_properties(${test_name} PROPERTIES LABELS "Examples")
message(INFO "XXX ${PYTHON_EXECUTABLE} ${test_script} ${script_path}")
endforeach()
"""
Checks functionality of BornAgain Python example by running it in 'embedded' way.
Usage: python check_functionality.py <path-to-example>/example.py
Example is considered as functional, if it runs without exceptions thrown and
generates non-zero-size intensity image.
"""
import sys
import os
import matplotlib
matplotlib.use('Agg')
from matplotlib import pyplot as plt
def get_figure(filename):
"""
Returns pyplot figure of appropriate size
"""
if "AllFormFactorsAvailable" in filename:
xsize, ysize = 1024, 768
else:
xsize, ysize = 640, 480
dpi = 72.
return plt.figure(figsize=(xsize/dpi, ysize/dpi))
def exec_full(filepath):
"""
Executes embedded python script.
http://stackoverflow.com/questions/436198/what-is-an-alternative-to-execfile-in-python-3
"""
import os
global_namespace = {
"__file__": filepath,
"__name__": "__main__",
}
sys.argv = [] # FIXME after cleanup in plot_utils
with open(filepath, 'rb') as file:
exec(compile(file.read(), filepath, 'exec'), global_namespace)
def run_example(filename):
"""
Tries to run python example and produce a *.png image
"""
print(filename)
fig = get_figure(filename)
try:
exec_full(filename)
plot_file_name = os.path.splitext(os.path.basename(filename))[0] + ".png"
print(plot_file_name)
plt.savefig(plot_file_name, bbox_inches='tight')
plt.close(fig)
status = "OK"
kb = os.path.getsize(plot_file_name)/1000.
if kb < 4.0:
status = "EMPTY?"
except:
status = "FAILED"
print(status)
# return os.path.join(dirname, filename), status, ""
if __name__ == '__main__':
if len(sys.argv) != 2:
exit("Error")
run_example(sys.argv[1])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment