make test: support out-of-tree tests
[vpp.git] / test / Makefile
1 .PHONY: verify-python-path
2
3 verify-python-path:
4 ifndef VPP_PYTHON_PREFIX
5         $(error VPP_PYTHON_PREFIX is not set)
6 endif
7
8 .PHONY: verify-no-running-vpp
9
10 ifdef VPP_ZOMBIE_NOCHECK
11 VPP_PIDS=
12 else
13 VPP_PIDS=$(shell pgrep -d, -x vpp_main)
14 endif
15
16 verify-no-running-vpp:
17         @if [ "$(VPP_PIDS)" != "" ]; then \
18                 echo; \
19                 echo "*** Existing vpp processes detected (PID(s): $(VPP_PIDS)). Running tests under these conditions is not supported. ***"; \
20                 echo; \
21                 ps -fp $(VPP_PIDS);\
22                 echo; \
23                 false; \
24         fi
25
26 UNITTEST_EXTRA_OPTS=
27 UNITTEST_FAILFAST_OPTS=
28
29 ifeq ($(FAILFAST),1)
30 UNITTEST_EXTRA_OPTS=-f
31 endif
32
33 ifneq ($(EXTERN_TESTS),)
34 UNITTEST_EXTRA_OPTS=$(UNITTEST_FAILFAST_OPTS) -d $(EXTERN_TESTS)
35 endif
36
37 PYTHON_VENV_PATH=$(VPP_PYTHON_PREFIX)/virtualenv
38 PYTHON_DEPENDS=scapy==2.3.3 pexpect subprocess32 cffi git+https://github.com/klement/py-lispnetworking@setup
39 SCAPY_SOURCE=$(PYTHON_VENV_PATH)/lib/python2.7/site-packages/
40 BUILD_COV_DIR = $(BR)/test-cov
41
42 PIP_INSTALL_DONE=$(VPP_PYTHON_PREFIX)/pip-install.done
43 PIP_PATCH_DONE=$(VPP_PYTHON_PREFIX)/pip-patch.done
44 PAPI_INSTALL_DONE=$(VPP_PYTHON_PREFIX)/papi-install.done
45
46 PAPI_INSTALL_FLAGS=$(PIP_INSTALL_DONE) $(PIP_PATCH_DONE) $(PAPI_INSTALL_DONE)
47
48 $(PIP_INSTALL_DONE):
49         @virtualenv $(PYTHON_VENV_PATH) -p python2.7
50         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install $(PYTHON_DEPENDS)"
51         @touch $@
52
53 $(PIP_PATCH_DONE): $(PIP_INSTALL_DONE)
54         @echo --- patching ---
55         @sleep 1 # Ensure python recompiles patched *.py files -> *.pyc
56         for f in $(CURDIR)/patches/scapy-2.3.3/*.patch ; do \
57                 echo Applying patch: $$(basename $$f) ; \
58                 patch -p1 -d $(SCAPY_SOURCE) < $$f ; \
59         done
60         @touch $@
61
62 $(PAPI_INSTALL_DONE): $(PIP_PATCH_DONE)
63         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && cd $(WS_ROOT)/src/vpp-api/python && python setup.py install"
64         @touch $@
65
66 define retest-func
67         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && python run_tests.py -d $(TEST_DIR) $(UNITTEST_EXTRA_OPTS)"
68 endef
69
70 .PHONY: sanity
71
72 sanity: verify-no-running-vpp
73         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && python sanity_import_vpp_papi.py ||\
74                 (echo \"*******************************************************************\" &&\
75                  echo \"* Sanity check failed, cannot import vpp_papi\" &&\
76                  echo \"* to debug: \" &&\
77                  echo \"* 1. enter test shell:   make test-shell\" &&\
78                  echo \"* 2. execute debugger:   gdb python -ex 'run sanity_import_vpp_papi.py'\" &&\
79                  echo \"*******************************************************************\" &&\
80                  false)"
81
82 test: verify-python-path $(PAPI_INSTALL_DONE) sanity reset 
83         $(call retest-func)
84
85 retest: verify-python-path sanity reset
86         $(call retest-func)
87
88 shell: verify-python-path $(PAPI_INSTALL_DONE)
89         @echo "source $(PYTHON_VENV_PATH)/bin/activate;\
90                 echo '***';\
91                 echo VPP_TEST_BUILD_DIR=$(VPP_TEST_BUILD_DIR);\
92                 echo VPP_TEST_BIN=$(VPP_TEST_BIN);\
93                 echo VPP_TEST_PLUGIN_PATH=$(VPP_TEST_PLUGIN_PATH);\
94                 echo VPP_TEST_INSTALL_PATH=$(VPP_TEST_INSTALL_PATH);\
95                 echo LD_LIBRARY_PATH=$(LD_LIBRARY_PATH);\
96                 echo '***';\
97                 exec </dev/tty" | bash -i
98
99 .PHONY: wipe doc
100
101 reset:
102         @rm -f /dev/shm/vpp-unittest-*
103         @rm -rf /tmp/vpp-unittest-*
104
105 wipe: reset
106         @rm -rf $(PYTHON_VENV_PATH)
107         @rm -f $(PAPI_INSTALL_FLAGS)
108
109 doc: verify-python-path $(PIP_PATCH_DONE)
110         @virtualenv $(PYTHON_VENV_PATH) -p python2.7
111         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install sphinx sphinx-rtd-theme"
112         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && make -C doc WS_ROOT=$(WS_ROOT) BR=$(BR) NO_VPP_PAPI=1 html"
113
114 .PHONY: wipe-doc
115
116 wipe-doc:
117         @make -C doc wipe BR=$(BR)
118
119 cov: wipe-cov reset verify-python-path $(PAPI_INSTALL_DONE)
120         @lcov --zerocounters --directory $(VPP_TEST_BUILD_DIR)
121         $(call retest-func)
122         @mkdir $(BUILD_COV_DIR)
123         @lcov --capture --directory $(VPP_TEST_BUILD_DIR) --output-file $(BUILD_COV_DIR)/coverage.info
124         @genhtml $(BUILD_COV_DIR)/coverage.info --output-directory $(BUILD_COV_DIR)/html
125         @echo
126         @echo "Build finished. Code coverage report is in $(BUILD_COV_DIR)/html/index.html"
127
128 .PHONY: wipe-cov
129
130 wipe-cov: wipe
131         @rm -rf $(BUILD_COV_DIR)
132
133 .PHONY: checkstyle
134 checkstyle: verify-python-path
135         @virtualenv $(PYTHON_VENV_PATH) -p python2.7
136         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install pep8"
137         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate &&\
138                 pep8 --show-source -v $(WS_ROOT)/test/*.py ||\
139                 (echo \"*******************************************************************\" &&\
140                  echo \"* Test framework PEP8 compliance check FAILED \" &&\
141                  echo \"*******************************************************************\" &&\
142                  false)"
143         @echo "*******************************************************************"
144         @echo "* Test framework PEP8 compliance check passed"
145         @echo "*******************************************************************"
146
147 help:
148         @echo "Running tests:"
149         @echo ""
150         @echo " test                - build and run (basic) functional tests"
151         @echo " test-debug          - build and run (basic) functional tests (debug build)"
152         @echo " test-all            - build and run (all) functional tests"
153         @echo " test-all-debug      - build and run (all) functional tests (debug build)"
154         @echo " retest              - run functional tests"
155         @echo " retest-debug        - run functional tests (debug build)"
156         @echo " test-wipe           - wipe (temporary) files generated by unit tests"
157         @echo " test-shell          - enter shell with test environment"
158         @echo " test-shell-debug    - enter shell with test environment (debug build)"
159         @echo ""
160         @echo "Arguments controlling test runs:"
161         @echo " V=[0|1|2]            - set test verbosity level"
162         @echo " FAILFAST=[0|1]       - fail fast if 1, complete all tests if 0"
163         @echo " DEBUG=<type>         - set VPP debugging kind"
164         @echo "    DEBUG=core        - detect coredump and load it in gdb on crash"
165         @echo "    DEBUG=gdb         - allow easy debugging by printing VPP PID "
166         @echo "                        and waiting for user input before running "
167         @echo "                        and tearing down a testcase"
168         @echo "    DEBUG=gdbserver   - run gdb inside a gdb server, otherwise "
169         @echo "                        same as above"
170         @echo " STEP=[yes|no]        - ease debugging by stepping through a testcase "
171         @echo " TEST=<filter>        - filter the set of tests:"
172         @echo "    by file-name      - only run tests from specified file, e.g. TEST=test_bfd selects all tests from test_bfd.py"
173         @echo "    by file-suffix    - same as file-name, but 'test_' is omitted e.g. TEST=bfd selects all tests from test_bfd.py"
174         @echo "    by wildcard       - wildcard filter is <file>.<class>.<test function>, each can be replaced by '*'"
175         @echo "                        e.g. TEST='test_bfd.*.*' is equivalent to above example of filter by file-name"
176         @echo "                             TEST='bfd.*.*' is equivalent to above example of filter by file-suffix"
177         @echo "                             TEST='bfd.BFDAPITestCase.*' selects all tests from test_bfd.py which are part of BFDAPITestCase class"
178         @echo "                             TEST='bfd.BFDAPITestCase.test_add_bfd' selects a single test named test_add_bfd from test_bfd.py/BFDAPITestCase"
179         @echo "                             TEST='*.*.test_add_bfd' selects all test functions named test_add_bfd from all files/classes"
180         @echo ""
181         @echo " VPP_ZOMBIE_NOCHECK=1 - skip checking for vpp (zombie) processes (CAUTION)"
182         @echo " COREDUMP_SIZE=<size> - pass <size> as unix { coredump-size <size> } argument to vpp"
183         @echo "                        e.g. COREDUMP_SIZE=4g"
184         @echo "                             COREDUMP_SIZE=unlimited"
185         @echo ""
186         @echo "Creating test documentation"
187         @echo " test-doc            - generate documentation for test framework"
188         @echo " test-wipe-doc       - wipe documentation for test framework"
189         @echo ""
190         @echo "Creating test code coverage report"
191         @echo " test-cov            - generate code coverage report for test framework"
192         @echo " test-wipe-cov       - wipe code coverage report for test framework"
193         @echo ""
194         @echo "Verifying code-style"
195         @echo " test-checkstyle     - check PEP8 compliance"
196         @echo ""