blob: 22e1bf6d6eaba455f38cde01fdc4a6374b8da454 [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 \
Hardik Windlass16cdf962020-04-29 15:26:50 +053028 --configure FileTooLong:1100 -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 Hildebrandtae8c33f2020-08-31 08:55:42 +000092openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s
TorstenThieme95b02a52020-09-08 08:21:33 +000093openonu-go-adapter-test: ROBOT_MISC_ARGS += -v logging:True -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
Holger Hildebrandtae8c33f2020-08-31 08:55:42 +00001001t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s
TorstenThieme95b02a52020-09-08 08:21:33 +00001011t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM -v logging:True
1021t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i onutest $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme280c3802020-08-07 07:07:42 +00001031t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X
1041t4gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
1051t4gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
1061t4gem-openonu-go-adapter-test: openonu-go-adapter-statetest
107
108# target to invoke test with openonu go adapter applying 1T8GEM tech-profile at single ONU
Holger Hildebrandtae8c33f2020-08-31 08:55:42 +00001091t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s
TorstenThieme95b02a52020-09-08 08:21:33 +00001101t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM -v logging:True
1111t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i onutest $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme280c3802020-08-07 07:07:42 +00001121t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X
1131t8gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
1141t8gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
1151t8gem-openonu-go-adapter-test: openonu-go-adapter-statetest
116
TorstenThiemeffb33922020-06-18 08:41:17 +0000117# target to invoke multiple openonu go adapter
Holger Hildebrandtae8c33f2020-08-31 08:55:42 +0000118multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s
TorstenThieme95b02a52020-09-08 08:21:33 +0000119multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v logging:True -i onutest $(ROBOT_DEBUG_LOG_OPT)
TorstenThiemeffb33922020-06-18 08:41:17 +0000120multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X
121multi-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE)
122multi-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
123multi-openonu-go-adapter-test: openonu-go-adapter-statetest
124
TorstenThieme280c3802020-08-07 07:07:42 +0000125# target to invoke test with openonu go adapter applying 1T4GEM tech-profile at multiple ONU
Holger Hildebrandtae8c33f2020-08-31 08:55:42 +0000126multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s
TorstenThieme95b02a52020-09-08 08:21:33 +0000127multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM -v logging:True
128multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i onutest $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme280c3802020-08-07 07:07:42 +0000129multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X
130multi-1t4gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE)
131multi-1t4gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
132multi-1t4gem-openonu-go-adapter-test: openonu-go-adapter-statetest
133
134# target to invoke test with openonu go adapter applying 1T8GEM tech-profile at multiple ONU
Holger Hildebrandtae8c33f2020-08-31 08:55:42 +0000135multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s
TorstenThieme95b02a52020-09-08 08:21:33 +0000136multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM -v logging:True
137multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i onutest $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme280c3802020-08-07 07:07:42 +0000138multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X
139multi-1t8gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE)
140multi-1t8gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
141multi-1t8gem-openonu-go-adapter-test: openonu-go-adapter-statetest
142
David Bainbridgef81cd642019-11-20 00:14:47 +0000143sanity-single-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500144sanity-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
145sanity-single-kind: bbsim-kind
146
David Bainbridge32c45632020-04-13 08:47:09 -0700147rwcore-restart-single-kind: ROBOT_MISC_ARGS += -X -i functionalANDrwcore-restart $(ROBOT_DEBUG_LOG_OPT)
David Bainbridgef81cd642019-11-20 00:14:47 +0000148rwcore-restart-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
ubuntu6b6e7d42020-03-02 12:35:42 -0800149rwcore-restart-single-kind: ROBOT_FILE := Voltha_FailureScenarios.robot
David Bainbridgef81cd642019-11-20 00:14:47 +0000150rwcore-restart-single-kind: voltha-test
151
David Bainbridge3d6d5d32019-12-17 19:05:35 +0000152single-kind: ROBOT_MISC_ARGS += -X -i $(TEST_TAGS) $(ROBOT_DEBUG_LOG_OPT)
153single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
154single-kind: ROBOT_FILE := Voltha_PODTests.robot
155single-kind: voltha-test
156
David Bainbridgef81cd642019-11-20 00:14:47 +0000157sanity-multi-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500158sanity-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
159sanity-multi-kind: bbsim-kind
Andy Bavierba9866b2019-10-11 07:11:53 -0700160
Andy Bavier8da0e132020-04-13 10:25:16 -0700161functional-multi-kind: ROBOT_MISC_ARGS += -i sanityORfunctional $(ROBOT_DEBUG_LOG_OPT)
162functional-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
163functional-multi-kind: bbsim-kind
164
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -0700165bbsim-kind: ROBOT_MISC_ARGS += -X
Gilles Depatie45fbe042019-11-11 17:10:06 -0500166bbsim-kind: ROBOT_FILE := Voltha_PODTests.robot
167bbsim-kind: voltha-test
168
David Bainbridgef81cd642019-11-20 00:14:47 +0000169scale-single-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500170scale-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_SINGLE_PON_FILE)
171scale-single-kind: bbsim-scale-kind
172
David Bainbridgef81cd642019-11-20 00:14:47 +0000173scale-multi-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500174scale-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_PON_FILE)
175scale-multi-kind: bbsim-scale-kind
176
David Bainbridgef81cd642019-11-20 00:14:47 +0000177bbsim-scale-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500178bbsim-scale-kind: ROBOT_FILE := Voltha_ScaleFunctionalTests.robot
179bbsim-scale-kind: voltha-test
Zack Williamsec53a1b2019-09-16 15:50:52 -0700180
hwchiuab524f02020-02-03 23:24:19 +0000181#Only supported in full mode
182system-scale-test: ROBOT_FILE := K8S_SystemTest.robot
hwchiu56eb85c2020-02-05 01:05:53 +0000183system-scale-test: ROBOT_MISC_ARGS += -X -i functional $(ROBOT_DEBUG_LOG_OPT)
hwchiuab524f02020-02-03 23:24:19 +0000184system-scale-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
185system-scale-test: voltha-test
hwchiu11289122019-11-27 16:20:15 +0000186
hwchiu85695932019-12-18 08:05:25 +0000187failure-test: ROBOT_MISC_ARGS += -X -i FailureTest $(ROBOT_DEBUG_LOG_OPT)
hwchiu3d9a0982020-02-06 00:19:19 +0000188failure-test: ROBOT_FILE := K8S_SystemTest.robot
hwchiu85695932019-12-18 08:05:25 +0000189failure-test: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
190failure-test: voltha-test
191
Scott Baker60e570d2020-02-02 22:10:13 -0800192bbsim-alarms-kind: ROBOT_MISC_ARGS += -X -i active
193bbsim-alarms-kind: ROBOT_FILE := Voltha_AlarmTests.robot
Andy Baviere118e052020-03-06 12:49:24 -0700194bbsim-alarms-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
Scott Baker60e570d2020-02-02 22:10:13 -0800195bbsim-alarms-kind: voltctl-docker-image-build voltctl-docker-image-install-kind voltha-test
196
Andy Bavierc1904dc2020-03-20 11:39:15 -0700197bbsim-errorscenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
198bbsim-errorscenarios: ROBOT_FILE := Voltha_ErrorScenarios.robot
199bbsim-errorscenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
200bbsim-errorscenarios: voltha-test
201
Hardik Windlasscbcca312020-04-20 21:46:11 +0530202bbsim-errorscenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
203bbsim-errorscenarios-dt: ROBOT_FILE := Voltha_ErrorScenarios.robot
204bbsim-errorscenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
205bbsim-errorscenarios-dt: voltha-test
206
Hardik Windlasse05e4712020-04-29 10:40:42 +0530207bbsim-failurescenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot
Andy Bavier8da0e132020-04-13 10:25:16 -0700208bbsim-failurescenarios: ROBOT_FILE := Voltha_FailureScenarios.robot
209bbsim-failurescenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
210bbsim-failurescenarios: voltha-test
211
Hardik Windlass9df139e2020-04-24 14:54:54 +0530212bbsim-failurescenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitchOnuRebootDt -e PhysicalOltRebootDt
213bbsim-failurescenarios-dt: ROBOT_FILE := Voltha_DT_FailureScenarios.robot
214bbsim-failurescenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
215bbsim-failurescenarios-dt: voltha-dt-test
216
Andy Bavier70eab042019-12-14 14:16:26 -0700217voltha-test: ROBOT_MISC_ARGS += -e notready
hwchiu11289122019-11-27 16:20:15 +0000218
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700219voltha-test: vst_venv
220 source ./$</bin/activate ; set -u ;\
221 cd tests/functional ;\
222 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
223
Hardik Windlass79b40ff2020-06-11 22:55:47 +0530224voltha-dt-test: ROBOT_MISC_ARGS += -e notready
225
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000226voltha-dt-test: vst_venv
227 source ./$</bin/activate ; set -u ;\
228 cd tests/dt-workflow ;\
229 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
230
Hardik Windlass43118692020-07-01 22:16:47 +0530231voltha-tt-test: ROBOT_MISC_ARGS += -e notready
232
233voltha-tt-test: vst_venv
234 source ./$</bin/activate ; set -u ;\
235 cd tests/tt-workflow ;\
236 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
237
Matteo Scandolo142e6272020-04-29 17:36:59 -0700238voltha-scale-test: vst_venv
239 source ./$</bin/activate ; set -u ;\
240 cd tests/scale ;\
241 robot $(ROBOT_MISC_ARGS) Voltha_Scale_Tests.robot
242
TorstenThieme1619db22020-04-03 12:01:15 +0000243openonu-go-adapter-statetest: vst_venv
244 source ./$</bin/activate ; set -u ;\
245 cd tests/openonu-go-adapter ;\
246 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
247
248
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700249# self-test, lint, and setup targets
250
251# virtualenv for the robot tools
Andy Bavier952b95b2020-03-06 09:53:42 -0700252# VOL-2724 Invoke pip via python3 to avoid pathname too long on QA jobs
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700253vst_venv:
254 virtualenv -p python3 $@ ;\
255 source ./$@/bin/activate ;\
Andy Baviere118e052020-03-06 12:49:24 -0700256 python -m pip install -r requirements.txt
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700257
258test: lint
259
260lint: lint-robot lint-python lint-yaml lint-json
261
262lint-robot: vst_venv
263 source ./$</bin/activate ; set -u ;\
264 rflint $(LINT_ARGS) $(ROBOT_FILES)
265
266# check deps for format and python3 cleanliness
267lint-python: vst_venv
268 source ./$</bin/activate ; set -u ;\
269 pylint --py3k $(PYTHON_FILES) ;\
270 flake8 --max-line-length=99 --count $(PYTHON_FILES)
271
272lint-yaml: vst_venv
273 source ./$</bin/activate ; set -u ;\
274 yamllint -s $(YAML_FILES)
275
276lint-json: vst_venv
277 source ./$</bin/activate ; set -u ;\
278 for jsonfile in $(JSON_FILES); do \
279 echo "Validating json file: $$jsonfile" ;\
280 python -m json.tool $$jsonfile > /dev/null ;\
281 done
282
283# tidy target will be more useful once issue with removing leading comments
284# is resolved: https://github.com/robotframework/robotframework/issues/3263
285tidy-robot: vst_venv
286 source ./$</bin/activate ; set -u ;\
287 python -m robot.tidy --inplace $(ROBOT_FILES);
288
Andy Bavier4a8450e2020-02-04 08:58:37 -0700289# Install the 'kail' tool if needed: https://github.com/boz/kail
290KAIL_PATH ?= /usr/local/bin
291$(KAIL_PATH)/kail:
292 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b /tmp
293 mv /tmp/kail $(KAIL_PATH)
294
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700295## Variables for gendocs
296TEST_SOURCE := $(wildcard tests/*/*.robot)
297TEST_BASENAME := $(basename $(TEST_SOURCE))
298TEST_DIRS := $(dir $(TEST_SOURCE))
299
300LIB_SOURCE := $(wildcard libraries/*.robot)
301LIB_BASENAME := $(basename $(LIB_SOURCE))
302LIB_DIRS := $(dir $(LIB_SOURCE))
303
304.PHONY: gendocs lint test
305# In future explore use of --docformat REST - integration w/Sphinx?
Zack Williamsec53a1b2019-09-16 15:50:52 -0700306gendocs: vst_venv
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700307 source ./$</bin/activate ; set -u ;\
hwchiu0601ec72019-10-08 00:04:43 +0000308 mkdir -p $@ ;\
309 for dir in ${LIB_DIRS}; do mkdir -p $@/$$dir; done;\
310 for dir in ${LIB_BASENAME}; do\
311 python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\
312 done ;\
313 for dir in ${TEST_DIRS}; do mkdir -p $@/$$dir; done;\
314 for dir in ${TEST_BASENAME}; do\
315 python -m robot.testdoc $$dir.robot $@/$$dir.html ;\
316 done
Zack Williamsec53a1b2019-09-16 15:50:52 -0700317
Zack Williamsec53a1b2019-09-16 15:50:52 -0700318clean:
319 find . -name output.xml -print
320
321clean-all: clean
322 rm -rf vst_venv gendocs
Scott Baker60e570d2020-02-02 22:10:13 -0800323
324voltctl-docker-image-build:
325 cd docker && docker build -t opencord/voltctl:local -f Dockerfile.voltctl .
326
327voltctl-docker-image-install-kind:
328 @if [ "`kind get clusters | grep voltha`" = '' ]; then echo "no voltha cluster found" && exit 1; fi
329 kind load docker-image --name `kind get clusters | grep voltha` opencord/voltctl:local