blob: 269edce745fe3c923ce0c3d34a2f5ee964da71fd [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 \
Suraj Gour33651272020-05-04 10:10:16 +053024 --configure TooManyTestSteps:50 -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 \
Suchitra Vemuri5ba33442020-05-25 22:43:40 -070028 --configure FileTooLong:1000 -e FileTooLong \
Zack Williamsa8fe75a2020-01-10 14:25:27 -070029 -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
TorstenThiemebccd3ae2020-02-20 12:56:44 +000039ROBOT_SANITY_MULTIPLE_OLT_FILE ?= $(ROOT_DIR)/tests/data/multiple-bbsim-kind.yaml
Zack Williamsa8fe75a2020-01-10 14:25:27 -070040ROBOT_FAIL_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml
41ROBOT_SANITY_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-2x2.yaml
42ROBOT_SCALE_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-16.yaml
43ROBOT_SCALE_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-8x2.yaml
TorstenThiemeffb33922020-06-18 08:41:17 +000044ROBOT_SCALE_MULT_ONU_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-8x8.yaml
Zack Williamsa8fe75a2020-01-10 14:25:27 -070045ROBOT_DEBUG_LOG_OPT ?=
46ROBOT_MISC_ARGS ?=
Hardik Windlass43118692020-07-01 22:16:47 +053047# TODO: TT workflow not yet supported on BBSim
48ROBOT_SANITY_TT_SINGLE_PON_FILE ?=
Zack Williamsa8fe75a2020-01-10 14:25:27 -070049
Gilles Depatie45fbe042019-11-11 17:10:06 -050050# for backwards compatibility
51sanity-kind: sanity-single-kind
52
Matteo Scandolo142e6272020-04-29 17:36:59 -070053# for scale pipeline
54voltha-scale: ROBOT_MISC_ARGS += -i activation $(ROBOT_DEBUG_LOG_OPT)
55voltha-scale: voltha-scale-test
56
Hardik Windlassa3d04b92020-02-17 15:06:05 +000057# target to invoke DT Workflow Sanity
58sanity-kind-dt: ROBOT_MISC_ARGS += -i sanityDt $(ROBOT_DEBUG_LOG_OPT)
59sanity-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
60sanity-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot
61sanity-kind-dt: voltha-dt-test
62
Hardik Windlassd6aa0822020-06-29 20:18:12 +053063functional-single-kind: ROBOT_MISC_ARGS += -i sanityORfunctional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT)
Andy Bavier33e6dd32020-01-16 13:35:20 -070064functional-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
65functional-single-kind: bbsim-kind
66
Hardik Windlass35706ba2020-02-20 08:16:42 +000067# target to invoke DT Workflow Functional scenarios
Hardik Windlassd6aa0822020-06-29 20:18:12 +053068functional-single-kind-dt: ROBOT_MISC_ARGS += -i sanityDtORfunctionalDt -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT)
Hardik Windlass35706ba2020-02-20 08:16:42 +000069functional-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
70functional-single-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot
71functional-single-kind-dt: voltha-dt-test
72
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -070073# target to invoke TT Workflow Sanity
Hardik Windlass43118692020-07-01 22:16:47 +053074sanity-kind-tt: ROBOT_MISC_ARGS += -i sanityTT $(ROBOT_DEBUG_LOG_OPT)
75sanity-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE)
76sanity-kind-tt: ROBOT_FILE := Voltha_TT_PODTests.robot
77sanity-kind-tt: voltha-tt-test
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -070078
79# target to invoke TT Workflow Functional scenarios
Hardik Windlass43118692020-07-01 22:16:47 +053080functional-single-kind-tt: ROBOT_MISC_ARGS += -i sanityTTORfunctional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT)
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -070081functional-single-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE)
82functional-single-kind-tt: ROBOT_FILE := Voltha_TT_PODTests.robot
83functional-single-kind-tt: voltha-tt-test
84
TorstenThiemebccd3ae2020-02-20 12:56:44 +000085# target to invoke multiple OLTs Functional scenarios
86functional-multi-olt: ROBOT_MISC_ARGS += -i sanityMultiOLT $(ROBOT_DEBUG_LOG_OPT)
87functional-multi-olt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
88functional-multi-olt: ROBOT_FILE := Voltha_multipleOLTTests.robot
89functional-multi-olt: voltha-test
90
TorstenThieme1619db22020-04-03 12:01:15 +000091# target to invoke openonu go adapter
Holger Hildebrandt83d48682020-07-22 09:08:10 +000092openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:5 -v testmode:SingleStateTime -v timeout:180s
TorstenThiemeffb33922020-06-18 08:41:17 +000093openonu-go-adapter-test: ROBOT_MISC_ARGS += -i onutest $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme1619db22020-04-03 12:01:15 +000094openonu-go-adapter-test: ROBOT_MISC_ARGS += -X
95openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
96openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
97openonu-go-adapter-test: openonu-go-adapter-statetest
98
TorstenThieme280c3802020-08-07 07:07:42 +000099# target to invoke test with openonu go adapter applying 1T4GEM tech-profile at single ONU
1001t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:5 -v testmode:SingleStateTime -v timeout:180s
1011t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM -i onutest $(ROBOT_DEBUG_LOG_OPT)
1021t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X
1031t4gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
1041t4gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
1051t4gem-openonu-go-adapter-test: openonu-go-adapter-statetest
106
107# target to invoke test with openonu go adapter applying 1T8GEM tech-profile at single ONU
1081t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:5 -v testmode:SingleStateTime -v timeout:180s
1091t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM -i onutest $(ROBOT_DEBUG_LOG_OPT)
1101t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X
1111t8gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
1121t8gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
1131t8gem-openonu-go-adapter-test: openonu-go-adapter-statetest
114
TorstenThiemeffb33922020-06-18 08:41:17 +0000115# target to invoke multiple openonu go adapter
Holger Hildebrandt83d48682020-07-22 09:08:10 +0000116multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:5 -v testmode:SingleStateTime -v timeout:180s
TorstenThiemeffb33922020-06-18 08:41:17 +0000117multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i onutest $(ROBOT_DEBUG_LOG_OPT)
118multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X
119multi-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE)
120multi-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
121multi-openonu-go-adapter-test: openonu-go-adapter-statetest
122
TorstenThieme280c3802020-08-07 07:07:42 +0000123# target to invoke test with openonu go adapter applying 1T4GEM tech-profile at multiple ONU
124multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:5 -v testmode:SingleStateTime -v timeout:180s
125multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM -i onutest $(ROBOT_DEBUG_LOG_OPT)
126multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X
127multi-1t4gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE)
128multi-1t4gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
129multi-1t4gem-openonu-go-adapter-test: openonu-go-adapter-statetest
130
131# target to invoke test with openonu go adapter applying 1T8GEM tech-profile at multiple ONU
132multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:5 -v testmode:SingleStateTime -v timeout:180s
133multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM -i onutest $(ROBOT_DEBUG_LOG_OPT)
134multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X
135multi-1t8gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE)
136multi-1t8gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
137multi-1t8gem-openonu-go-adapter-test: openonu-go-adapter-statetest
138
David Bainbridgef81cd642019-11-20 00:14:47 +0000139sanity-single-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500140sanity-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
141sanity-single-kind: bbsim-kind
142
David Bainbridge32c45632020-04-13 08:47:09 -0700143rwcore-restart-single-kind: ROBOT_MISC_ARGS += -X -i functionalANDrwcore-restart $(ROBOT_DEBUG_LOG_OPT)
David Bainbridgef81cd642019-11-20 00:14:47 +0000144rwcore-restart-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
ubuntu6b6e7d42020-03-02 12:35:42 -0800145rwcore-restart-single-kind: ROBOT_FILE := Voltha_FailureScenarios.robot
David Bainbridgef81cd642019-11-20 00:14:47 +0000146rwcore-restart-single-kind: voltha-test
147
David Bainbridge3d6d5d32019-12-17 19:05:35 +0000148single-kind: ROBOT_MISC_ARGS += -X -i $(TEST_TAGS) $(ROBOT_DEBUG_LOG_OPT)
149single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
150single-kind: ROBOT_FILE := Voltha_PODTests.robot
151single-kind: voltha-test
152
David Bainbridgef81cd642019-11-20 00:14:47 +0000153sanity-multi-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500154sanity-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
155sanity-multi-kind: bbsim-kind
Andy Bavierba9866b2019-10-11 07:11:53 -0700156
Andy Bavier8da0e132020-04-13 10:25:16 -0700157functional-multi-kind: ROBOT_MISC_ARGS += -i sanityORfunctional $(ROBOT_DEBUG_LOG_OPT)
158functional-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
159functional-multi-kind: bbsim-kind
160
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -0700161bbsim-kind: ROBOT_MISC_ARGS += -X
Gilles Depatie45fbe042019-11-11 17:10:06 -0500162bbsim-kind: ROBOT_FILE := Voltha_PODTests.robot
163bbsim-kind: voltha-test
164
David Bainbridgef81cd642019-11-20 00:14:47 +0000165scale-single-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500166scale-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_SINGLE_PON_FILE)
167scale-single-kind: bbsim-scale-kind
168
David Bainbridgef81cd642019-11-20 00:14:47 +0000169scale-multi-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500170scale-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_PON_FILE)
171scale-multi-kind: bbsim-scale-kind
172
David Bainbridgef81cd642019-11-20 00:14:47 +0000173bbsim-scale-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500174bbsim-scale-kind: ROBOT_FILE := Voltha_ScaleFunctionalTests.robot
175bbsim-scale-kind: voltha-test
Zack Williamsec53a1b2019-09-16 15:50:52 -0700176
hwchiuab524f02020-02-03 23:24:19 +0000177#Only supported in full mode
178system-scale-test: ROBOT_FILE := K8S_SystemTest.robot
hwchiu56eb85c2020-02-05 01:05:53 +0000179system-scale-test: ROBOT_MISC_ARGS += -X -i functional $(ROBOT_DEBUG_LOG_OPT)
hwchiuab524f02020-02-03 23:24:19 +0000180system-scale-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
181system-scale-test: voltha-test
hwchiu11289122019-11-27 16:20:15 +0000182
hwchiu85695932019-12-18 08:05:25 +0000183failure-test: ROBOT_MISC_ARGS += -X -i FailureTest $(ROBOT_DEBUG_LOG_OPT)
hwchiu3d9a0982020-02-06 00:19:19 +0000184failure-test: ROBOT_FILE := K8S_SystemTest.robot
hwchiu85695932019-12-18 08:05:25 +0000185failure-test: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
186failure-test: voltha-test
187
Scott Baker60e570d2020-02-02 22:10:13 -0800188bbsim-alarms-kind: ROBOT_MISC_ARGS += -X -i active
189bbsim-alarms-kind: ROBOT_FILE := Voltha_AlarmTests.robot
Andy Baviere118e052020-03-06 12:49:24 -0700190bbsim-alarms-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
Scott Baker60e570d2020-02-02 22:10:13 -0800191bbsim-alarms-kind: voltctl-docker-image-build voltctl-docker-image-install-kind voltha-test
192
Andy Bavierc1904dc2020-03-20 11:39:15 -0700193bbsim-errorscenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
194bbsim-errorscenarios: ROBOT_FILE := Voltha_ErrorScenarios.robot
195bbsim-errorscenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
196bbsim-errorscenarios: voltha-test
197
Hardik Windlasscbcca312020-04-20 21:46:11 +0530198bbsim-errorscenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
199bbsim-errorscenarios-dt: ROBOT_FILE := Voltha_ErrorScenarios.robot
200bbsim-errorscenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
201bbsim-errorscenarios-dt: voltha-test
202
Hardik Windlasse05e4712020-04-29 10:40:42 +0530203bbsim-failurescenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot
Andy Bavier8da0e132020-04-13 10:25:16 -0700204bbsim-failurescenarios: ROBOT_FILE := Voltha_FailureScenarios.robot
205bbsim-failurescenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
206bbsim-failurescenarios: voltha-test
207
Hardik Windlass9df139e2020-04-24 14:54:54 +0530208bbsim-failurescenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitchOnuRebootDt -e PhysicalOltRebootDt
209bbsim-failurescenarios-dt: ROBOT_FILE := Voltha_DT_FailureScenarios.robot
210bbsim-failurescenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
211bbsim-failurescenarios-dt: voltha-dt-test
212
Andy Bavier70eab042019-12-14 14:16:26 -0700213voltha-test: ROBOT_MISC_ARGS += -e notready
hwchiu11289122019-11-27 16:20:15 +0000214
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700215voltha-test: vst_venv
216 source ./$</bin/activate ; set -u ;\
217 cd tests/functional ;\
218 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
219
Hardik Windlass79b40ff2020-06-11 22:55:47 +0530220voltha-dt-test: ROBOT_MISC_ARGS += -e notready
221
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000222voltha-dt-test: vst_venv
223 source ./$</bin/activate ; set -u ;\
224 cd tests/dt-workflow ;\
225 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
226
Hardik Windlass43118692020-07-01 22:16:47 +0530227voltha-tt-test: ROBOT_MISC_ARGS += -e notready
228
229voltha-tt-test: vst_venv
230 source ./$</bin/activate ; set -u ;\
231 cd tests/tt-workflow ;\
232 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
233
Matteo Scandolo142e6272020-04-29 17:36:59 -0700234voltha-scale-test: vst_venv
235 source ./$</bin/activate ; set -u ;\
236 cd tests/scale ;\
237 robot $(ROBOT_MISC_ARGS) Voltha_Scale_Tests.robot
238
TorstenThieme1619db22020-04-03 12:01:15 +0000239openonu-go-adapter-statetest: vst_venv
240 source ./$</bin/activate ; set -u ;\
241 cd tests/openonu-go-adapter ;\
242 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
243
244
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700245# self-test, lint, and setup targets
246
247# virtualenv for the robot tools
Andy Bavier952b95b2020-03-06 09:53:42 -0700248# VOL-2724 Invoke pip via python3 to avoid pathname too long on QA jobs
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700249vst_venv:
250 virtualenv -p python3 $@ ;\
251 source ./$@/bin/activate ;\
Andy Baviere118e052020-03-06 12:49:24 -0700252 python -m pip install -r requirements.txt
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700253
254test: lint
255
256lint: lint-robot lint-python lint-yaml lint-json
257
258lint-robot: vst_venv
259 source ./$</bin/activate ; set -u ;\
260 rflint $(LINT_ARGS) $(ROBOT_FILES)
261
262# check deps for format and python3 cleanliness
263lint-python: vst_venv
264 source ./$</bin/activate ; set -u ;\
265 pylint --py3k $(PYTHON_FILES) ;\
266 flake8 --max-line-length=99 --count $(PYTHON_FILES)
267
268lint-yaml: vst_venv
269 source ./$</bin/activate ; set -u ;\
270 yamllint -s $(YAML_FILES)
271
272lint-json: vst_venv
273 source ./$</bin/activate ; set -u ;\
274 for jsonfile in $(JSON_FILES); do \
275 echo "Validating json file: $$jsonfile" ;\
276 python -m json.tool $$jsonfile > /dev/null ;\
277 done
278
279# tidy target will be more useful once issue with removing leading comments
280# is resolved: https://github.com/robotframework/robotframework/issues/3263
281tidy-robot: vst_venv
282 source ./$</bin/activate ; set -u ;\
283 python -m robot.tidy --inplace $(ROBOT_FILES);
284
Andy Bavier4a8450e2020-02-04 08:58:37 -0700285# Install the 'kail' tool if needed: https://github.com/boz/kail
286KAIL_PATH ?= /usr/local/bin
287$(KAIL_PATH)/kail:
288 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b /tmp
289 mv /tmp/kail $(KAIL_PATH)
290
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700291## Variables for gendocs
292TEST_SOURCE := $(wildcard tests/*/*.robot)
293TEST_BASENAME := $(basename $(TEST_SOURCE))
294TEST_DIRS := $(dir $(TEST_SOURCE))
295
296LIB_SOURCE := $(wildcard libraries/*.robot)
297LIB_BASENAME := $(basename $(LIB_SOURCE))
298LIB_DIRS := $(dir $(LIB_SOURCE))
299
300.PHONY: gendocs lint test
301# In future explore use of --docformat REST - integration w/Sphinx?
Zack Williamsec53a1b2019-09-16 15:50:52 -0700302gendocs: vst_venv
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700303 source ./$</bin/activate ; set -u ;\
hwchiu0601ec72019-10-08 00:04:43 +0000304 mkdir -p $@ ;\
305 for dir in ${LIB_DIRS}; do mkdir -p $@/$$dir; done;\
306 for dir in ${LIB_BASENAME}; do\
307 python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\
308 done ;\
309 for dir in ${TEST_DIRS}; do mkdir -p $@/$$dir; done;\
310 for dir in ${TEST_BASENAME}; do\
311 python -m robot.testdoc $$dir.robot $@/$$dir.html ;\
312 done
Zack Williamsec53a1b2019-09-16 15:50:52 -0700313
Zack Williamsec53a1b2019-09-16 15:50:52 -0700314clean:
315 find . -name output.xml -print
316
317clean-all: clean
318 rm -rf vst_venv gendocs
Scott Baker60e570d2020-02-02 22:10:13 -0800319
320voltctl-docker-image-build:
321 cd docker && docker build -t opencord/voltctl:local -f Dockerfile.voltctl .
322
323voltctl-docker-image-install-kind:
324 @if [ "`kind get clusters | grep voltha`" = '' ]; then echo "no voltha cluster found" && exit 1; fi
325 kind load docker-image --name `kind get clusters | grep voltha` opencord/voltctl:local