make test: verify that /dev/shm is big enough
[vpp.git] / test / Makefile
1 .PHONY: verify-python-path
2
3 VPP_TEST_FAILED_DIR=/tmp/vpp-failed-unittests/
4
5 verify-python-path:
6 ifndef VPP_PYTHON_PREFIX
7         $(error VPP_PYTHON_PREFIX is not set)
8 endif
9
10 .PHONY: verify-no-running-vpp
11
12 ifdef VPP_ZOMBIE_NOCHECK
13 VPP_PIDS=
14 else
15 VPP_PIDS=$(shell pgrep -d, -x vpp_main)
16 endif
17
18 ifeq ($(DEBUG),gdb)
19 FORCE_FOREGROUND=1
20 else ifeq ($(DEBUG),gdbserver)
21 FORCE_FOREGROUND=1
22 else ifeq ($(DEBUG),core)
23 FORCE_FOREGROUND=1
24 else
25 FORCE_FOREGROUND=0
26 endif
27
28 verify-no-running-vpp:
29         @if [ "$(VPP_PIDS)" != "" ]; then \
30                 echo; \
31                 echo "*** Existing vpp processes detected (PID(s): $(VPP_PIDS)). Running tests under these conditions is not supported. ***"; \
32                 echo; \
33                 ps -fp $(VPP_PIDS);\
34                 echo; \
35                 false; \
36         fi
37
38 UNITTEST_EXTRA_OPTS=
39 UNITTEST_FAILFAST_OPTS=
40
41 ifeq ($(FAILFAST),1)
42 UNITTEST_EXTRA_OPTS=-f
43 endif
44
45 ifneq ($(EXTERN_TESTS),)
46 UNITTEST_EXTRA_OPTS=$(UNITTEST_FAILFAST_OPTS) -d $(EXTERN_TESTS)
47 endif
48
49 PYTHON_VENV_PATH=$(VPP_PYTHON_PREFIX)/virtualenv
50 PYTHON_DEPENDS=faulthandler six scapy==2.3.3 pexpect pycrypto subprocess32 cffi git+https://github.com/klement/py-lispnetworking@setup
51 SCAPY_SOURCE=$(shell find $(PYTHON_VENV_PATH) -name site-packages)
52 BUILD_COV_DIR=$(BR)/test-cov
53
54 GET_PIP_SCRIPT=$(VPP_PYTHON_PREFIX)/get-pip.py
55 PIP_INSTALL_DONE=$(VPP_PYTHON_PREFIX)/pip-install.done
56 PIP_PATCH_DONE=$(VPP_PYTHON_PREFIX)/pip-patch.done
57 PAPI_INSTALL_DONE=$(VPP_PYTHON_PREFIX)/papi-install.done
58
59 PAPI_INSTALL_FLAGS=$(PIP_INSTALL_DONE) $(PIP_PATCH_DONE) $(PAPI_INSTALL_DONE)
60
61 ifeq ($(PYTHON),)
62 PYTHON_INTERP=python2.7
63 else
64 PYTHON_INTERP=$(PYTHON)
65 endif
66
67 $(GET_PIP_SCRIPT):
68         @mkdir -p $(VPP_PYTHON_PREFIX)
69         @bash -c "cd $(VPP_PYTHON_PREFIX) && curl -O https://bootstrap.pypa.io/get-pip.py"
70
71 $(PIP_INSTALL_DONE): $(GET_PIP_SCRIPT)
72         @virtualenv $(PYTHON_VENV_PATH) -p $(PYTHON_INTERP)
73         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && python $(GET_PIP_SCRIPT)"
74         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install $(PYTHON_DEPENDS)"
75         @touch $@
76
77 $(PIP_PATCH_DONE): $(PIP_INSTALL_DONE)
78         @echo --- patching ---
79         @sleep 1 # Ensure python recompiles patched *.py files -> *.pyc
80         for f in $(CURDIR)/patches/scapy-2.3.3/*.patch ; do \
81                 echo Applying patch: $$(basename $$f) ; \
82                 patch -p1 -d $(SCAPY_SOURCE) < $$f ; \
83         done
84         @touch $@
85
86 $(PAPI_INSTALL_DONE): $(PIP_PATCH_DONE)
87         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && cd $(WS_ROOT)/src/vpp-api/python && python setup.py install"
88         @touch $@
89
90 define retest-func
91         @env VPP_TEST_FAILED_DIR=$(VPP_TEST_FAILED_DIR) scripts/setsid_wrapper.sh $(FORCE_FOREGROUND) $(PYTHON_VENV_PATH)/bin/activate python run_tests.py -d $(TEST_DIR) $(UNITTEST_EXTRA_OPTS) || env VPP_TEST_FAILED_DIR=$(VPP_TEST_FAILED_DIR) COMPRESS_FAILED_TEST_LOGS=$(COMPRESS_FAILED_TEST_LOGS) scripts/compress_failed.sh
92 endef
93
94 .PHONY: sanity
95
96 ifeq ($(SANITY),no)
97 SANITY_IMPORT_VPP_PAPI_CMD=true
98 SANITY_RUN_VPP_CMD=true
99 else
100 SANITY_IMPORT_VPP_PAPI_CMD=source $(PYTHON_VENV_PATH)/bin/activate && python sanity_import_vpp_papi.py
101 SANITY_RUN_VPP_CMD=source $(PYTHON_VENV_PATH)/bin/activate && python sanity_run_vpp.py
102 endif
103
104 sanity: verify-no-running-vpp
105         @sys_req/dev_shm_size.sh
106         @bash -c "$(SANITY_IMPORT_VPP_PAPI_CMD) ||\
107                 (echo \"*******************************************************************\" &&\
108                  echo \"* Sanity check failed, cannot import vpp_papi\" &&\
109                  echo \"* to debug: \" &&\
110                  echo \"* 1. enter test shell:   make test-shell\" &&\
111                  echo \"* 2. execute debugger:   gdb python -ex 'run sanity_import_vpp_papi.py'\" &&\
112                  echo \"*******************************************************************\" &&\
113                  false)"
114         @bash -c "$(SANITY_RUN_VPP_CMD) ||\
115                 (echo \"*******************************************************************\" &&\
116                  echo \"* Sanity check failed, cannot run vpp\" &&\
117                  echo \"*******************************************************************\" &&\
118                  false)"
119
120 .PHONY: ext
121 ext:
122         make -C ext
123
124 test: verify-python-path $(PAPI_INSTALL_DONE) ext sanity reset
125         $(call retest-func)
126
127 retest: verify-python-path sanity reset
128         $(call retest-func)
129
130 shell: verify-python-path $(PAPI_INSTALL_DONE)
131         @echo "source $(PYTHON_VENV_PATH)/bin/activate;\
132                 echo '***';\
133                 echo VPP_TEST_BUILD_DIR=$(VPP_TEST_BUILD_DIR);\
134                 echo VPP_TEST_BIN=$(VPP_TEST_BIN);\
135                 echo VPP_TEST_PLUGIN_PATH=$(VPP_TEST_PLUGIN_PATH);\
136                 echo VPP_TEST_INSTALL_PATH=$(VPP_TEST_INSTALL_PATH);\
137                 echo EXTERN_TESTS=$(EXTERN_TESTS);\
138                 echo EXTERN_PLUGINS=$(EXTERN_PLUGINS);\
139                 echo EXTERN_COV_DIR=$(EXTERN_COV_DIR);\
140                 echo LD_LIBRARY_PATH=$(LD_LIBRARY_PATH);\
141                 echo '***';\
142                 exec </dev/tty" | bash -i
143
144 .PHONY: wipe doc
145
146 reset:
147         @rm -f /dev/shm/vpp-unittest-*
148         @rm -rf /tmp/vpp-unittest-*
149         @rm -rf $(VPP_TEST_FAILED_DIR)
150         @mkdir $(VPP_TEST_FAILED_DIR)
151
152 wipe: reset
153         @make -C ext clean
154         @rm -rf $(PYTHON_VENV_PATH)
155         @rm -f $(PAPI_INSTALL_FLAGS)
156
157 doc: verify-python-path $(PIP_PATCH_DONE)
158         @virtualenv $(PYTHON_VENV_PATH) -p $(PYTHON_INTERP)
159         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install sphinx sphinx-rtd-theme"
160         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && make -C doc WS_ROOT=$(WS_ROOT) BR=$(BR) NO_VPP_PAPI=1 html"
161
162 .PHONY: wipe-doc
163
164 wipe-doc:
165         @make -C doc wipe BR=$(BR)
166
167 cov: wipe-cov reset verify-python-path $(PAPI_INSTALL_DONE)
168         @lcov --zerocounters --directory $(VPP_TEST_BUILD_DIR)
169         @test -z "$(EXTERN_COV_DIR)" || lcov --zerocounters --directory $(EXTERN_COV_DIR)
170         $(call retest-func)
171         @mkdir $(BUILD_COV_DIR)
172         @lcov --capture --directory $(VPP_TEST_BUILD_DIR) --output-file $(BUILD_COV_DIR)/coverage.info
173         @test -z "$(EXTERN_COV_DIR)" || lcov --capture --directory $(EXTERN_COV_DIR) --output-file $(BUILD_COV_DIR)/extern-coverage.info
174         @genhtml $(BUILD_COV_DIR)/coverage.info --output-directory $(BUILD_COV_DIR)/html
175         @test -z "$(EXTERN_COV_DIR)" || genhtml $(BUILD_COV_DIR)/extern-coverage.info --output-directory $(BUILD_COV_DIR)/extern-html
176         @echo
177         @echo "Build finished. Code coverage report is in $(BUILD_COV_DIR)/html/index.html"
178         @test -z "$(EXTERN_COV_DIR)" || echo "Code coverage report for out-of-tree objects is in $(BUILD_COV_DIR)/extern-html/index.html"
179
180 .PHONY: wipe-cov
181
182 wipe-cov: wipe
183         @rm -rf $(BUILD_COV_DIR)
184
185 .PHONY: checkstyle
186 checkstyle: verify-python-path
187         @virtualenv $(PYTHON_VENV_PATH) -p $(PYTHON_INTERP)
188         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install pep8"
189         @bash -c "source $(PYTHON_VENV_PATH)/bin/activate &&\
190                 pep8 --show-source -v $(WS_ROOT)/test/*.py ||\
191                 (echo \"*******************************************************************\" &&\
192                  echo \"* Test framework PEP8 compliance check FAILED \" &&\
193                  echo \"*******************************************************************\" &&\
194                  false)"
195         @echo "*******************************************************************"
196         @echo "* Test framework PEP8 compliance check passed"
197         @echo "*******************************************************************"
198
199 help:
200         @echo "Running tests:"
201         @echo ""
202         @echo " test                - build and run (basic) functional tests"
203         @echo " test-debug          - build and run (basic) functional tests (debug build)"
204         @echo " test-all            - build and run (all) functional tests"
205         @echo " test-all-debug      - build and run (all) functional tests (debug build)"
206         @echo " retest              - run functional tests"
207         @echo " retest-debug        - run functional tests (debug build)"
208         @echo " test-wipe           - wipe (temporary) files generated by unit tests"
209         @echo " test-shell          - enter shell with test environment"
210         @echo " test-shell-debug    - enter shell with test environment (debug build)"
211         @echo ""
212         @echo "Arguments controlling test runs:"
213         @echo " V=[0|1|2]            - set test verbosity level"
214         @echo " CACHE_OUTPUT=[0|1]   - cache VPP stdout/stderr and log as one block after test finishes (default: 1)"
215         @echo " FAILFAST=[0|1]       - fail fast if 1, complete all tests if 0"
216         @echo " TIMEOUT=<timeout>    - fail test suite if any single test takes longer than <timeout> to finish"
217         @echo " RETRIES=<n>          - retry failed tests <n> times"
218         @echo " DEBUG=<type>         - set VPP debugging kind"
219         @echo "    DEBUG=core        - detect coredump and load it in gdb on crash"
220         @echo "    DEBUG=gdb         - allow easy debugging by printing VPP PID "
221         @echo "                        and waiting for user input before running "
222         @echo "                        and tearing down a testcase"
223         @echo "    DEBUG=gdbserver   - run gdb inside a gdb server, otherwise "
224         @echo "                        same as above"
225         @echo " STEP=[yes|no]        - ease debugging by stepping through a testcase "
226         @echo " SANITY=[yes|no]      - perform sanity import of vpp-api/sanity vpp run before running tests (default: yes)"
227         @echo " TEST=<filter>        - filter the set of tests:"
228         @echo "    by file-name      - only run tests from specified file, e.g. TEST=test_bfd selects all tests from test_bfd.py"
229         @echo "    by file-suffix    - same as file-name, but 'test_' is omitted e.g. TEST=bfd selects all tests from test_bfd.py"
230         @echo "    by wildcard       - wildcard filter is <file>.<class>.<test function>, each can be replaced by '*'"
231         @echo "                        e.g. TEST='test_bfd.*.*' is equivalent to above example of filter by file-name"
232         @echo "                             TEST='bfd.*.*' is equivalent to above example of filter by file-suffix"
233         @echo "                             TEST='bfd.BFDAPITestCase.*' selects all tests from test_bfd.py which are part of BFDAPITestCase class"
234         @echo "                             TEST='bfd.BFDAPITestCase.test_add_bfd' selects a single test named test_add_bfd from test_bfd.py/BFDAPITestCase"
235         @echo "                             TEST='*.*.test_add_bfd' selects all test functions named test_add_bfd from all files/classes"
236         @echo ""
237         @echo " VPP_ZOMBIE_NOCHECK=1 - skip checking for vpp (zombie) processes (CAUTION)"
238         @echo " COREDUMP_SIZE=<size> - pass <size> as unix { coredump-size <size> } argument to vpp"
239         @echo "                        e.g. COREDUMP_SIZE=4g"
240         @echo "                             COREDUMP_SIZE=unlimited"
241         @echo " EXTERN_TESTS=<path>  - path to out-of-tree test_<name>.py files containing test cases"
242         @echo " EXTERN_PLUGINS=<path>- path to out-of-tree plugins to be loaded by vpp under test"
243         @echo " EXTERN_COV_DIR=<path>- path to out-of-tree prefix, where source, object and .gcda files can be found for coverage report"
244         @echo ""
245         @echo "Creating test documentation"
246         @echo " test-doc            - generate documentation for test framework"
247         @echo " test-wipe-doc       - wipe documentation for test framework"
248         @echo ""
249         @echo "Creating test code coverage report"
250         @echo " test-cov            - generate code coverage report for test framework"
251         @echo " test-wipe-cov       - wipe code coverage report for test framework"
252         @echo ""
253         @echo "Verifying code-style"
254         @echo " test-checkstyle     - check PEP8 compliance"
255         @echo ""