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