blob: 5439083d7c1d538f2b7102d3460b0e450b5560b1 [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 Wallace940a70f2024-04-03 12:31:42 -040077PIP_VERSION=24.0
Aloys Augustinef29fa42020-05-25 18:07:24 +020078# Keep in sync with requirements.txt
Dave Wallace940a70f2024-04-03 12:31:42 -040079PIP_TOOLS_VERSION=7.4.1
80PIP_SETUPTOOLS_VERSION=69.2.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=
Klement Sekeraca2f2e12024-05-23 11:19:51 +0200258ifneq ($(DECODE_PCAPS),)
259ARG18=--decode-pcaps=$(DECODE_PCAPS)
Dave Wallace8800f732023-08-31 00:47:44 -0400260endif
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
Dave Wallace8a284cc2024-01-16 13:12:27 -0500353COV_REM_NOT_CODE="/usr/include/*" "*/build-root/*" "/opt/*" "/usr/lib/*" \
354 "*_test.*" "*test_*" "*vat*" "*/vnet/unix/gdb_funcs.c" \
355 "*pg.c"
356
357COV_REM_DRIVERS="*rdma*" "*/plugins/af_packet/*" "*/plugins/af_xdp/*" \
358 "*/plugins/avf/*" "*/plugins/dma_intel/*" "*/vlib/pci/*" \
359 "*/vnet/devices/*" "*/vlib/dma/*" "*/plugins/vmxnet3/*" \
360 "*/vnet/devices/virtio/*" "*/plugins/perfmon/arm*" \
361 "*/plugins/perfmon/intel/*" "*/vlib/vmbus/*" \
362 "*/vnet/dev/*" "*/plugins/dev_ena/*" "*/plugins/dev_iavf/*"
363
364COV_REM_UNUSED_FEAT="*/plugins/ioam/analyse/*" "*/plugins/ioam/lib-*/*" \
365 "*/plugins/ioam/export-common/*" "*/vnet/srp/*" \
366 "*/lawful-intercept/*" "*/lisp/*" "*/vnet/osi/*" \
367 "*/plugins/nsh/*"
368
369COV_REM_TODO_NO_TEST="*/vpp-api/client/*" "*/plugins/prom/*" \
370 "*/plugins/tlspicotls/*" "*/plugins/tlsmbedtls/*" \
371 "*/vppinfra/perfmon/*" "*/plugins/ila/*" \
372 "*/vlib/linux/*" "*/vnet/util/radix.c" "*/vapi/vapi.hpp" \
373 "*/vpp/api/types.c" "*/vpp/api/json_format.c" \
374 "*/plugins/ioam/*/*.h" "*/linux/netns.c" "*/vnet/flow/*" \
375 "*/vppinfra/random.c" "*/vppinfra/ring.h" \
376 "*/vppinfra/bihash_vec8_8.h" "*/vppinfra/maplog.c" \
377 "*/vppinfra/format_table.c" "*/vppinfra/timing_wheel.c" \
378 "*/vppinfra/macros.c" "*/vppinfra/valloc.c" \
379 "*/vppinfra/jsonformat.c" "*/vppinfra/vector/array_mask.h" \
380 "*/vppinfra/vector/toeplitz.c" "*/plugins/vrrp/vrrp_packet.h" \
381 "*/vnet/srv6/sr.h" "*/vlibapi/api_format.c" \
382 "*/vlibapi/node_serialize.c" "*/plugins/quic/error.c" \
383 "*/vnet/ipfix-export/flow_report_classify.h" \
384 "*/vnet/ip/ip6_ll_types.c" "*/vnet/ip/ip_psh_cksum.h" \
385 "*/vnet/ip/ip6_hop_by_hop.h" "*/vnet/ip/ip_format_fns.h" \
386 "*/vnet/dpo/classify_dpo.h" "*/vnet/dpo/l3_proxy_dpo.h" \
387 "*/vnet/ipsec/esp_format.c" "*/vnet/ethernet/sfp.c" \
388 "*/vnet/ethernet/ethernet_format_fns.h" \
389 "*/plugins/ikev2/ikev2_format.c" "*/vnet/bier/bier_types.c"
390
Matus Fabian519983b2024-08-01 16:00:37 +0200391COV_REM_ALT_TEST="*/plugins/hs_apps/*" "*/plugins/http/*.h"
392
Dave Wallace1c95e122023-06-21 23:14:38 -0400393.PHONY: cov-post
394cov-post: wipe-cov $(BUILD_COV_DIR)
395 @lcov --capture \
396 --directory $(VPP_BUILD_DIR) \
adrianvillin85121452024-01-11 11:59:47 +0100397 --output-file $(BUILD_COV_DIR)/coverage$(HS_TEST).info
Dave Wallace1c95e122023-06-21 23:14:38 -0400398 @test -z "$(EXTERN_COV_DIR)" || \
399 lcov --capture \
400 --directory $(EXTERN_COV_DIR) \
adrianvillin85121452024-01-11 11:59:47 +0100401 --output-file $(BUILD_COV_DIR)/extern-coverage$(HS_TEST).info
402 @lcov --remove $(BUILD_COV_DIR)/coverage$(HS_TEST).info \
Dave Wallace8a284cc2024-01-16 13:12:27 -0500403 $(COV_REM_NOT_CODE) \
404 $(COV_REM_DRIVERS) \
405 $(COV_REM_TODO_NO_TEST) \
406 $(COV_REM_UNUSED_FEAT) \
407 $(COV_REM_ALT_TEST) \
adrianvillin85121452024-01-11 11:59:47 +0100408 -o $(BUILD_COV_DIR)/coverage-filtered$(HS_TEST).info
409 @genhtml $(BUILD_COV_DIR)/coverage-filtered$(HS_TEST).info \
Dave Wallace1c95e122023-06-21 23:14:38 -0400410 --output-directory $(BUILD_COV_DIR)/html
411 @test -z "$(EXTERN_COV_DIR)" || \
adrianvillin85121452024-01-11 11:59:47 +0100412 genhtml $(BUILD_COV_DIR)/extern-coverage$(HS_TEST).info \
Dave Wallace1c95e122023-06-21 23:14:38 -0400413 --output-directory $(BUILD_COV_DIR)/extern-html
Juraj Sloboda0279b292016-11-16 19:50:24 +0100414 @echo
415 @echo "Build finished. Code coverage report is in $(BUILD_COV_DIR)/html/index.html"
Klement Sekeracd6cb982017-05-11 06:55:32 +0200416 @test -z "$(EXTERN_COV_DIR)" || echo "Code coverage report for out-of-tree objects is in $(BUILD_COV_DIR)/extern-html/index.html"
adrianvillin85121452024-01-11 11:59:47 +0100417 @mkdir -p $(BR)/test-coverage-merged
418 @cp -f $(BUILD_COV_DIR)/coverage-filtered$(HS_TEST).info $(BR)/test-coverage-merged
Juraj Sloboda0279b292016-11-16 19:50:24 +0100419
Dave Wallace1c95e122023-06-21 23:14:38 -0400420.PHONY: cov
421cov:
Tom Jones0aa0d6f2024-01-18 10:48:17 +0000422 $(MAKE) -C . cov-prep test cov-post
Dave Wallace1c95e122023-06-21 23:14:38 -0400423
Klement Sekera9f9d07b2016-12-12 09:20:50 +0100424.PHONY: wipe-cov
Juraj Sloboda0279b292016-11-16 19:50:24 +0100425wipe-cov: wipe
426 @rm -rf $(BUILD_COV_DIR)
427
Dave Wallacef0797d12019-11-15 17:29:15 -0500428.PHONY: wipe-papi
429wipe-papi:
430 @rm -rf $(PAPI_INSTALL_DONE) $(PAPI_WIPE_DIST)
Paul Vinciguerra2648e442019-07-09 16:49:46 -0400431
Dave Wallacef0797d12019-11-15 17:29:15 -0500432.PHONY: wipe-all
Nathan Skrzypczak9ad39c02021-08-19 11:38:06 +0200433wipe-all: wipe wipe-papi wipe-cov
Dave Wallacef0797d12019-11-15 17:29:15 -0500434 @rm -rf $(TEST_BR)
Paul Vinciguerra2648e442019-07-09 16:49:46 -0400435
Klement Sekerae2636852021-03-16 12:52:12 +0100436.PHONY: start-gdb
437start-gdb: sanity
Klement Sekerab23ffd72021-05-31 16:08:53 +0200438 @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 +0100439
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200440.PHONY: checkstyle-python-all
441checkstyle-python-all: $(PIP_INSTALL_DONE)
Ole Troan4aacc012019-10-23 11:47:33 +0200442 @bash -c "source $(VENV_PATH)/bin/activate &&\
Klement Sekerae2159bd2022-05-11 16:54:09 +0200443 black -t py39 --check --diff $(WS_ROOT) ||\
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200444 (echo \"*************************************************************************\" &&\
445 echo \"* Test framework PEP8 compliance check FAILED (maybe: make fixstyle-python)\" &&\
446 echo \"*************************************************************************\" &&\
447 false)"
Klement Sekera72715ee2017-01-17 10:37:05 +0100448 @echo "*******************************************************************"
Klement Sekerad9b0c6f2022-04-26 19:02:15 +0200449 @echo "* Test framework PEP8 compliance check passed"
450 @echo "*******************************************************************"
451
452.PHONY: checkstyle
453checkstyle: checkstyle-python-all
454
455.PHONY: fixstyle-python-all
456fixstyle-python-all: $(PIP_INSTALL_DONE)
457 @bash -c "source $(VENV_PATH)/bin/activate &&\
458 black -t py39 $(WS_ROOT) ||\
459 (echo \"*************************************************************************\" &&\
460 echo \"* Test framework PEP8 compliance check FAILED (maybe: make fixstyle-python)\" &&\
461 echo \"*************************************************************************\" &&\
462 false)"
463 @echo "*******************************************************************"
464 @echo "* Test framework PEP8 compliance check passed"
Klement Sekera72715ee2017-01-17 10:37:05 +0100465 @echo "*******************************************************************"
466
Dave Wallacef0797d12019-11-15 17:29:15 -0500467.PHONY: help
Klement Sekera277b89c2016-10-28 13:20:27 +0200468help:
469 @echo "Running tests:"
470 @echo ""
Dave Wallacef0797d12019-11-15 17:29:15 -0500471 @echo " test - build and run (basic) functional tests"
472 @echo " test-debug - build and run (basic) functional tests (debug build)"
Dave Wallace1c95e122023-06-21 23:14:38 -0400473 @echo " test-cov - generate code coverage report for functional tests"
474 @echo " test-cov-prep - coverage phase #1 : prepare lcov"
475 @echo " test-cov-build - coverage phase #2 : build gcov image & run tests against it (use TEST=)"
476 @echo " test-cov-post - coverage phase #3 : generate lcov html report"
adrianvillin85121452024-01-11 11:59:47 +0100477 @echo " test-cov-both - generate and merge code coverage report for Python and Golang tests"
Dave Wallacef0797d12019-11-15 17:29:15 -0500478 @echo " test-all - build and run functional and extended tests"
479 @echo " test-all-debug - build and run functional and extended tests (debug build)"
Dave Wallace1c95e122023-06-21 23:14:38 -0400480 @echo " test-all-cov - generate code coverage report for functional and extended tests"
Dave Wallacef0797d12019-11-15 17:29:15 -0500481 @echo " retest - run functional tests"
482 @echo " retest-debug - run functional tests (debug build)"
483 @echo " retest-all - run functional and extended tests"
484 @echo " retest-all-debug - run functional and extended tests (debug build)"
Dave Wallacef0797d12019-11-15 17:29:15 -0500485 @echo " test-wipe - wipe (temporary) files generated by unit tests"
486 @echo " test-wipe-cov - wipe code coverage report for test framework"
Dave Wallacef0797d12019-11-15 17:29:15 -0500487 @echo " test-wipe-papi - rebuild vpp_papi sources"
Nathan Skrzypczak9ad39c02021-08-19 11:38:06 +0200488 @echo " test-wipe-all - wipe (temporary) files generated by unit tests, and coverage"
Dave Wallacef0797d12019-11-15 17:29:15 -0500489 @echo " test-shell - enter shell with test environment"
490 @echo " test-shell-debug - enter shell with test environment (debug build)"
Klement Sekerae2636852021-03-16 12:52:12 +0100491 @echo " test-refresh-deps - refresh the Python dependencies for the tests"
Klement Sekera277b89c2016-10-28 13:20:27 +0200492 @echo ""
Klement Sekera08c50e32023-04-14 17:44:04 +0200493 @echo "Environment variables controlling test runs:"
Klement Sekerab23ffd72021-05-31 16:08:53 +0200494 @echo ""
Klement Sekera08c50e32023-04-14 17:44:04 +0200495 @echo " V=[0|1|2]"
496 @echo " set test verbosity level: 0=ERROR, 1=INFO, 2=DEBUG"
497 @echo ""
498 @echo " TEST_JOBS=[<n>|auto]"
499 @echo " use at most <n> parallel python processes for test"
500 @echo " execution, if auto, set to number of available cpus"
501 @echo " (default: 1)"
502 @echo ""
503 @echo " MAX_VPP_CPUS=[<n>|auto]"
504 @echo " use at most <n> cpus for running vpp"
505 @echo " 'auto' sets to number of available cpus"
506 @echo " (default: auto)"
507 @echo ""
508 @echo " CACHE_OUTPUT=[0|n|no]"
509 @echo " disable caching VPP stdout/stderr and logging it"
510 @echo " as one block after test finishes"
511 @echo " (default: yes)"
512 @echo ""
513 @echo " FAILFAST=[1|y|yes]"
514 @echo " if enabled, stop running tests on first failure"
515 @echo " otherwise finish running whole suite"
516 @echo " (default: no)"
517 @echo ""
518 @echo " TIMEOUT=<timeout>"
519 @echo " fail test suite if any single test takes longer"
520 @echo " than <timeout> (in seconds) to finish"
521 @echo " (default: 600)"
522 @echo ""
523 @echo " RETRIES=<n>"
524 @echo " retry failed tests <n> times"
525 @echo " (default: 0)"
526 @echo ""
527 @echo " DEBUG=<type>"
528 @echo " configure VPP debugging:"
529 @echo " DEBUG=core"
530 @echo " detect coredump and load it in gdb on crash"
531 @echo ""
532 @echo " DEBUG=gdb"
533 @echo " print VPP PID and wait for user input before"
534 @echo " running and tearing down a testcase, allowing"
535 @echo " easy gdb attach"
536 @echo ""
537 @echo " DEBUG=gdbserver"
538 @echo " same as above, but run gdb inside a gdb server"
539 @echo ""
540 @echo " DEBUG=attach"
541 @echo " attach to existing vpp in running in gdb"
542 @echo " (see test-start-vpp-in-gdb)"
543 @echo " (default: none)"
544 @echo ""
545 @echo " STEP=[1|y|yes]"
546 @echo " enable stepping through a testcase"
547 @echo " (default: no)"
548 @echo ""
549 @echo " SANITY=[0|n|no]"
550 @echo " disable sanity import of vpp-api/vpp sanity"
551 @echo " run before running tests"
552 @echo " (default: yes)"
553 @echo ""
554 @echo " EXTENDED_TESTS=[1|y|yes]"
555 @echo " run extended tests"
556 @echo " (default: no)"
557 @echo ""
558 @echo " TEST=<filter>,[<filter>],..."
559 @echo " only run tests matching one or more comma-delimited"
560 @echo " filter expressions"
561 @echo ""
562 @echo " simple filter:"
563 @echo " file name or file suffix select all tests from a file"
564 @echo " examples:"
565 @echo " TEST=test_bfd"
566 @echo " TEST=bfd"
567 @echo " equivalent expressions selecting all"
568 @echo " tests defined in test_bfd.py"
569 @echo ""
570 @echo " wildcard filter:"
571 @echo " advanced filtering based on test file, test class"
572 @echo " and test function"
573 @echo " each filter expression is in the form of"
574 @echo " <file>.<class>.<test function>"
575 @echo " each of the tokens can be left empty or replaced"
576 @echo " with '*' to select all objects available"
577 @echo " examples:"
578 @echo " TEST=test_bfd.*.*"
579 @echo " TEST=test_bfd.."
580 @echo " TEST=bfd.*.*"
581 @echo " TEST=bfd.."
582 @echo " select all tests defined in test_bfd.py"
583 @echo " TEST=bfd.BFDAPITestCase.*"
584 @echo " TEST=bfd.BFDAPITestCase."
585 @echo " select all tests from test_bfd.py"
586 @echo " which are part of BFDAPITestCase class"
587 @echo " TEST=bfd.BFDAPITestCase.test_add_bfd"
588 @echo " select a single test named test_add_bfd"
589 @echo " from test_bfd.py/BFDAPITestCase"
590 @echo " TEST=..test_add_bfd"
591 @echo " TEST=*.*.test_add_bfd"
592 @echo " select all test functions named test_add_bfd"
593 @echo " from all files/classes"
594 @echo " TEST=bfd,ip4,..test_icmp_error"
595 @echo " select all test functions in test_bfd.py,"
596 @echo " test_ip4.py and all test functions named"
597 @echo " 'test_icmp_error' in all files"
598 @echo " (default: '')"
599 @echo ""
600 @echo " VARIANT=<variant>"
601 @echo " specify which march node variant to unit test"
602 @echo " e.g. VARIANT=skx test the skx march variants"
603 @echo " e.g. VARIANT=icl test the icl march variants"
604 @echo " (default: '')"
605 @echo ""
606 @echo " COREDUMP_SIZE=<size>"
607 @echo " pass <size> as unix { coredump-size <size> } argument"
608 @echo " to vpp, e.g. COREDUMP_SIZE=4g or COREDUMP_SIZE=unlimited"
609 @echo " (default: '')"
610 @echo ""
611 @echo " COREDUMP_COMPRESS=[1|y|yes]"
612 @echo " if no debug option is set, compress any core files"
613 @echo " (default: no)"
614 @echo ""
615 @echo " EXTERN_TESTS=<path>"
616 @echo " include out-of-tree test_*.py files under <path>"
617 @echo " (default: '')"
618 @echo ""
619 @echo " EXTERN_PLUGINS=<path>"
620 @echo " load out-of-tree vpp plugins in <path>"
621 @echo " (default: '')"
622 @echo ""
623 @echo " EXTERN_COV_DIR=<path>"
624 @echo " path to out-of-tree prefix, where source, object"
625 @echo " and .gcda files can be found for coverage report"
626 @echo " (default: '')"
627 @echo ""
628 @echo " PROFILE=[1|y|yes]"
629 @echo " enable profiling of test framework via cProfile module"
630 @echo " (default: no)"
631 @echo ""
632 @echo " PROFILE_SORT_BY=opt"
633 @echo " sort profiling report by opt - see cProfile documentation"
634 @echo " for possible values"
635 @echo " (default: cumtime)"
636 @echo ""
637 @echo " PROFILE_OUTPUT=file"
638 @echo " output profiling info to file - use absolute path"
639 @echo " (default: stdout)"
640 @echo ""
641 @echo " TEST_DEBUG=[1|y|yes]"
642 @echo " enable debugging of the test framework itself (expert)"
643 @echo " (default: no)"
644 @echo ""
Dave Wallace1c95e122023-06-21 23:14:38 -0400645 @echo " TEST_GCOV=[1|y|yes]"
646 @echo " enable tests specifically designed soley for code coverage"
647 @echo " (default: no)"
648 @echo ""
Klement Sekera08c50e32023-04-14 17:44:04 +0200649 @echo " API_FUZZ=[1|y|yes]"
650 @echo " enable VPP api fuzz testing"
651 @echo " (default: no)"
652 @echo ""
653 @echo " RND_SEED=<seed>"
654 @echo " random seed used by test framework"
655 @echo " (default: time.time())"
Klement Sekera45a95dd2019-11-05 11:18:25 +0000656 @echo ""
Klement Sekeraca2f2e12024-05-23 11:19:51 +0200657 @echo " DECODE_PCAPS=[all|failed|none]"
658 @echo " decode pcap files using tshark - all, only failed or none"
659 @echo " (default: failed)"
660 @echo ""
Klement Sekerae2636852021-03-16 12:52:12 +0100661 @echo "Starting VPP in GDB for use with DEBUG=attach:"
662 @echo ""
663 @echo " test-start-vpp-in-gdb - start VPP in gdb (release)"
664 @echo " test-start-vpp-debug-in-gdb - start VPP in gdb (debug)"
665 @echo ""