blob: f2b70853764463f8761fbdaf27d34f8dc67c6c94 [file] [log] [blame]
Kailash92764922019-07-25 08:21:39 -07001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Zack Williamsec53a1b2019-09-16 15:50:52 -070015# use bash for pushd/popd, and to fail quickly. virtualenv's activate
16# has undefined variables, so no -u
Zack Williamsa8fe75a2020-01-10 14:25:27 -070017SHELL := bash -e -o pipefail
Kailash92764922019-07-25 08:21:39 -070018
Zack Williamsa8fe75a2020-01-10 14:25:27 -070019ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
Kailash92764922019-07-25 08:21:39 -070020
Zack Williamsa8fe75a2020-01-10 14:25:27 -070021# Configuration and lists of files for linting/testing
22VERSION ?= $(shell cat ./VERSION)
23LINT_ARGS ?= --verbose --configure LineTooLong:120 -e LineTooLong \
24 --configure TooManyTestSteps:30 -e TooManyTestSteps \
Scott Baker27d04db2020-02-06 18:03:21 -080025 --configure TooManyTestCases:50 -e TooManyTestCases \
Zack Williamsa8fe75a2020-01-10 14:25:27 -070026 --configure TooFewTestSteps:1 \
27 --configure TooFewKeywordSteps:1 \
28 --configure FileTooLong:600 -e FileTooLong \
29 -e TrailingWhitespace
30
31PYTHON_FILES := $(wildcard libraries/*.py)
32ROBOT_FILES := $(shell find . -name *.robot -print)
33YAML_FILES := $(shell find ./tests -type f \( -name *.yaml -o -name *.yml \) -print)
34JSON_FILES := $(shell find ./tests -name *.json -print)
35
36# Robot config
37ROBOT_SANITY_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml
Hardik Windlassa3d04b92020-02-17 15:06:05 +000038ROBOT_SANITY_DT_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-dt.yaml
Zack Williamsa8fe75a2020-01-10 14:25:27 -070039ROBOT_FAIL_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml
40ROBOT_SANITY_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-2x2.yaml
41ROBOT_SCALE_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-16.yaml
42ROBOT_SCALE_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-8x2.yaml
43ROBOT_DEBUG_LOG_OPT ?=
44ROBOT_MISC_ARGS ?=
45
Gilles Depatie45fbe042019-11-11 17:10:06 -050046# for backwards compatibility
47sanity-kind: sanity-single-kind
48
Hardik Windlassa3d04b92020-02-17 15:06:05 +000049# target to invoke DT Workflow Sanity
50sanity-kind-dt: ROBOT_MISC_ARGS += -i sanityDt $(ROBOT_DEBUG_LOG_OPT)
51sanity-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
52sanity-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot
53sanity-kind-dt: voltha-dt-test
54
Andy Bavier33e6dd32020-01-16 13:35:20 -070055functional-single-kind: ROBOT_MISC_ARGS += -i sanity -i functional $(ROBOT_DEBUG_LOG_OPT)
56functional-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
57functional-single-kind: bbsim-kind
58
David Bainbridgef81cd642019-11-20 00:14:47 +000059sanity-single-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -050060sanity-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
61sanity-single-kind: bbsim-kind
62
David Bainbridgef81cd642019-11-20 00:14:47 +000063rwcore-restart-single-kind: ROBOT_MISC_ARGS += -X -i bbsimANDrwcore-restart $(ROBOT_DEBUG_LOG_OPT)
64rwcore-restart-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
65rwcore-restart-single-kind: ROBOT_FILE := Voltha_PODTests.robot
66rwcore-restart-single-kind: voltha-test
67
David Bainbridge3d6d5d32019-12-17 19:05:35 +000068single-kind: ROBOT_MISC_ARGS += -X -i $(TEST_TAGS) $(ROBOT_DEBUG_LOG_OPT)
69single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
70single-kind: ROBOT_FILE := Voltha_PODTests.robot
71single-kind: voltha-test
72
David Bainbridgef81cd642019-11-20 00:14:47 +000073sanity-multi-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -050074sanity-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
75sanity-multi-kind: bbsim-kind
Andy Bavierba9866b2019-10-11 07:11:53 -070076
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -070077bbsim-kind: ROBOT_MISC_ARGS += -X
Gilles Depatie45fbe042019-11-11 17:10:06 -050078bbsim-kind: ROBOT_FILE := Voltha_PODTests.robot
79bbsim-kind: voltha-test
80
David Bainbridgef81cd642019-11-20 00:14:47 +000081scale-single-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -050082scale-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_SINGLE_PON_FILE)
83scale-single-kind: bbsim-scale-kind
84
David Bainbridgef81cd642019-11-20 00:14:47 +000085scale-multi-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -050086scale-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_PON_FILE)
87scale-multi-kind: bbsim-scale-kind
88
David Bainbridgef81cd642019-11-20 00:14:47 +000089bbsim-scale-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -050090bbsim-scale-kind: ROBOT_FILE := Voltha_ScaleFunctionalTests.robot
91bbsim-scale-kind: voltha-test
Zack Williamsec53a1b2019-09-16 15:50:52 -070092
hwchiuab524f02020-02-03 23:24:19 +000093#Only supported in full mode
94system-scale-test: ROBOT_FILE := K8S_SystemTest.robot
hwchiu56eb85c2020-02-05 01:05:53 +000095system-scale-test: ROBOT_MISC_ARGS += -X -i functional $(ROBOT_DEBUG_LOG_OPT)
hwchiuab524f02020-02-03 23:24:19 +000096system-scale-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
97system-scale-test: voltha-test
hwchiu11289122019-11-27 16:20:15 +000098
hwchiu85695932019-12-18 08:05:25 +000099failure-test: ROBOT_MISC_ARGS += -X -i FailureTest $(ROBOT_DEBUG_LOG_OPT)
hwchiu3d9a0982020-02-06 00:19:19 +0000100failure-test: ROBOT_FILE := K8S_SystemTest.robot
hwchiu85695932019-12-18 08:05:25 +0000101failure-test: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
102failure-test: voltha-test
103
Scott Baker60e570d2020-02-02 22:10:13 -0800104bbsim-alarms-kind: ROBOT_MISC_ARGS += -X -i active
105bbsim-alarms-kind: ROBOT_FILE := Voltha_AlarmTests.robot
106bbsim-alarms-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_SINGLE_PON_FILE)
107bbsim-alarms-kind: voltctl-docker-image-build voltctl-docker-image-install-kind voltha-test
108
Andy Bavier70eab042019-12-14 14:16:26 -0700109voltha-test: ROBOT_MISC_ARGS += -e notready
hwchiu11289122019-11-27 16:20:15 +0000110
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700111voltha-test: vst_venv
112 source ./$</bin/activate ; set -u ;\
113 cd tests/functional ;\
114 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
115
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000116voltha-dt-test: vst_venv
117 source ./$</bin/activate ; set -u ;\
118 cd tests/dt-workflow ;\
119 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
120
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700121# self-test, lint, and setup targets
122
123# virtualenv for the robot tools
124vst_venv:
125 virtualenv -p python3 $@ ;\
126 source ./$@/bin/activate ;\
127 pip install -r requirements.txt
128
129test: lint
130
131lint: lint-robot lint-python lint-yaml lint-json
132
133lint-robot: vst_venv
134 source ./$</bin/activate ; set -u ;\
135 rflint $(LINT_ARGS) $(ROBOT_FILES)
136
137# check deps for format and python3 cleanliness
138lint-python: vst_venv
139 source ./$</bin/activate ; set -u ;\
140 pylint --py3k $(PYTHON_FILES) ;\
141 flake8 --max-line-length=99 --count $(PYTHON_FILES)
142
143lint-yaml: vst_venv
144 source ./$</bin/activate ; set -u ;\
145 yamllint -s $(YAML_FILES)
146
147lint-json: vst_venv
148 source ./$</bin/activate ; set -u ;\
149 for jsonfile in $(JSON_FILES); do \
150 echo "Validating json file: $$jsonfile" ;\
151 python -m json.tool $$jsonfile > /dev/null ;\
152 done
153
154# tidy target will be more useful once issue with removing leading comments
155# is resolved: https://github.com/robotframework/robotframework/issues/3263
156tidy-robot: vst_venv
157 source ./$</bin/activate ; set -u ;\
158 python -m robot.tidy --inplace $(ROBOT_FILES);
159
Andy Bavier4a8450e2020-02-04 08:58:37 -0700160# Install the 'kail' tool if needed: https://github.com/boz/kail
161KAIL_PATH ?= /usr/local/bin
162$(KAIL_PATH)/kail:
163 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b /tmp
164 mv /tmp/kail $(KAIL_PATH)
165
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700166## Variables for gendocs
167TEST_SOURCE := $(wildcard tests/*/*.robot)
168TEST_BASENAME := $(basename $(TEST_SOURCE))
169TEST_DIRS := $(dir $(TEST_SOURCE))
170
171LIB_SOURCE := $(wildcard libraries/*.robot)
172LIB_BASENAME := $(basename $(LIB_SOURCE))
173LIB_DIRS := $(dir $(LIB_SOURCE))
174
175.PHONY: gendocs lint test
176# In future explore use of --docformat REST - integration w/Sphinx?
Zack Williamsec53a1b2019-09-16 15:50:52 -0700177gendocs: vst_venv
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700178 source ./$</bin/activate ; set -u ;\
hwchiu0601ec72019-10-08 00:04:43 +0000179 mkdir -p $@ ;\
180 for dir in ${LIB_DIRS}; do mkdir -p $@/$$dir; done;\
181 for dir in ${LIB_BASENAME}; do\
182 python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\
183 done ;\
184 for dir in ${TEST_DIRS}; do mkdir -p $@/$$dir; done;\
185 for dir in ${TEST_BASENAME}; do\
186 python -m robot.testdoc $$dir.robot $@/$$dir.html ;\
187 done
Zack Williamsec53a1b2019-09-16 15:50:52 -0700188
Zack Williamsec53a1b2019-09-16 15:50:52 -0700189clean:
190 find . -name output.xml -print
191
192clean-all: clean
193 rm -rf vst_venv gendocs
Scott Baker60e570d2020-02-02 22:10:13 -0800194
195voltctl-docker-image-build:
196 cd docker && docker build -t opencord/voltctl:local -f Dockerfile.voltctl .
197
198voltctl-docker-image-install-kind:
199 @if [ "`kind get clusters | grep voltha`" = '' ]; then echo "no voltha cluster found" && exit 1; fi
200 kind load docker-image --name `kind get clusters | grep voltha` opencord/voltctl:local