Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 1 | .PHONY: verify-python-path |
Damjan Marion | f56b77a | 2016-10-03 19:44:57 +0200 | [diff] [blame] | 2 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 3 | verify-python-path: |
| 4 | ifndef VPP_PYTHON_PREFIX |
| 5 | $(error VPP_PYTHON_PREFIX is not set) |
| 6 | endif |
| 7 | |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 8 | UNITTEST_EXTRA_OPTS="" |
| 9 | |
| 10 | ifeq ($(FAILFAST),1) |
| 11 | UNITTEST_EXTRA_OPTS="-f" |
| 12 | endif |
| 13 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 14 | PYTHON_VENV_PATH=$(VPP_PYTHON_PREFIX)/virtualenv |
Filip Tehlar | 770e89e | 2017-01-31 10:39:16 +0100 | [diff] [blame] | 15 | PYTHON_DEPENDS=scapy==2.3.3 pexpect subprocess32 git+https://github.com/klement/py-lispnetworking@setup |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 16 | SCAPY_SOURCE=$(PYTHON_VENV_PATH)/lib/python2.7/site-packages/ |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 17 | BUILD_COV_DIR = $(BR)/test-cov |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 18 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 19 | PIP_INSTALL_DONE=$(VPP_PYTHON_PREFIX)/pip-install.done |
| 20 | PIP_PATCH_DONE=$(VPP_PYTHON_PREFIX)/pip-patch.done |
| 21 | PAPI_INSTALL_DONE=$(VPP_PYTHON_PREFIX)/papi-install.done |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 22 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 23 | PAPI_INSTALL_FLAGS=$(PIP_INSTALL_DONE) $(PIP_PATCH_DONE) $(PAPI_INSTALL_DONE) |
| 24 | |
| 25 | $(PIP_INSTALL_DONE): |
Klement Sekera | da505f6 | 2017-01-04 12:58:53 +0100 | [diff] [blame] | 26 | @virtualenv $(PYTHON_VENV_PATH) -p python2.7 |
Klement Sekera | 778c276 | 2016-11-08 02:00:28 +0100 | [diff] [blame] | 27 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install $(PYTHON_DEPENDS)" |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 28 | @touch $@ |
| 29 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 30 | $(PIP_PATCH_DONE): $(PIP_INSTALL_DONE) |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 31 | @echo --- patching --- |
Dave Wallace | 6f692d6 | 2017-01-26 21:07:10 -0500 | [diff] [blame] | 32 | @sleep 1 # Ensure python recompiles patched *.py files -> *.pyc |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 33 | for f in $(CURDIR)/patches/scapy-2.3.3/*.patch ; do \ |
| 34 | echo Applying patch: $$(basename $$f) ; \ |
| 35 | patch -p1 -d $(SCAPY_SOURCE) < $$f ; \ |
| 36 | done |
| 37 | @touch $@ |
| 38 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 39 | $(PAPI_INSTALL_DONE): $(PIP_PATCH_DONE) |
Damjan Marion | 37d77e9 | 2016-12-28 15:14:46 +0100 | [diff] [blame] | 40 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && cd $(WS_ROOT)/src/vpp-api/python && python setup.py install" |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 41 | @touch $@ |
| 42 | |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 43 | define retest-func |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 44 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && python run_tests.py discover $(UNITTEST_EXTRA_OPTS) -p test_\"*.py\"" |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 45 | endef |
| 46 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 47 | test: reset verify-python-path $(PAPI_INSTALL_DONE) |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 48 | $(call retest-func) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 49 | |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 50 | retest: reset verify-python-path |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 51 | $(call retest-func) |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 52 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 53 | .PHONY: wipe doc |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 54 | |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 55 | reset: |
Klement Sekera | f62ae12 | 2016-10-11 11:47:09 +0200 | [diff] [blame] | 56 | @rm -f /dev/shm/vpp-unittest-* |
| 57 | @rm -rf /tmp/vpp-unittest-* |
| 58 | |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 59 | wipe: reset |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 60 | @rm -rf $(PYTHON_VENV_PATH) |
| 61 | @rm -f $(PAPI_INSTALL_FLAGS) |
Neale Ranns | 177bbdc | 2016-11-15 09:46:51 +0000 | [diff] [blame] | 62 | |
Klement Sekera | 6320514 | 2017-02-03 08:18:53 +0100 | [diff] [blame] | 63 | doc: verify-python-path $(PIP_PATCH_DONE) |
Klement Sekera | da505f6 | 2017-01-04 12:58:53 +0100 | [diff] [blame] | 64 | @virtualenv $(PYTHON_VENV_PATH) -p python2.7 |
Klement Sekera | 6320514 | 2017-02-03 08:18:53 +0100 | [diff] [blame] | 65 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install sphinx sphinx-rtd-theme" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 66 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && make -C doc WS_ROOT=$(WS_ROOT) BR=$(BR) NO_VPP_PAPI=1 html" |
| 67 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 68 | .PHONY: wipe-doc |
| 69 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 70 | wipe-doc: |
| 71 | @make -C doc wipe BR=$(BR) |
| 72 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 73 | cov: wipe-cov reset verify-python-path $(PAPI_INSTALL_DONE) |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 74 | @lcov --zerocounters --directory $(VPP_TEST_BUILD_DIR) |
| 75 | $(call retest-func) |
| 76 | @mkdir $(BUILD_COV_DIR) |
| 77 | @lcov --capture --directory $(VPP_TEST_BUILD_DIR) --output-file $(BUILD_COV_DIR)/coverage.info |
| 78 | @genhtml $(BUILD_COV_DIR)/coverage.info --output-directory $(BUILD_COV_DIR)/html |
| 79 | @echo |
| 80 | @echo "Build finished. Code coverage report is in $(BUILD_COV_DIR)/html/index.html" |
| 81 | |
Klement Sekera | 9f9d07b | 2016-12-12 09:20:50 +0100 | [diff] [blame] | 82 | .PHONY: wipe-cov |
| 83 | |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 84 | wipe-cov: wipe |
| 85 | @rm -rf $(BUILD_COV_DIR) |
| 86 | |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 87 | .PHONY: checkstyle |
| 88 | checkstyle: verify-python-path |
| 89 | @virtualenv $(PYTHON_VENV_PATH) -p python2.7 |
Neale Ranns | aaa396a | 2017-02-05 09:12:02 -0800 | [diff] [blame] | 90 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate && pip install pep8" |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 91 | @bash -c "source $(PYTHON_VENV_PATH)/bin/activate &&\ |
| 92 | pep8 --show-source -v $(WS_ROOT)/test/*.py ||\ |
| 93 | (echo \"*******************************************************************\" &&\ |
| 94 | echo \"* Test framework PEP8 compliance check FAILED \" &&\ |
| 95 | echo \"*******************************************************************\" &&\ |
| 96 | false)" |
| 97 | @echo "*******************************************************************" |
| 98 | @echo "* Test framework PEP8 compliance check passed" |
| 99 | @echo "*******************************************************************" |
| 100 | |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 101 | help: |
| 102 | @echo "Running tests:" |
| 103 | @echo "" |
| 104 | @echo " test - build and run functional tests" |
| 105 | @echo " test-debug - build and run functional tests (debug build)" |
| 106 | @echo " retest - run functional tests" |
| 107 | @echo " retest-debug - run functional tests (debug build)" |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 108 | @echo " test-wipe - wipe (temporary) files generated by unit tests" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 109 | @echo "" |
| 110 | @echo "Arguments controlling test runs:" |
| 111 | @echo " V=[0|1|2] - set test verbosity level" |
Klement Sekera | acb9b8e | 2017-02-14 02:55:31 +0100 | [diff] [blame] | 112 | @echo " FAILFAST=[0|1] - fail fast if 1, complete all tests if 0" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 113 | @echo " DEBUG=<type> - set VPP debugging kind" |
| 114 | @echo " DEBUG=core - detect coredump and load it in gdb on crash" |
| 115 | @echo " DEBUG=gdb - allow easy debugging by printing VPP PID " |
| 116 | @echo " and waiting for user input before running " |
| 117 | @echo " and tearing down a testcase" |
| 118 | @echo " DEBUG=gdbserver - run gdb inside a gdb server, otherwise " |
| 119 | @echo " same as above" |
| 120 | @echo " STEP=[yes|no] - ease debugging by stepping through a testcase " |
Klement Sekera | 104543f | 2017-02-03 07:29:43 +0100 | [diff] [blame] | 121 | @echo " TEST=<filter> - filter the set of tests:" |
| 122 | @echo " by file-name - only run tests from specified file, e.g. TEST=test_bfd selects all tests from test_bfd.py" |
| 123 | @echo " by file-suffix - same as file-name, but 'test_' is omitted e.g. TEST=bfd selects all tests from test_bfd.py" |
| 124 | @echo " by wildcard - wildcard filter is <file>.<class>.<test function>, each can be replaced by '*'" |
| 125 | @echo " e.g. TEST='test_bfd.*.*' is equivalent to above example of filter by file-name" |
| 126 | @echo " TEST='bfd.*.*' is equivalent to above example of filter by file-suffix" |
| 127 | @echo " TEST='bfd.BFDAPITestCase.*' selects all tests from test_bfd.py which are part of BFDAPITestCase class" |
| 128 | @echo " TEST='bfd.BFDAPITestCase.test_add_bfd' selects a single test named test_add_bfd from test_bfd.py/BFDAPITestCase" |
| 129 | @echo " TEST='*.*.test_add_bfd' selects all test functions named test_add_bfd from all files/classes" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 130 | @echo "" |
| 131 | @echo "Creating test documentation" |
| 132 | @echo " test-doc - generate documentation for test framework" |
Juraj Sloboda | 0279b29 | 2016-11-16 19:50:24 +0100 | [diff] [blame] | 133 | @echo " test-wipe-doc - wipe documentation for test framework" |
| 134 | @echo "" |
| 135 | @echo "Creating test code coverage report" |
| 136 | @echo " test-cov - generate code coverage report for test framework" |
| 137 | @echo " test-wipe-cov - wipe code coverage report for test framework" |
Klement Sekera | 277b89c | 2016-10-28 13:20:27 +0200 | [diff] [blame] | 138 | @echo "" |
Klement Sekera | 72715ee | 2017-01-17 10:37:05 +0100 | [diff] [blame] | 139 | @echo "Verifying code-style" |
| 140 | @echo " test-checkstyle - check PEP8 compliance" |
| 141 | @echo "" |