blob: cc0ad1c61d72f2e4587137423de5dbf80e0a400c [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 \
25 --configure TooManyTestCases:12 -e TooManyTestCases \
26 --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
38ROBOT_FAIL_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml
39ROBOT_SANITY_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-2x2.yaml
40ROBOT_SCALE_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-16.yaml
41ROBOT_SCALE_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-8x2.yaml
42ROBOT_DEBUG_LOG_OPT ?=
43ROBOT_MISC_ARGS ?=
44
45ROBOT_SYSTEM_SETUP_MISC_ARGS ?= -i scaledown -l systemup_log.html -r systemup_report.html -o systemup_output.xml
hwchiu11289122019-11-27 16:20:15 +000046ROBOT_SYSTEM_TEARDOWN_MISC_ARGS ?= -i scaleup -l systemdown_log.html -r systemdown_report.html -o sysstemdown_output.xml
Zack Williamsa8fe75a2020-01-10 14:25:27 -070047ROBOT_SYSTEM_FILE ?= K8S_SystemTest.robot
hwchiu0601ec72019-10-08 00:04:43 +000048
Gilles Depatie45fbe042019-11-11 17:10:06 -050049# for backwards compatibility
50sanity-kind: sanity-single-kind
51
David Bainbridgef81cd642019-11-20 00:14:47 +000052sanity-single-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -050053sanity-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
54sanity-single-kind: bbsim-kind
55
David Bainbridgef81cd642019-11-20 00:14:47 +000056rwcore-restart-single-kind: ROBOT_MISC_ARGS += -X -i bbsimANDrwcore-restart $(ROBOT_DEBUG_LOG_OPT)
57rwcore-restart-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
58rwcore-restart-single-kind: ROBOT_FILE := Voltha_PODTests.robot
59rwcore-restart-single-kind: voltha-test
60
61sanity-multi-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -050062sanity-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
63sanity-multi-kind: bbsim-kind
Andy Bavierba9866b2019-10-11 07:11:53 -070064
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -070065bbsim-kind: ROBOT_MISC_ARGS += -X
Gilles Depatie45fbe042019-11-11 17:10:06 -050066bbsim-kind: ROBOT_FILE := Voltha_PODTests.robot
67bbsim-kind: voltha-test
68
David Bainbridgef81cd642019-11-20 00:14:47 +000069scale-single-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -050070scale-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_SINGLE_PON_FILE)
71scale-single-kind: bbsim-scale-kind
72
David Bainbridgef81cd642019-11-20 00:14:47 +000073scale-multi-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -050074scale-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_PON_FILE)
75scale-multi-kind: bbsim-scale-kind
76
David Bainbridgef81cd642019-11-20 00:14:47 +000077bbsim-scale-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -050078bbsim-scale-kind: ROBOT_FILE := Voltha_ScaleFunctionalTests.robot
79bbsim-scale-kind: voltha-test
Zack Williamsec53a1b2019-09-16 15:50:52 -070080
hwchiu11289122019-11-27 16:20:15 +000081system-scale-test: ROBOT_FILE := Voltha_PODTests.robot
82system-scale-test: ROBOT_MISC_ARGS += -X -i sanity
83system-scale-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
84system-scale-test: k8s-system-test
85
hwchiu85695932019-12-18 08:05:25 +000086failure-test: ROBOT_MISC_ARGS += -X -i FailureTest $(ROBOT_DEBUG_LOG_OPT)
87failure-test: ROBOT_FILE := $(ROBOT_SYSTEM_FILE)
88failure-test: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
89failure-test: voltha-test
90
Andy Bavier70eab042019-12-14 14:16:26 -070091voltha-test: ROBOT_MISC_ARGS += -e notready
92k8s-system-test: ROBOT_MISC_ARGS += -e notready
93
hwchiu11289122019-11-27 16:20:15 +000094#bbsim-only
95k8s-system-test: vst_venv
Zack Williamsa8fe75a2020-01-10 14:25:27 -070096 source ./$</bin/activate ; set -u ;\
hwchiu11289122019-11-27 16:20:15 +000097 cd tests/functional ;\
98 robot $(ROBOT_SYSTEM_SETUP_MISC_ARGS) $(ROBOT_MISC_ARGS) $(ROBOT_SYSTEM_FILE) && \
99 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) && \
100 robot $(ROBOT_SYSTEM_TEARDOWN_MISC_ARGS) $(ROBOT_MISC_ARGS) $(ROBOT_SYSTEM_FILE)
101
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700102voltha-test: vst_venv
103 source ./$</bin/activate ; set -u ;\
104 cd tests/functional ;\
105 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
106
107# self-test, lint, and setup targets
108
109# virtualenv for the robot tools
110vst_venv:
111 virtualenv -p python3 $@ ;\
112 source ./$@/bin/activate ;\
113 pip install -r requirements.txt
114
115test: lint
116
117lint: lint-robot lint-python lint-yaml lint-json
118
119lint-robot: vst_venv
120 source ./$</bin/activate ; set -u ;\
121 rflint $(LINT_ARGS) $(ROBOT_FILES)
122
123# check deps for format and python3 cleanliness
124lint-python: vst_venv
125 source ./$</bin/activate ; set -u ;\
126 pylint --py3k $(PYTHON_FILES) ;\
127 flake8 --max-line-length=99 --count $(PYTHON_FILES)
128
129lint-yaml: vst_venv
130 source ./$</bin/activate ; set -u ;\
131 yamllint -s $(YAML_FILES)
132
133lint-json: vst_venv
134 source ./$</bin/activate ; set -u ;\
135 for jsonfile in $(JSON_FILES); do \
136 echo "Validating json file: $$jsonfile" ;\
137 python -m json.tool $$jsonfile > /dev/null ;\
138 done
139
140# tidy target will be more useful once issue with removing leading comments
141# is resolved: https://github.com/robotframework/robotframework/issues/3263
142tidy-robot: vst_venv
143 source ./$</bin/activate ; set -u ;\
144 python -m robot.tidy --inplace $(ROBOT_FILES);
145
146## Variables for gendocs
147TEST_SOURCE := $(wildcard tests/*/*.robot)
148TEST_BASENAME := $(basename $(TEST_SOURCE))
149TEST_DIRS := $(dir $(TEST_SOURCE))
150
151LIB_SOURCE := $(wildcard libraries/*.robot)
152LIB_BASENAME := $(basename $(LIB_SOURCE))
153LIB_DIRS := $(dir $(LIB_SOURCE))
154
155.PHONY: gendocs lint test
156# In future explore use of --docformat REST - integration w/Sphinx?
Zack Williamsec53a1b2019-09-16 15:50:52 -0700157gendocs: vst_venv
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700158 source ./$</bin/activate ; set -u ;\
hwchiu0601ec72019-10-08 00:04:43 +0000159 mkdir -p $@ ;\
160 for dir in ${LIB_DIRS}; do mkdir -p $@/$$dir; done;\
161 for dir in ${LIB_BASENAME}; do\
162 python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\
163 done ;\
164 for dir in ${TEST_DIRS}; do mkdir -p $@/$$dir; done;\
165 for dir in ${TEST_BASENAME}; do\
166 python -m robot.testdoc $$dir.robot $@/$$dir.html ;\
167 done
Zack Williamsec53a1b2019-09-16 15:50:52 -0700168
Zack Williamsec53a1b2019-09-16 15:50:52 -0700169clean:
170 find . -name output.xml -print
171
172clean-all: clean
173 rm -rf vst_venv gendocs