make test: automatic "vpp finishes startup" check
[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         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && python sanity_run_vpp.py ||\
82                 (echo \"*******************************************************************\" &&\
83                  echo \"* Sanity check failed, cannot run vpp\" &&\
84                  echo \"*******************************************************************\" &&\
85                  false)"
86
87 test: verify-python-path $(PAPI_INSTALL_DONE) sanity reset 
88         $(call retest-func)
89
90 retest: verify-python-path sanity reset
91         $(call retest-func)
92
93 shell: verify-python-path $(PAPI_INSTALL_DONE)
94         @echo "source $(PYTHON_VENV_PATH)/bin/activate;\
95                 echo '***';\
96                 echo VPP_TEST_BUILD_DIR=$(VPP_TEST_BUILD_DIR);\
97                 echo VPP_TEST_BIN=$(VPP_TEST_BIN);\
98                 echo VPP_TEST_PLUGIN_PATH=$(VPP_TEST_PLUGIN_PATH);\
99                 echo VPP_TEST_INSTALL_PATH=$(VPP_TEST_INSTALL_PATH);\
100                 echo EXTERN_TESTS=$(EXTERN_TESTS);\
101                 echo EXTERN_PLUGINS=$(EXTERN_PLUGINS);\
102                 echo LD_LIBRARY_PATH=$(LD_LIBRARY_PATH);\
103                 echo '***';\
104                 exec </dev/tty" | bash -i
105
106 .PHONY: wipe doc
107
108 reset:
109         @rm -f /dev/shm/vpp-unittest-*
110         @rm -rf /tmp/vpp-unittest-*
111
112 wipe: reset
113         @rm -rf $(PYTHON_VENV_PATH)
114         @rm -f $(PAPI_INSTALL_FLAGS)
115
116 doc: verify-python-path $(PIP_PATCH_DONE)
117         @virtualenv $(PYTHON_VENV_PATH) -p python2.7
118         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install sphinx sphinx-rtd-theme"
119         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && make -C doc WS_ROOT=$(WS_ROOT) BR=$(BR) NO_VPP_PAPI=1 html"
120
121 .PHONY: wipe-doc
122
123 wipe-doc:
124         @make -C doc wipe BR=$(BR)
125
126 cov: wipe-cov reset verify-python-path $(PAPI_INSTALL_DONE)
127         @lcov --zerocounters --directory $(VPP_TEST_BUILD_DIR)
128         $(call retest-func)
129         @mkdir $(BUILD_COV_DIR)
130         @lcov --capture --directory $(VPP_TEST_BUILD_DIR) --output-file $(BUILD_COV_DIR)/coverage.info
131         @genhtml $(BUILD_COV_DIR)/coverage.info --output-directory $(BUILD_COV_DIR)/html
132         @echo
133         @echo "Build finished. Code coverage report is in $(BUILD_COV_DIR)/html/index.html"
134
135 .PHONY: wipe-cov
136
137 wipe-cov: wipe
138         @rm -rf $(BUILD_COV_DIR)
139
140 .PHONY: checkstyle
141 checkstyle: verify-python-path
142         @virtualenv $(PYTHON_VENV_PATH) -p python2.7
143         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install pep8"
144         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate &&\
145                 pep8 --show-source -v $(WS_ROOT)/test/*.py ||\
146                 (echo \"*******************************************************************\" &&\
147                  echo \"* Test framework PEP8 compliance check FAILED \" &&\
148                  echo \"*******************************************************************\" &&\
149                  false)"
150         @echo "*******************************************************************"
151         @echo "* Test framework PEP8 compliance check passed"
152         @echo "*******************************************************************"
153
154 help:
155         @echo "Running tests:"
156         @echo ""
157         @echo " test                - build and run (basic) functional tests"
158         @echo " test-debug          - build and run (basic) functional tests (debug build)"
159         @echo " test-all            - build and run (all) functional tests"
160         @echo " test-all-debug      - build and run (all) functional tests (debug build)"
161         @echo " retest              - run functional tests"
162         @echo " retest-debug        - run functional tests (debug build)"
163         @echo " test-wipe           - wipe (temporary) files generated by unit tests"
164         @echo " test-shell          - enter shell with test environment"
165         @echo " test-shell-debug    - enter shell with test environment (debug build)"
166         @echo ""
167         @echo "Arguments controlling test runs:"
168         @echo " V=[0|1|2]            - set test verbosity level"
169         @echo " FAILFAST=[0|1]       - fail fast if 1, complete all tests if 0"
170         @echo " DEBUG=<type>         - set VPP debugging kind"
171         @echo "    DEBUG=core        - detect coredump and load it in gdb on crash"
172         @echo "    DEBUG=gdb         - allow easy debugging by printing VPP PID "
173         @echo "                        and waiting for user input before running "
174         @echo "                        and tearing down a testcase"
175         @echo "    DEBUG=gdbserver   - run gdb inside a gdb server, otherwise "
176         @echo "                        same as above"
177         @echo " STEP=[yes|no]        - ease debugging by stepping through a testcase "
178         @echo " TEST=<filter>        - filter the set of tests:"
179         @echo "    by file-name      - only run tests from specified file, e.g. TEST=test_bfd selects all tests from test_bfd.py"
180         @echo "    by file-suffix    - same as file-name, but 'test_' is omitted e.g. TEST=bfd selects all tests from test_bfd.py"
181         @echo "    by wildcard       - wildcard filter is <file>.<class>.<test function>, each can be replaced by '*'"
182         @echo "                        e.g. TEST='test_bfd.*.*' is equivalent to above example of filter by file-name"
183         @echo "                             TEST='bfd.*.*' is equivalent to above example of filter by file-suffix"
184         @echo "                             TEST='bfd.BFDAPITestCase.*' selects all tests from test_bfd.py which are part of BFDAPITestCase class"
185         @echo "                             TEST='bfd.BFDAPITestCase.test_add_bfd' selects a single test named test_add_bfd from test_bfd.py/BFDAPITestCase"
186         @echo "                             TEST='*.*.test_add_bfd' selects all test functions named test_add_bfd from all files/classes"
187         @echo ""
188         @echo " VPP_ZOMBIE_NOCHECK=1 - skip checking for vpp (zombie) processes (CAUTION)"
189         @echo " COREDUMP_SIZE=<size> - pass <size> as unix { coredump-size <size> } argument to vpp"
190         @echo "                        e.g. COREDUMP_SIZE=4g"
191         @echo "                             COREDUMP_SIZE=unlimited"
192         @echo " EXTERN_TESTS=<path>  - path to out-of-tree test_<name>.py files containing test cases"
193         @echo " EXTERN_PLUGINS=<path>- path to out-of-tree plugins to be loaded by vpp under test"
194         @echo ""
195         @echo "Creating test documentation"
196         @echo " test-doc            - generate documentation for test framework"
197         @echo " test-wipe-doc       - wipe documentation for test framework"
198         @echo ""
199         @echo "Creating test code coverage report"
200         @echo " test-cov            - generate code coverage report for test framework"
201         @echo " test-wipe-cov       - wipe code coverage report for test framework"
202         @echo ""
203         @echo "Verifying code-style"
204         @echo " test-checkstyle     - check PEP8 compliance"
205         @echo ""