blob: af503dcf59f79ab44cf533bc74141ca9f0e6f596 [file] [log] [blame]
BenoƮt Ganne9fb6d402019-04-15 15:28:21 +02001ASAN_OPTIONS?=verify_asan_link_order=0:detect_leaks=0:abort_on_error=1:unmap_shadow_on_exit=1:disable_coredump=0
2export ASAN_OPTIONS
3
Dave Wallacef0797d12019-11-15 17:29:15 -05004.PHONY: verify-env
5verify-env:
6ifndef WS_ROOT
7 $(error WS_ROOT is not set)
8endif
9ifndef BR
10 $(error BR is not set)
11endif
Klement Sekerab8c72a42018-11-08 11:21:39 +010012ifndef TEST_DIR
13 $(error TEST_DIR is not set)
Klement Sekera277b89c2016-10-28 13:20:27 +020014endif
15
Dave Wallaceeddd8e32021-05-12 21:43:59 -040016export TEST_BR = $(TEST_DIR)
Dave Wallacef0797d12019-11-15 17:29:15 -050017FAILED_DIR=/tmp/vpp-failed-unittests/
Dave Wallaceeddd8e32021-05-12 21:43:59 -040018VPP_TEST_DIRS=$(shell ls -d $(TEST_DIR) $(EXTERN_TESTS))
Dave Wallacef0797d12019-11-15 17:29:15 -050019
Klement Sekerae2636852021-03-16 12:52:12 +010020FORCE_NO_WIPE=0
Klement Sekeradb4e84c2017-08-11 10:06:15 +020021ifeq ($(DEBUG),gdb)
22FORCE_FOREGROUND=1
23else ifeq ($(DEBUG),gdbserver)
24FORCE_FOREGROUND=1
Dave Wallace24564332019-10-21 02:53:14 +000025else ifeq ($(DEBUG),gdb-all)
26FORCE_FOREGROUND=1
27else ifeq ($(DEBUG),gdbserver-all)
28FORCE_FOREGROUND=1
Klement Sekerab90be672017-10-10 06:44:05 +020029else ifeq ($(DEBUG),core)
30FORCE_FOREGROUND=1
Klement Sekerae2636852021-03-16 12:52:12 +010031else ifeq ($(DEBUG),attach)
32FORCE_FOREGROUND=1
33FORCE_NO_WIPE=1
juraj.linkes184870a2018-07-16 14:22:01 +020034else ifeq ($(STEP),yes)
35FORCE_FOREGROUND=1
36else ifeq ($(STEP),y)
37FORCE_FOREGROUND=1
38else ifeq ($(STEP),1)
39FORCE_FOREGROUND=1
Klement Sekeradb4e84c2017-08-11 10:06:15 +020040else
41FORCE_FOREGROUND=0
42endif
43
Klement Sekerabbfa5fd2018-06-27 13:54:32 +020044ifdef PROFILE_OUTPUT
45PROFILE_OUTPUT_OPTS=-o $(PROFILE_OUTPUT)
46endif
47
48ifndef PROFILE_SORT_BY
49PROFILE_SORT_BY=cumtime
50endif
51
52ifeq ($(PROFILE),1)
Klement Sekerab23ffd72021-05-31 16:08:53 +020053PYTHON_OPTS="-m cProfile $(PROFILE_OUTPUT_OPTS) -s $(PROFILE_SORT_BY)"
Klement Sekerabbfa5fd2018-06-27 13:54:32 +020054FORCE_FOREGROUND=1
55endif
56
Saima Yunusc7f93b32022-08-10 03:25:31 -040057VENV_BR_DIR=$(BR)/test
58VENV_PATH=$(VENV_BR_DIR)/venv
Klement Sekerab8c72a42018-11-08 11:21:39 +010059
Klement Sekeraebbaf552018-02-17 13:41:33 +010060ifeq ($(TEST_DEBUG),1)
Dave Wallacef0797d12019-11-15 17:29:15 -050061VENV_RUN_DIR:=$(VENV_PATH)/run-debug
Klement Sekeraebbaf552018-02-17 13:41:33 +010062else
Dave Wallacef0797d12019-11-15 17:29:15 -050063VENV_RUN_DIR:=$(VENV_PATH)/run
Klement Sekeraebbaf552018-02-17 13:41:33 +010064endif
65
vagrant937bf302017-04-07 01:48:47 +000066ifeq ($(PYTHON),)
Ole Troan6e6ad642020-02-04 13:28:13 +010067PYTHON_INTERP=python3
vagrant937bf302017-04-07 01:48:47 +000068else
69PYTHON_INTERP=$(PYTHON)
70endif
71
Klement Sekerab23ffd72021-05-31 16:08:53 +020072ifeq ($(V),)
73V=0
74endif
75
Aloys Augustin28fa8cb2019-06-21 17:04:29 +020076PYTHON_VERSION=$(shell $(PYTHON_INTERP) -c 'import sys; print(sys.version_info.major)')
Dave Wallace8800f732023-08-31 00:47:44 -040077PIP_VERSION=23.3.1
Aloys Augustinef29fa42020-05-25 18:07:24 +020078# Keep in sync with requirements.txt
Dave Wallace7b8b4652023-08-15 19:05:26 -040079PIP_TOOLS_VERSION=7.3.0
80PIP_SETUPTOOLS_VERSION=68.1.0
Aloys Augustin28fa8cb2019-06-21 17:04:29 +020081PYTHON_DEPENDS=requirements-$(PYTHON_VERSION).txt
Ole Troan6e6ad642020-02-04 13:28:13 +010082SCAPY_SOURCE=$(shell find $(VENV_PATH)/lib/python* -name site-packages)
Dave Wallace1c95e122023-06-21 23:14:38 -040083BUILD_COV_DIR=$(BR)/test-coverage
Aloys Augustin28fa8cb2019-06-21 17:04:29 +020084
Aloys Augustinef29fa42020-05-25 18:07:24 +020085PIP_TOOLS_INSTALL_DONE=$(VENV_RUN_DIR)/pip-tools-install-$(PYTHON_VERSION)-$(PIP_TOOLS_VERSION).done
86PIP_INSTALL_DONE=$(VENV_RUN_DIR)/pip-install-$(PYTHON_VERSION)-$(PIP_VERSION).done
Dave Wallacef0797d12019-11-15 17:29:15 -050087PIP_PATCH_DONE=$(VENV_RUN_DIR)/pip-patch-$(PYTHON_VERSION).done
88PAPI_INSTALL_DONE=$(VENV_RUN_DIR)/papi-install-$(PYTHON_VERSION).done
89PAPI_PYTHON_SRC_DIR=$(WS_ROOT)/src/vpp-api/python
90PAPI_WIPE_DIST=$(WS_ROOT)/src/vpp-api/vapi/__pycache__ \
91 $(PAPI_PYTHON_SRC_DIR)/build \
92 $(PAPI_PYTHON_SRC_DIR)/vpp_papi.egg-info \
93 $(PAPI_PYTHON_SRC_DIR)/vpp_papi/__pycache__
Aloys Augustin28fa8cb2019-06-21 17:04:29 +020094
Aloys Augustin28fa8cb2019-06-21 17:04:29 +020095$(PIP_TOOLS_INSTALL_DONE):
96 @rm -rf $(VENV_PATH)
Dave Wallacef0797d12019-11-15 17:29:15 -050097 @mkdir -p $(VENV_RUN_DIR)
Klement Sekera7554aef2021-03-30 19:46:06 +020098 @$(PYTHON_INTERP) -m venv $(VENV_PATH)
Aloys Augustin8adb92b2019-07-23 15:19:28 +020099 # pip version pinning
100 @bash -c "source $(VENV_PATH)/bin/activate && \
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200101 python3 -m pip install pip===$(PIP_VERSION)"
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200102 @bash -c "source $(VENV_PATH)/bin/activate && \
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200103 python3 -m pip install pip-tools===$(PIP_TOOLS_VERSION)"
Dave Wallacefa5aabb2022-02-05 09:27:05 -0500104 @bash -c "source $(VENV_PATH)/bin/activate && \
105 python3 -m pip install setuptools===$(PIP_SETUPTOOLS_VERSION)"
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200106 @touch $@
107
Aloys Augustin8eca60d2020-06-24 11:33:20 +0200108$(PYTHON_DEPENDS): requirements.txt
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200109 @bash -c "source $(VENV_PATH)/bin/activate && \
Tom Jones0aa0d6f2024-01-18 10:48:17 +0000110 CUSTOM_COMPILE_COMMAND='$(MAKE) test-refresh-deps (or update requirements.txt)' \
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200111 python3 -m piptools compile -q --generate-hashes requirements.txt --output-file $@"
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200112
Aloys Augustin8eca60d2020-06-24 11:33:20 +0200113$(PIP_INSTALL_DONE): $(PIP_TOOLS_INSTALL_DONE) $(PYTHON_DEPENDS)
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200114 @bash -c "source $(VENV_PATH)/bin/activate && \
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200115 python3 -m piptools sync $(PYTHON_DEPENDS)"
Neale Ranns177bbdc2016-11-15 09:46:51 +0000116 @touch $@
117
Klement Sekera9f9d07b2016-12-12 09:20:50 +0100118$(PIP_PATCH_DONE): $(PIP_INSTALL_DONE)
Neale Ranns177bbdc2016-11-15 09:46:51 +0000119 @echo --- patching ---
Dave Wallace6f692d62017-01-26 21:07:10 -0500120 @sleep 1 # Ensure python recompiles patched *.py files -> *.pyc
snaramre5d4b8912019-12-13 23:39:35 +0000121 for f in $(CURDIR)/patches/scapy-2.4.3/*.patch ; do \
Neale Ranns177bbdc2016-11-15 09:46:51 +0000122 echo Applying patch: $$(basename $$f) ; \
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200123 patch --forward -p1 -d $(SCAPY_SOURCE) < $$f ; \
124 retCode=$$?; \
Aloys Augustin8eca60d2020-06-24 11:33:20 +0200125 [ $$retCode -gt 1 ] && exit $$retCode; \
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200126 done; \
127 touch $@
Neale Ranns177bbdc2016-11-15 09:46:51 +0000128
Klement Sekera9f9d07b2016-12-12 09:20:50 +0100129$(PAPI_INSTALL_DONE): $(PIP_PATCH_DONE)
Klement Sekeraa8a9a8a2021-04-10 12:37:04 +0200130 @bash -c "source $(VENV_PATH)/bin/activate && python3 -m pip install -e $(PAPI_PYTHON_SRC_DIR)"
Neale Ranns177bbdc2016-11-15 09:46:51 +0000131 @touch $@
132
Dave Wallacef0797d12019-11-15 17:29:15 -0500133.PHONY: refresh-deps
Dave Wallace7b8b4652023-08-15 19:05:26 -0400134refresh-deps: clean-deps $(PIP_INSTALL_DONE) $(PYTHON_DEPENDS)
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200135
Dave Wallacef0797d12019-11-15 17:29:15 -0500136.PHONY: clean-deps
Aloys Augustin28fa8cb2019-06-21 17:04:29 +0200137clean-deps:
138 @rm -f $(PYTHON_DEPENDS)
139
Dave Wallacef0797d12019-11-15 17:29:15 -0500140INTERN_PLUGIN_SRC_DIR=$(WS_ROOT)/src/plugins
Dave Wallacea43c93f2019-08-22 00:32:29 +0000141ifneq ($(EXTERN_PLUGIN_SRC_DIR),)
142PLUGIN_SRC_DIR=$(EXTERN_PLUGIN_SRC_DIR)
143else
Dave Wallacef0797d12019-11-15 17:29:15 -0500144PLUGIN_SRC_DIR=$(INTERN_PLUGIN_SRC_DIR)
Dave Wallacea43c93f2019-08-22 00:32:29 +0000145endif
Dave Wallacea43c93f2019-08-22 00:32:29 +0000146
Klement Sekerac160ae02017-03-09 08:20:13 +0100147.PHONY: sanity
148
juraj.linkes184870a2018-07-16 14:22:01 +0200149ifndef TEST_JOBS
150PARALLEL_ILLEGAL=0
Klement Sekerab23ffd72021-05-31 16:08:53 +0200151TEST_JOBS=1
juraj.linkes184870a2018-07-16 14:22:01 +0200152else ifeq ($(FORCE_FOREGROUND),0)
153PARALLEL_ILLEGAL=0
Klement Sekerab23ffd72021-05-31 16:08:53 +0200154else ifneq ($(findstring $(TEST_JOBS),1 auto),)
juraj.linkes184870a2018-07-16 14:22:01 +0200155PARALLEL_ILLEGAL=0
156else
157PARALLEL_ILLEGAL=1
158endif
159
Klement Sekerab23ffd72021-05-31 16:08:53 +0200160ifneq ($(DEBUG),)
161SANITY=no
162endif
163
164ifneq ($(findstring $(SANITY),0 n no),)
165SANITY_IMPORT_VPP_PAPI_CMD=true
166ARG0=
167else
168SANITY_IMPORT_VPP_PAPI_CMD=source $(VENV_PATH)/bin/activate && $(PYTHON_INTERP) sanity_import_vpp_papi.py
169ARG0=--sanity
170endif
171
172ARG1=
173ifneq ($(findstring $(FAILFAST),1 y yes),)
174ARG1=--failfast
175endif
176
177ARG2=
178ifneq ($(findstring $(EXTENDED_TESTS),1 y yes),)
179ARG2=--extended
180endif
181
182ARG3=
183ifneq ($(EXTERN_TESTS),)
184ARG3=--test-src-dir $(EXTERN_TESTS)
185endif
186
187ARG4=
188ifneq ($(findstring $(FORCE_FOREGROUND),1 y yes),)
189ARG4=--force-foreground
190endif
191
192ARG5=
193ifneq ($(findstring $(COREDUMP_COMPRESS),1 y yes),)
194ARG5=--compress-core
195endif
196
197ARG6=
198ifneq ($(findstring $(STEP),1 y yes),)
199ARG6=--step
200endif
201
202ARG7=
Dave Wallace878a9f52023-08-08 15:25:21 -0400203ifneq ($(findstring $(TEST_GCOV),1 y yes),)
Klement Sekerab23ffd72021-05-31 16:08:53 +0200204ARG7=--gcov
205endif
206
207ARG8=
208ifneq ($(EXTERN_PLUGINS),)
209ARG8=--extern-plugin-dir=$(EXTERN_PLUGINS)
210endif
211
212ARG9=
213ifneq ($(DEBUG),)
214ARG9=--debug=$(DEBUG)
215endif
216
217ARG10=
218ifneq ($(COREDUMP_SIZE),)
219ARG10=--coredump-size=$(COREDUMP_SIZE)
220endif
221
222ARG11=
223ifneq ($(VARIANT),)
224ARG11=--variant=$(VARIANT)
225endif
226
227ARG12=--cache-vpp-output
228ifneq ($(findstring $(CACHE_OUTPUT),0 n no),)
229ARG12=
230endif
231
232ARG13=
233ifneq ($(MAX_VPP_CPUS),)
234ARG13=--max-vpp-cpus=$(MAX_VPP_CPUS)
235endif
236
237ARG14=
238ifneq ($(TIMEOUT),)
239ARG14=--timeout=$(TIMEOUT)
240endif
241
242ARG15=
243ifneq ($(findstring $(TEST_DEBUG),1 y yes),)
244ARG15=--debug-framework
245endif
246
247ARG16=
248ifneq ($(findstring $(API_FUZZ),1 y yes),)
249ARG16=--api-fuzz=on
250endif
251
Ole Troan37157da2022-12-01 11:22:06 +0100252ARG17=
253ifneq ($(EXTERN_APIDIR),)
254ARG17=--extern-apidir=$(EXTERN_APIDIR)
255endif
256
Dave Wallace8800f732023-08-31 00:47:44 -0400257ARG18=
258ifneq ($(findstring $(DECODE_PCAPS),1 y yes),)
259ARG18=--decode-pcaps
260endif
261
Maxime Peim77caeb12023-11-14 15:26:41 +0100262ifneq ($(findstring $(API_PRELOAD),1 y yes),)
263ARG19=--api-preload
264else
265ARG19=
266endif
267
Andrew Yourtchenkobc378782023-09-26 16:01:21 +0200268EXC_PLUGINS_ARG=
269ifneq ($(VPP_EXCLUDED_PLUGINS),)
270# convert the comma-separated list into N invocations of the argument to exclude a plugin
271EXC_PLUGINS_ARG=$(shell echo "${VPP_EXCLUDED_PLUGINS}" | sed 's/\([^,]*\)/--excluded-plugin=\1/g; s/,/ /g')
272endif
273
274
275
Maxime Peim77caeb12023-11-14 15:26:41 +0100276EXTRA_ARGS=$(ARG0) $(ARG1) $(ARG2) $(ARG3) $(ARG4) $(ARG5) $(ARG6) $(ARG7) $(ARG8) $(ARG9) $(ARG10) $(ARG11) $(ARG12) $(ARG13) $(ARG14) $(ARG15) $(ARG16) $(ARG17) $(ARG18) $(ARG19)
Klement Sekerab23ffd72021-05-31 16:08:53 +0200277
Andrew Yourtchenkobc378782023-09-26 16:01:21 +0200278RUN_TESTS_ARGS=--failed-dir=$(FAILED_DIR) --verbose=$(V) --jobs=$(TEST_JOBS) --filter=$(TEST) --retries=$(RETRIES) --venv-dir=$(VENV_PATH) --vpp-ws-dir=$(WS_ROOT) --vpp-tag=$(TAG) --rnd-seed=$(RND_SEED) --vpp-worker-count="$(VPP_WORKER_COUNT)" --keep-pcaps $(PLUGIN_PATH_ARGS) $(EXC_PLUGINS_ARG) $(TEST_PLUGIN_PATH_ARGS) $(EXTRA_ARGS)
Klement Sekerab3fc6582022-03-10 11:47:45 +0100279RUN_SCRIPT_ARGS=--python-opts=$(PYTHON_OPTS)
Klement Sekerab23ffd72021-05-31 16:08:53 +0200280
281define retest-func
Klement Sekerab3fc6582022-03-10 11:47:45 +0100282@scripts/run.sh $(RUN_SCRIPT_ARGS) $(RUN_TESTS_ARGS) || env FAILED_DIR=$(FAILED_DIR) COMPRESS_FAILED_TEST_LOGS=$(COMPRESS_FAILED_TEST_LOGS) scripts/compress_failed.sh
Klement Sekerab23ffd72021-05-31 16:08:53 +0200283endef
284
Klement Sekerae2636852021-03-16 12:52:12 +0100285sanity: test-dep
juraj.linkes184870a2018-07-16 14:22:01 +0200286 @bash -c "test $(PARALLEL_ILLEGAL) -eq 0 ||\
287 (echo \"*******************************************************************\" &&\
288 echo \"* Sanity check failed, TEST_JOBS is not 1 or 'auto' and DEBUG, STEP or PROFILE is set\" &&\
289 echo \"*******************************************************************\" &&\
290 false)"
Klement Sekera41a9e512017-10-17 07:59:31 +0200291 @bash -c "$(SANITY_IMPORT_VPP_PAPI_CMD) ||\
Klement Sekerac160ae02017-03-09 08:20:13 +0100292 (echo \"*******************************************************************\" &&\
293 echo \"* Sanity check failed, cannot import vpp_papi\" &&\
294 echo \"* to debug: \" &&\
295 echo \"* 1. enter test shell: make test-shell\" &&\
296 echo \"* 2. execute debugger: gdb python -ex 'run sanity_import_vpp_papi.py'\" &&\
297 echo \"*******************************************************************\" &&\
298 false)"
299
Dave Wallacef0797d12019-11-15 17:29:15 -0500300$(FAILED_DIR): reset
301 @mkdir -p $@
302
303.PHONY: test-dep
Dave Wallaceeddd8e32021-05-12 21:43:59 -0400304test-dep: $(PAPI_INSTALL_DONE) $(FAILED_DIR)
Dave Wallacef0797d12019-11-15 17:29:15 -0500305
306.PHONY: test
Damjan Mariona2d6d352021-05-25 18:29:24 +0200307test: test-dep sanity
Juraj Sloboda0279b292016-11-16 19:50:24 +0100308 $(call retest-func)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200309
Dave Wallacef0797d12019-11-15 17:29:15 -0500310.PHONY: retest
311retest: verify-env sanity $(FAILED_DIR)
Juraj Sloboda0279b292016-11-16 19:50:24 +0100312 $(call retest-func)
Klement Sekeraf62ae122016-10-11 11:47:09 +0200313
Dave Wallacef0797d12019-11-15 17:29:15 -0500314.PHONY: shell
315shell: test-dep
Klement Sekerab8c72a42018-11-08 11:21:39 +0100316 @echo "source $(VENV_PATH)/bin/activate;\
Paul Vinciguerrac701e572019-12-19 16:09:43 -0500317 export RND_SEED=$(RND_SEED);\
Klement Sekeraa86e2892017-03-09 08:01:52 +0100318 echo '***';\
Dave Wallacefd243742021-03-16 22:12:07 -0400319 echo PYTHONPATH=$(PYTHONPATH);\
Paul Vinciguerrac701e572019-12-19 16:09:43 -0500320 echo RND_SEED=$(RND_SEED);\
Klement Sekera593635d2019-02-07 19:56:50 +0100321 echo VPP_BUILD_DIR=$(VPP_BUILD_DIR);\
Klement Sekera593635d2019-02-07 19:56:50 +0100322 echo VPP_PLUGIN_PATH=$(VPP_PLUGIN_PATH);\
Dave Barach7d31ab22019-05-08 19:18:18 -0400323 echo VPP_TEST_PLUGIN_PATH=$(VPP_TEST_PLUGIN_PATH);\
Klement Sekera593635d2019-02-07 19:56:50 +0100324 echo VPP_INSTALL_PATH=$(VPP_INSTALL_PATH);\
Klement Sekera47e275b2017-03-21 08:21:25 +0100325 echo EXTERN_TESTS=$(EXTERN_TESTS);\
326 echo EXTERN_PLUGINS=$(EXTERN_PLUGINS);\
Klement Sekerab23ffd72021-05-31 16:08:53 +0200327 echo EXTERN_COV_DIR=$(EXTERN_COV_DIR);\
Klement Sekeraa86e2892017-03-09 08:01:52 +0100328 echo LD_LIBRARY_PATH=$(LD_LIBRARY_PATH);\
329 echo '***';\
330 exec </dev/tty" | bash -i
331
Dave Wallacef0797d12019-11-15 17:29:15 -0500332.PHONY: reset
Neale Ranns177bbdc2016-11-15 09:46:51 +0000333reset:
Klement Sekeraaa7a2a12021-03-18 15:22:57 +0100334 @rm -f /dev/shm/vpp-unittest-*
Klement Sekerae2636852021-03-16 12:52:12 +0100335 @if [ $(FORCE_NO_WIPE) -eq "0" ] ; then rm -rf /tmp/vpp-unittest-*; fi
Dave Wallacef0797d12019-11-15 17:29:15 -0500336 @rm -f /tmp/api_post_mortem.*
Klement Sekerab8c72a42018-11-08 11:21:39 +0100337 @rm -rf $(FAILED_DIR)
Naveen Joy7ea7ab52021-05-11 10:31:18 -0700338 @rm -rf /tmp/vpp-vm-tests
Klement Sekeraf62ae122016-10-11 11:47:09 +0200339
Dave Wallacef0797d12019-11-15 17:29:15 -0500340.PHONY: wipe
Neale Ranns177bbdc2016-11-15 09:46:51 +0000341wipe: reset
Saima Yunusc7f93b32022-08-10 03:25:31 -0400342 @rm -rf $(VENV_BR_DIR)
Neale Ranns02da9262021-01-08 08:43:14 +0000343 @rm -rf $(patsubst %,%/__pycache__, $(VPP_TEST_DIRS))
Neale Ranns177bbdc2016-11-15 09:46:51 +0000344
Dave Wallacef0797d12019-11-15 17:29:15 -0500345$(BUILD_COV_DIR):
346 @mkdir -p $@
347
Dave Wallace1c95e122023-06-21 23:14:38 -0400348.PHONY: cov-prep
349cov-prep: test-dep
Klement Sekera593635d2019-02-07 19:56:50 +0100350 @lcov --zerocounters --directory $(VPP_BUILD_DIR)
Klement Sekeracd6cb982017-05-11 06:55:32 +0200351 @test -z "$(EXTERN_COV_DIR)" || lcov --zerocounters --directory $(EXTERN_COV_DIR)
Dave Wallace1c95e122023-06-21 23:14:38 -0400352
353.PHONY: cov-post
354cov-post: wipe-cov $(BUILD_COV_DIR)
355 @lcov --capture \
356 --directory $(VPP_BUILD_DIR) \
357 --output-file $(BUILD_COV_DIR)/coverage.info
358 @test -z "$(EXTERN_COV_DIR)" || \
359 lcov --capture \
360 --directory $(EXTERN_COV_DIR) \
361 --output-file $(BUILD_COV_DIR)/extern-coverage.info
362 @lcov --remove $(BUILD_COV_DIR)/coverage.info \
363 "/usr/include/*" "*/build-root/*" "/opt/*" "/usr/lib/*" \
Dave Wallaceef68bb52023-08-09 12:58:22 -0400364 "*_test.*" "*vat*" "*rdma*" "*/vpp-api/client/*" "*/plugins/af_packet/*" \
365 "*/plugins/af_xdp/*" "*/plugins/avf/*" "*/plugins/dma_intel/*" \
366 "*/plugins/hs_apps/*" "*/plugins/vmxnet3/*" "*/vnet/devices/virtio/*" \
adrianvillin176cff52023-11-27 18:44:07 +0100367 "*/plugins/perfmon/arm*" "*/plugins/perfmon/intel/*" "*/vlib/vmbus/*" \
368 "*/vnet/dev/*" "*/plugins/dev_ena/*" "*/plugins/builtinurl/*" "*/vnet/flow/*" \
369 "*/plugins/http_static/builtinurl/*" "*/plugins/dev_iavf/*" \
Dave Wallace1c95e122023-06-21 23:14:38 -0400370 -o $(BUILD_COV_DIR)/coverage-filtered.info
371 @genhtml $(BUILD_COV_DIR)/coverage-filtered.info \
372 --output-directory $(BUILD_COV_DIR)/html
373 @test -z "$(EXTERN_COV_DIR)" || \
374 genhtml $(BUILD_COV_DIR)/extern-coverage.info \
375 --output-directory $(BUILD_COV_DIR)/extern-html
Juraj Sloboda0279b292016-11-16 19:50:24 +0100376 @echo
377 @echo "Build finished. Code coverage report is in $(BUILD_COV_DIR)/html/index.html"
Klement Sekeracd6cb982017-05-11 06:55:32 +0200378 @test -z "$(EXTERN_COV_DIR)" || echo "Code coverage report for out-of-tree objects is in $(BUILD_COV_DIR)/extern-html/index.html"
Juraj Sloboda0279b292016-11-16 19:50:24 +0100379
Dave Wallace1c95e122023-06-21 23:14:38 -0400380.PHONY: cov
381cov:
Tom Jones0aa0d6f2024-01-18 10:48:17 +0000382 $(MAKE) -C . cov-prep test cov-post
Dave Wallace1c95e122023-06-21 23:14:38 -0400383
Klement Sekera9f9d07b2016-12-12 09:20:50 +0100384.PHONY: wipe-cov
Juraj Sloboda0279b292016-11-16 19:50:24 +0100385wipe-cov: wipe
386 @rm -rf $(BUILD_COV_DIR)
387
Dave Wallacef0797d12019-11-15 17:29:15 -0500388.PHONY: wipe-papi
389wipe-papi:
390 @rm -rf $(PAPI_INSTALL_DONE) $(PAPI_WIPE_DIST)
Paul Vinciguerra2648e442019-07-09 16:49:46 -0400391
Dave Wallacef0797d12019-11-15 17:29:15 -0500392.PHONY: wipe-all
Nathan Skrzypczak9ad39c02021-08-19 11:38:06 +0200393wipe-all: wipe wipe-papi wipe-cov
Dave Wallacef0797d12019-11-15 17:29:15 -0500394 @rm -rf $(TEST_BR)
Paul Vinciguerra2648e442019-07-09 16:49:46 -0400395
Klement Sekerae2636852021-03-16 12:52:12 +0100396.PHONY: start-gdb
397start-gdb: sanity
Klement Sekerab23ffd72021-05-31 16:08:53 +0200398 @bash -c "source $(VENV_PATH)/bin/activate && python3 -c 'from debug import start_vpp_in_gdb; start_vpp_in_gdb()' $(RUN_TESTS_ARGS)"
Klement Sekerae2636852021-03-16 12:52:12 +0100399
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200400.PHONY: checkstyle-python-all
401checkstyle-python-all: $(PIP_INSTALL_DONE)
Ole Troan4aacc012019-10-23 11:47:33 +0200402 @bash -c "source $(VENV_PATH)/bin/activate &&\
Klement Sekerae2159bd2022-05-11 16:54:09 +0200403 black -t py39 --check --diff $(WS_ROOT) ||\
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200404 (echo \"*************************************************************************\" &&\
405 echo \"* Test framework PEP8 compliance check FAILED (maybe: make fixstyle-python)\" &&\
406 echo \"*************************************************************************\" &&\
407 false)"
Klement Sekera72715ee2017-01-17 10:37:05 +0100408 @echo "*******************************************************************"
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200409 @echo "* Test framework PEP8 compliance check passed"
410 @echo "*******************************************************************"
411
412.PHONY: checkstyle
413checkstyle: checkstyle-python-all
414
415.PHONY: fixstyle-python-all
416fixstyle-python-all: $(PIP_INSTALL_DONE)
417 @bash -c "source $(VENV_PATH)/bin/activate &&\
418 black -t py39 $(WS_ROOT) ||\
419 (echo \"*************************************************************************\" &&\
420 echo \"* Test framework PEP8 compliance check FAILED (maybe: make fixstyle-python)\" &&\
421 echo \"*************************************************************************\" &&\
422 false)"
423 @echo "*******************************************************************"
424 @echo "* Test framework PEP8 compliance check passed"
Klement Sekera72715ee2017-01-17 10:37:05 +0100425 @echo "*******************************************************************"
426
Dave Wallacef0797d12019-11-15 17:29:15 -0500427.PHONY: help
Klement Sekera277b89c2016-10-28 13:20:27 +0200428help:
429 @echo "Running tests:"
430 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500431 @echo " test - build and run (basic) functional tests"
432 @echo " test-debug - build and run (basic) functional tests (debug build)"
Dave Wallace1c95e122023-06-21 23:14:38 -0400433 @echo " test-cov - generate code coverage report for functional tests"
434 @echo " test-cov-prep - coverage phase #1 : prepare lcov"
435 @echo " test-cov-build - coverage phase #2 : build gcov image & run tests against it (use TEST=)"
436 @echo " test-cov-post - coverage phase #3 : generate lcov html report"
Dave Wallacef0797d12019-11-15 17:29:15 -0500437 @echo " test-all - build and run functional and extended tests"
438 @echo " test-all-debug - build and run functional and extended tests (debug build)"
Dave Wallace1c95e122023-06-21 23:14:38 -0400439 @echo " test-all-cov - generate code coverage report for functional and extended tests"
Dave Wallacef0797d12019-11-15 17:29:15 -0500440 @echo " retest - run functional tests"
441 @echo " retest-debug - run functional tests (debug build)"
442 @echo " retest-all - run functional and extended tests"
443 @echo " retest-all-debug - run functional and extended tests (debug build)"
Dave Wallacef0797d12019-11-15 17:29:15 -0500444 @echo " test-wipe - wipe (temporary) files generated by unit tests"
445 @echo " test-wipe-cov - wipe code coverage report for test framework"
Dave Wallacef0797d12019-11-15 17:29:15 -0500446 @echo " test-wipe-papi - rebuild vpp_papi sources"
Nathan Skrzypczak9ad39c02021-08-19 11:38:06 +0200447 @echo " test-wipe-all - wipe (temporary) files generated by unit tests, and coverage"
Dave Wallacef0797d12019-11-15 17:29:15 -0500448 @echo " test-shell - enter shell with test environment"
449 @echo " test-shell-debug - enter shell with test environment (debug build)"
Klement Sekerae2636852021-03-16 12:52:12 +0100450 @echo " test-refresh-deps - refresh the Python dependencies for the tests"
Klement Sekera277b89c2016-10-28 13:20:27 +0200451 @echo ""
Klement Sekera08c50e32023-04-14 17:44:04 +0200452 @echo "Environment variables controlling test runs:"
Klement Sekerab23ffd72021-05-31 16:08:53 +0200453 @echo ""
Klement Sekera08c50e32023-04-14 17:44:04 +0200454 @echo " V=[0|1|2]"
455 @echo " set test verbosity level: 0=ERROR, 1=INFO, 2=DEBUG"
456 @echo ""
457 @echo " TEST_JOBS=[<n>|auto]"
458 @echo " use at most <n> parallel python processes for test"
459 @echo " execution, if auto, set to number of available cpus"
460 @echo " (default: 1)"
461 @echo ""
462 @echo " MAX_VPP_CPUS=[<n>|auto]"
463 @echo " use at most <n> cpus for running vpp"
464 @echo " 'auto' sets to number of available cpus"
465 @echo " (default: auto)"
466 @echo ""
467 @echo " CACHE_OUTPUT=[0|n|no]"
468 @echo " disable caching VPP stdout/stderr and logging it"
469 @echo " as one block after test finishes"
470 @echo " (default: yes)"
471 @echo ""
472 @echo " FAILFAST=[1|y|yes]"
473 @echo " if enabled, stop running tests on first failure"
474 @echo " otherwise finish running whole suite"
475 @echo " (default: no)"
476 @echo ""
477 @echo " TIMEOUT=<timeout>"
478 @echo " fail test suite if any single test takes longer"
479 @echo " than <timeout> (in seconds) to finish"
480 @echo " (default: 600)"
481 @echo ""
482 @echo " RETRIES=<n>"
483 @echo " retry failed tests <n> times"
484 @echo " (default: 0)"
485 @echo ""
486 @echo " DEBUG=<type>"
487 @echo " configure VPP debugging:"
488 @echo " DEBUG=core"
489 @echo " detect coredump and load it in gdb on crash"
490 @echo ""
491 @echo " DEBUG=gdb"
492 @echo " print VPP PID and wait for user input before"
493 @echo " running and tearing down a testcase, allowing"
494 @echo " easy gdb attach"
495 @echo ""
496 @echo " DEBUG=gdbserver"
497 @echo " same as above, but run gdb inside a gdb server"
498 @echo ""
499 @echo " DEBUG=attach"
500 @echo " attach to existing vpp in running in gdb"
501 @echo " (see test-start-vpp-in-gdb)"
502 @echo " (default: none)"
503 @echo ""
504 @echo " STEP=[1|y|yes]"
505 @echo " enable stepping through a testcase"
506 @echo " (default: no)"
507 @echo ""
508 @echo " SANITY=[0|n|no]"
509 @echo " disable sanity import of vpp-api/vpp sanity"
510 @echo " run before running tests"
511 @echo " (default: yes)"
512 @echo ""
513 @echo " EXTENDED_TESTS=[1|y|yes]"
514 @echo " run extended tests"
515 @echo " (default: no)"
516 @echo ""
517 @echo " TEST=<filter>,[<filter>],..."
518 @echo " only run tests matching one or more comma-delimited"
519 @echo " filter expressions"
520 @echo ""
521 @echo " simple filter:"
522 @echo " file name or file suffix select all tests from a file"
523 @echo " examples:"
524 @echo " TEST=test_bfd"
525 @echo " TEST=bfd"
526 @echo " equivalent expressions selecting all"
527 @echo " tests defined in test_bfd.py"
528 @echo ""
529 @echo " wildcard filter:"
530 @echo " advanced filtering based on test file, test class"
531 @echo " and test function"
532 @echo " each filter expression is in the form of"
533 @echo " <file>.<class>.<test function>"
534 @echo " each of the tokens can be left empty or replaced"
535 @echo " with '*' to select all objects available"
536 @echo " examples:"
537 @echo " TEST=test_bfd.*.*"
538 @echo " TEST=test_bfd.."
539 @echo " TEST=bfd.*.*"
540 @echo " TEST=bfd.."
541 @echo " select all tests defined in test_bfd.py"
542 @echo " TEST=bfd.BFDAPITestCase.*"
543 @echo " TEST=bfd.BFDAPITestCase."
544 @echo " select all tests from test_bfd.py"
545 @echo " which are part of BFDAPITestCase class"
546 @echo " TEST=bfd.BFDAPITestCase.test_add_bfd"
547 @echo " select a single test named test_add_bfd"
548 @echo " from test_bfd.py/BFDAPITestCase"
549 @echo " TEST=..test_add_bfd"
550 @echo " TEST=*.*.test_add_bfd"
551 @echo " select all test functions named test_add_bfd"
552 @echo " from all files/classes"
553 @echo " TEST=bfd,ip4,..test_icmp_error"
554 @echo " select all test functions in test_bfd.py,"
555 @echo " test_ip4.py and all test functions named"
556 @echo " 'test_icmp_error' in all files"
557 @echo " (default: '')"
558 @echo ""
559 @echo " VARIANT=<variant>"
560 @echo " specify which march node variant to unit test"
561 @echo " e.g. VARIANT=skx test the skx march variants"
562 @echo " e.g. VARIANT=icl test the icl march variants"
563 @echo " (default: '')"
564 @echo ""
565 @echo " COREDUMP_SIZE=<size>"
566 @echo " pass <size> as unix { coredump-size <size> } argument"
567 @echo " to vpp, e.g. COREDUMP_SIZE=4g or COREDUMP_SIZE=unlimited"
568 @echo " (default: '')"
569 @echo ""
570 @echo " COREDUMP_COMPRESS=[1|y|yes]"
571 @echo " if no debug option is set, compress any core files"
572 @echo " (default: no)"
573 @echo ""
574 @echo " EXTERN_TESTS=<path>"
575 @echo " include out-of-tree test_*.py files under <path>"
576 @echo " (default: '')"
577 @echo ""
578 @echo " EXTERN_PLUGINS=<path>"
579 @echo " load out-of-tree vpp plugins in <path>"
580 @echo " (default: '')"
581 @echo ""
582 @echo " EXTERN_COV_DIR=<path>"
583 @echo " path to out-of-tree prefix, where source, object"
584 @echo " and .gcda files can be found for coverage report"
585 @echo " (default: '')"
586 @echo ""
587 @echo " PROFILE=[1|y|yes]"
588 @echo " enable profiling of test framework via cProfile module"
589 @echo " (default: no)"
590 @echo ""
591 @echo " PROFILE_SORT_BY=opt"
592 @echo " sort profiling report by opt - see cProfile documentation"
593 @echo " for possible values"
594 @echo " (default: cumtime)"
595 @echo ""
596 @echo " PROFILE_OUTPUT=file"
597 @echo " output profiling info to file - use absolute path"
598 @echo " (default: stdout)"
599 @echo ""
600 @echo " TEST_DEBUG=[1|y|yes]"
601 @echo " enable debugging of the test framework itself (expert)"
602 @echo " (default: no)"
603 @echo ""
Dave Wallace1c95e122023-06-21 23:14:38 -0400604 @echo " TEST_GCOV=[1|y|yes]"
605 @echo " enable tests specifically designed soley for code coverage"
606 @echo " (default: no)"
607 @echo ""
Klement Sekera08c50e32023-04-14 17:44:04 +0200608 @echo " API_FUZZ=[1|y|yes]"
609 @echo " enable VPP api fuzz testing"
610 @echo " (default: no)"
611 @echo ""
612 @echo " RND_SEED=<seed>"
613 @echo " random seed used by test framework"
614 @echo " (default: time.time())"
Klement Sekera45a95dd2019-11-05 11:18:25 +0000615 @echo ""
Klement Sekerae2636852021-03-16 12:52:12 +0100616 @echo "Starting VPP in GDB for use with DEBUG=attach:"
617 @echo ""
618 @echo " test-start-vpp-in-gdb - start VPP in gdb (release)"
619 @echo " test-start-vpp-debug-in-gdb - start VPP in gdb (debug)"
620 @echo ""