3d7673a7267dbc558f9cf954188e8e32553a510b
[vpp.git] / extras / hs-test / Makefile
1
2 ifeq ($(VERBOSE),)
3 VERBOSE=false
4 endif
5
6 ifeq ($(PERSIST),)
7 PERSIST=false
8 endif
9
10 ifeq ($(UNCONFIGURE),)
11 UNCONFIGURE=false
12 endif
13
14 ifeq ($(TEST),)
15 TEST=all
16 endif
17
18 ifeq ($(DEBUG),)
19 DEBUG=false
20 endif
21
22 ifeq ($(CPUS),)
23 CPUS=1
24 endif
25
26 ifeq ($(UBUNTU_CODENAME),)
27 UBUNTU_CODENAME=$(shell grep '^UBUNTU_CODENAME=' /etc/os-release | cut -f2- -d=)
28 endif
29
30 ifeq ($(ARCH),)
31 ARCH=$(shell dpkg --print-architecture)
32 endif
33
34 list_tests = @(grep -r ') Test' *_test.go | cut -d '*' -f2 | cut -d '(' -f1 | \
35                 tr -d ' ' | tr ')' '/' | sed 's/Suite//')
36
37 .PHONY: help
38 help:
39         @echo "Make targets:"
40         @echo " test                 - run tests"
41         @echo " build                - build test infra"
42         @echo " build-debug          - build test infra (vpp debug image)"
43         @echo " build-go             - just build golang files"
44         @echo " fixstyle             - format .go source files"
45         @echo " list-tests           - list all tests"
46         @echo
47         @echo "Make arguments:"
48         @echo " UBUNTU_VERSION           - ubuntu version for docker image"
49         @echo " PERSIST=[true|false]     - whether clean up topology and dockers after test"
50         @echo " VERBOSE=[true|false]     - verbose output"
51         @echo " UNCONFIGURE=[true|false] - unconfigure selected test"
52         @echo " DEBUG=[true|false]       - attach VPP to GDB"
53         @echo " TEST=[test-name]         - specific test to run"
54         @echo " CPUS=[n-cpus]            - number of cpus to run with vpp"
55         @echo
56         @echo "List of all tests:"
57         $(call list_tests)
58
59 .PHONY: list-tests
60 list-tests:
61         $(call list_tests)
62
63 build-vpp-release:
64         @make -C ../.. build-release
65
66 build-vpp-debug:
67         @make -C ../.. build
68
69 .PHONY: test
70 test: .deps.ok .build.vpp
71         @bash ./test --persist=$(PERSIST) --verbose=$(VERBOSE) \
72                 --unconfigure=$(UNCONFIGURE) --debug=$(DEBUG) --test=$(TEST) --cpus=$(CPUS)
73
74 build-go:
75         go build ./tools/http_server
76
77 build: .deps.ok build-vpp-release build-go
78         @rm -f .build.vpp
79         bash ./script/build.sh release
80         @touch .build.vpp
81
82 build-debug: .deps.ok build-vpp-debug build-go
83         @rm -f .build.vpp
84         bash ./script/build.sh debug
85         @touch .build.vpp
86
87 .deps.ok:
88         @sudo make install-deps
89
90 .PHONY: install-deps
91 install-deps:
92         @rm -f .deps.ok
93         @apt-get update \
94                 && apt-get install -y apt-transport-https ca-certificates curl software-properties-common \
95                 && apt-get install -y golang apache2-utils wrk bridge-utils
96         @if [ ! -f /usr/share/keyrings/docker-archive-keyring.gpg ] ; then \
97                 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg; \
98                 echo "deb [arch=$(ARCH) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(UBUNTU_CODENAME) stable" \
99                         | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null ; \
100                 apt-get update; \
101         fi
102         @apt-get install -y docker-ce
103         @touch .deps.ok
104
105 .PHONY: fixstyle
106 fixstyle:
107         @gofmt -w .
108         @go mod tidy