#######################################################################
# Makefile for python test-suite
#######################################################################

ifeq (,$(PY3))
  PYBIN = python2.7
else
  PYBIN = 
endif

LANGUAGE     = python
PYTHON       = $(PYBIN)

#*_runme.py for Python 2.x, *_runme3.py for Python 3.x
PY2SCRIPTSUFFIX = _runme.py
PY3SCRIPTSUFFIX = _runme3.py

ifeq (,$(PY3))
  SCRIPTSUFFIX = $(PY2SCRIPTSUFFIX)
else
  SCRIPTSUFFIX = $(PY3SCRIPTSUFFIX)
endif

srcdir       = .
top_srcdir   = ../../..
top_builddir = ../../..


PY2TO3 = 2to3 -x import 


CPP_TEST_CASES += \
	argcargvtest \
	python_autodoc \
	python_append \
	callback \
	complextest \
	director_stl \
	director_wstring \
	file_test \
	iadd \
	inout \
	input \
	inplaceadd \
	implicittest \
	li_cstring \
	li_cwstring \
	li_factory \
	li_implicit \
	li_std_vectora \
	li_std_vector_extra \
	li_std_map \
	li_std_pair_extra \
	li_std_set \
	li_std_stream \
	li_std_string_extra \
	li_std_wstream \
	li_std_wstring \
	primitive_types \
        python_abstractbase \
	python_kwargs \
	python_nondynamic \
	python_overload_simple_cast \
	std_containers \
	swigobject \
	template_matrix \
	simutry

#	li_std_carray
#	director_profile
#	python_pybuf

C_TEST_CASES += \
	file_test \
	li_cstring \
	li_cwstring \
	python_nondynamic

#
# This test only works with modern C compilers
#
#C_TEST_CASES += \
#	complextest

include $(srcdir)/../common.mk

# Overridden variables here
LIBS       = -L.
VALGRIND_OPT += --suppressions=pythonswig.supp

# Rules for the different types of tests
%.cpptest: 
	$(setup)
	+$(swig_and_compile_cpp)
	$(run_testcase)

%.ctest:
	$(setup)
	+$(swig_and_compile_c)
	$(run_testcase)

%.multicpptest: 
	$(setup)
	+$(swig_and_compile_multi_cpp)
	$(run_testcase)


# Call 2to3 to generate Python 3.x test from the Python 2.x's *_runme.py file
%$(PY3SCRIPTSUFFIX): %$(PY2SCRIPTSUFFIX)
	cp $< $@
	$(PY2TO3) -w $@ >/dev/null 2>&1 


# Runs the testcase. A testcase is only run if
# a file is found which has _runme.py (or _runme3.py for Python 3) appended after the testcase name.

run_python = env LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH PYTHONPATH=$(srcdir):$$PYTHONPATH $(RUNTOOL) $(PYTHON) $(srcdir)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX)

py2_runme = $(srcdir)/$(SCRIPTPREFIX)$*$(PY2SCRIPTSUFFIX)
py3_runme = $(srcdir)/$(SCRIPTPREFIX)$*$(PY3SCRIPTSUFFIX)

ifeq (,$(PY3))
run_testcase = \
	if [ -f $(srcdir)/$(SCRIPTPREFIX)$*$(SCRIPTSUFFIX) ]; then (	  \
	  $(run_python);)\
	fi;
else
run_testcase = \
	if [ -f $(py2_runme) ]; then (	  \
	  $(MAKE) -f $(srcdir)/Makefile $(py3_runme) && \
	   $(run_python);) \
        elif [ -f $(py3_runme) ]; then (   \
          $(run_python);)  \
	fi;
endif

# Clean: remove the generated .py file
%.clean:
	@rm -f hugemod.h hugemod_a.i hugemod_b.i hugemod_a.py hugemod_b.py hugemod_runme.py
	@rm -f $*.py;
	@#We only remove the _runme3.py if it is generated by 2to3 from a _runme.py.
	@if [ -f $(py2_runme) ]; then (rm -f $(py3_runme) $(py3_runme).bak;) fi;

clean:
	$(MAKE) -f $(top_builddir)/$(EXAMPLES)/Makefile python_clean

cvsignore:
	@echo '*wrap* *.pyc *.so *.dll *.exp *.lib'
	@echo Makefile
	@for i in ${CPP_TEST_CASES} ${C_TEST_CASES}; do echo $$i.py; done 
	@for i in ${CPP_TEST_CASES} ${C_TEST_CASES}; do if grep -q $${i}_runme.py CVS/Entries ; then echo $${i}_runme.py; fi; done 
	@echo clientdata_prop_a.py 
	@echo clientdata_prop_b.py 
	@echo imports_a.py 
	@echo imports_b.py 
	@echo mod_a.py mod_b.py
	@echo hugemod.h hugemod_a.i hugemod_b.i hugemod_a.py hugemod_b.py hugemod_runme.py
	@echo template_typedef_import.py

hugemod_runme = hugemod$(SCRIPTPREFIX)

hugemod:
	perl hugemod.pl $(hugemod_runme) 
	$(MAKE) hugemod_a.cpptest
	$(MAKE) hugemod_b.cpptest
	sh -c "time $(PYTHON) $(hugemod_runme)"
	sh -c "time $(PYTHON) $(hugemod_runme)"
