196bca5c25f0b5d2c6be690ba2fdd9e8c5694ca6
[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 ($(PARALLEL),)
27 PARALLEL=1
28 endif
29
30 ifeq ($(REPEAT),)
31 REPEAT=0
32 endif
33
34 ifeq ($(VPPSRC),)
35 VPPSRC=$(shell pwd)/../..
36 endif
37
38 ifeq ($(UBUNTU_CODENAME),)
39 UBUNTU_CODENAME=$(shell grep '^UBUNTU_CODENAME=' /etc/os-release | cut -f2- -d=)
40 endif
41
42 ifeq ($(ARCH),)
43 ARCH=$(shell dpkg --print-architecture)
44 endif
45
46 list_tests = @go run github.com/onsi/ginkgo/v2/ginkgo --dry-run -v --no-color --seed=2 | head -n -1 | grep 'Test' | \
47                 sed 's/^/* /; s/\(Suite\) /\1\//g'
48
49 .PHONY: help
50 help:
51         @echo "Make targets:"
52         @echo " test                 - run tests"
53         @echo " build                - build test infra"
54         @echo " build-debug          - build test infra (vpp debug image)"
55         @echo " build-go             - just build golang files"
56         @echo " fixstyle             - format .go source files"
57         @echo " list-tests           - list all tests"
58         @echo
59         @echo "make build arguments:"
60         @echo " UBUNTU_VERSION           - ubuntu version for docker image"
61         @echo " HST_EXTENDED_TESTS       - build extended tests"
62         @echo
63         @echo "make test arguments:"
64         @echo " PERSIST=[true|false]     - whether clean up topology and dockers after test"
65         @echo " VERBOSE=[true|false]     - verbose output"
66         @echo " UNCONFIGURE=[true|false] - unconfigure selected test"
67         @echo " DEBUG=[true|false]       - attach VPP to GDB"
68         @echo " TEST=[test-name]         - specific test to run"
69         @echo " CPUS=[n-cpus]            - number of cpus to run with vpp"
70         @echo " VPPSRC=[path-to-vpp-src] - path to vpp source files (for gdb)"
71         @echo " PARALLEL=[n-cpus]        - number of test processes to spawn to run in parallel"
72         @echo " REPEAT=[n]               - repeat tests up to N times or until a failure occurs"
73         @echo
74         @echo "List of all tests:"
75         $(call list_tests)
76
77 .PHONY: list-tests
78 list-tests:
79         $(call list_tests)
80
81 build-vpp-release:
82         @make -C ../.. build-release
83
84 build-vpp-debug:
85         @make -C ../.. build
86
87 .PHONY: test
88 test: .deps.ok .build.vpp
89         @bash ./test --persist=$(PERSIST) --verbose=$(VERBOSE) \
90                 --unconfigure=$(UNCONFIGURE) --debug=$(DEBUG) --test=$(TEST) --cpus=$(CPUS) \
91                 --vppsrc=$(VPPSRC) --parallel=$(PARALLEL) --repeat=$(REPEAT)
92
93 build-go:
94         go build ./tools/http_server
95
96 build: .deps.ok build-vpp-release build-go
97         @rm -f .build.vpp
98         bash ./script/build_hst.sh release
99         @touch .build.vpp
100
101 build-debug: .deps.ok build-vpp-debug build-go
102         @rm -f .build.vpp
103         bash ./script/build_hst.sh debug
104         @touch .build.vpp
105
106 .deps.ok:
107         @sudo make install-deps
108
109 .PHONY: install-deps
110 install-deps:
111         @rm -f .deps.ok
112         @apt-get update \
113                 && apt-get install -y apt-transport-https ca-certificates curl software-properties-common \
114                 && apt-get install -y golang apache2-utils wrk bridge-utils
115         @if [ ! -f /usr/share/keyrings/docker-archive-keyring.gpg ] ; then \
116                 curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg; \
117                 echo "deb [arch=$(ARCH) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(UBUNTU_CODENAME) stable" \
118                         | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null ; \
119                 apt-get update; \
120         fi
121         @apt-get install -y docker-ce
122         @touch .deps.ok
123
124 .PHONY: fixstyle
125 fixstyle:
126         @gofmt -w .
127         @go mod tidy