blob: 40f193984832d050d5b4b29c682225db6a7765c7 [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)
Suchitra Vemuria6879aa2020-11-03 11:03:11 -080023LINT_ARGS ?= --verbose --configure LineTooLong:130 -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 Vemuria6879aa2020-11-03 11:03:11 -080028 --configure FileTooLong:1300 -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
Suchitra Vemuria311faf2020-11-23 13:46:52 -080039ROBOT_SANITY_MULTIPLE_OLT_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-2OLTx2ONUx2PON.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 ?=
Matteo Scandolo549df9e2020-09-04 11:09:18 -070047ROBOT_SANITY_TT_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-tt.yaml
uwe ottrembka504ca3e2020-11-23 12:02:20 +010048ROBOT_DMI_SINGLE_BBSIM_FILE ?= $(ROOT_DIR)/tests/data/dmi-components-bbsim.yaml
TorstenThiemea7c35452020-12-16 15:25:25 +000049ROBOT_DMI_SINGLE_ADTRAN_FILE ?= $(ROOT_DIR)/tests/data/dmi-components-adtran.yaml
Zack Williamsa8fe75a2020-01-10 14:25:27 -070050
Gilles Depatie45fbe042019-11-11 17:10:06 -050051# for backwards compatibility
52sanity-kind: sanity-single-kind
53
Matteo Scandolo142e6272020-04-29 17:36:59 -070054# for scale pipeline
55voltha-scale: ROBOT_MISC_ARGS += -i activation $(ROBOT_DEBUG_LOG_OPT)
56voltha-scale: voltha-scale-test
57
Hardik Windlassa3d04b92020-02-17 15:06:05 +000058# target to invoke DT Workflow Sanity
59sanity-kind-dt: ROBOT_MISC_ARGS += -i sanityDt $(ROBOT_DEBUG_LOG_OPT)
60sanity-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
61sanity-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot
62sanity-kind-dt: voltha-dt-test
63
Hardik Windlassd6aa0822020-06-29 20:18:12 +053064functional-single-kind: ROBOT_MISC_ARGS += -i sanityORfunctional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT)
Andy Bavier33e6dd32020-01-16 13:35:20 -070065functional-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
66functional-single-kind: bbsim-kind
67
Hardik Windlass35706ba2020-02-20 08:16:42 +000068# target to invoke DT Workflow Functional scenarios
Hardik Windlassd6aa0822020-06-29 20:18:12 +053069functional-single-kind-dt: ROBOT_MISC_ARGS += -i sanityDtORfunctionalDt -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT)
Hardik Windlass35706ba2020-02-20 08:16:42 +000070functional-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
71functional-single-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot
72functional-single-kind-dt: voltha-dt-test
73
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -070074# target to invoke TT Workflow Sanity
Hardik Windlass43118692020-07-01 22:16:47 +053075sanity-kind-tt: ROBOT_MISC_ARGS += -i sanityTT $(ROBOT_DEBUG_LOG_OPT)
76sanity-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE)
77sanity-kind-tt: ROBOT_FILE := Voltha_TT_PODTests.robot
78sanity-kind-tt: voltha-tt-test
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -070079
80# target to invoke TT Workflow Functional scenarios
Hardik Windlass43118692020-07-01 22:16:47 +053081functional-single-kind-tt: ROBOT_MISC_ARGS += -i sanityTTORfunctional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT)
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -070082functional-single-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE)
83functional-single-kind-tt: ROBOT_FILE := Voltha_TT_PODTests.robot
84functional-single-kind-tt: voltha-tt-test
85
TorstenThiemebccd3ae2020-02-20 12:56:44 +000086# target to invoke multiple OLTs Functional scenarios
Suchitra Vemuri2a6975a2020-11-25 12:49:38 -080087functional-multi-olt: ROBOT_MISC_ARGS += -i sanityORfunctional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT)
TorstenThiemebccd3ae2020-02-20 12:56:44 +000088functional-multi-olt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
Suchitra Vemuri9826c052020-11-18 14:11:51 -080089functional-multi-olt: ROBOT_FILE := Voltha_PODTests.robot
TorstenThiemebccd3ae2020-02-20 12:56:44 +000090functional-multi-olt: voltha-test
91
TorstenThieme1619db22020-04-03 12:01:15 +000092# target to invoke openonu go adapter
TorstenThieme66c91a82020-10-19 13:37:53 +000093openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:omci-flows-pushed -v testmode:SingleStateTime
TorstenThiemed4f48962020-12-08 12:17:19 +000094openonu-go-adapter-test: ROBOT_MISC_ARGS += -v logging:True -i sanityOnuGo -i functionalOnuGo
TorstenThieme66c91a82020-10-19 13:37:53 +000095openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme1619db22020-04-03 12:01:15 +000096openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
97openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
TorstenThieme89caa142020-10-05 08:20:31 +000098openonu-go-adapter-test: openonu-go-adapter-tests
TorstenThieme1619db22020-04-03 12:01:15 +000099
TorstenThieme280c3802020-08-07 07:07:42 +0000100# target to invoke test with openonu go adapter applying 1T4GEM tech-profile at single ONU
TorstenThieme66c91a82020-10-19 13:37:53 +00001011t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:omci-flows-pushed -v testmode:SingleStateTime
TorstenThiemed4f48962020-12-08 12:17:19 +00001021t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM -v logging:True
TorstenThieme66c91a82020-10-19 13:37:53 +00001031t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i sanityOnuGo -i functionalOnuGo
1041t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme280c3802020-08-07 07:07:42 +00001051t4gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
1061t4gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
TorstenThieme89caa142020-10-05 08:20:31 +00001071t4gem-openonu-go-adapter-test: openonu-go-adapter-tests
TorstenThieme280c3802020-08-07 07:07:42 +0000108
109# target to invoke test with openonu go adapter applying 1T8GEM tech-profile at single ONU
TorstenThieme66c91a82020-10-19 13:37:53 +00001101t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:omci-flows-pushed -v testmode:SingleStateTime
TorstenThiemed4f48962020-12-08 12:17:19 +00001111t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM -v logging:True
TorstenThieme66c91a82020-10-19 13:37:53 +00001121t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i sanityOnuGo -i functionalOnuGo
1131t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme280c3802020-08-07 07:07:42 +00001141t8gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
1151t8gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
TorstenThieme89caa142020-10-05 08:20:31 +00001161t8gem-openonu-go-adapter-test: openonu-go-adapter-tests
TorstenThieme280c3802020-08-07 07:07:42 +0000117
TorstenThiemeffb33922020-06-18 08:41:17 +0000118# target to invoke multiple openonu go adapter
TorstenThieme66c91a82020-10-19 13:37:53 +0000119multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:omci-flows-pushed -v testmode:SingleStateTime
TorstenThiemed4f48962020-12-08 12:17:19 +0000120multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v logging:True -i sanityOnuGo -i functionalOnuGo
TorstenThieme66c91a82020-10-19 13:37:53 +0000121multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
TorstenThiemeffb33922020-06-18 08:41:17 +0000122multi-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE)
123multi-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
TorstenThieme89caa142020-10-05 08:20:31 +0000124multi-openonu-go-adapter-test: openonu-go-adapter-tests
TorstenThiemeffb33922020-06-18 08:41:17 +0000125
TorstenThieme280c3802020-08-07 07:07:42 +0000126# target to invoke test with openonu go adapter applying 1T4GEM tech-profile at multiple ONU
TorstenThieme66c91a82020-10-19 13:37:53 +0000127multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:omci-flows-pushed -v testmode:SingleStateTime
TorstenThiemed4f48962020-12-08 12:17:19 +0000128multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM -v logging:True
TorstenThieme66c91a82020-10-19 13:37:53 +0000129multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i sanityOnuGo -i functionalOnuGo
130multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme280c3802020-08-07 07:07:42 +0000131multi-1t4gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE)
132multi-1t4gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
TorstenThieme89caa142020-10-05 08:20:31 +0000133multi-1t4gem-openonu-go-adapter-test: openonu-go-adapter-tests
TorstenThieme280c3802020-08-07 07:07:42 +0000134
135# target to invoke test with openonu go adapter applying 1T8GEM tech-profile at multiple ONU
TorstenThieme66c91a82020-10-19 13:37:53 +0000136multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:omci-flows-pushed -v testmode:SingleStateTime
TorstenThiemed4f48962020-12-08 12:17:19 +0000137multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM -v logging:True
TorstenThieme66c91a82020-10-19 13:37:53 +0000138multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i sanityOnuGo -i functionalOnuGo
139multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme280c3802020-08-07 07:07:42 +0000140multi-1t8gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE)
141multi-1t8gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
TorstenThieme89caa142020-10-05 08:20:31 +0000142multi-1t8gem-openonu-go-adapter-test: openonu-go-adapter-tests
143
144# target to invoke test with openonu go adapter applying MIB-Upload-Templating
TorstenThiemed4f48962020-12-08 12:17:19 +0000145mib-upload-templating-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v logging:True -i functionalOnuGo
TorstenThieme66c91a82020-10-19 13:37:53 +0000146mib-upload-templating-openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme89caa142020-10-05 08:20:31 +0000147mib-upload-templating-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
148mib-upload-templating-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUTemplateTests.robot
149mib-upload-templating-openonu-go-adapter-test: openonu-go-adapter-tests
TorstenThieme280c3802020-08-07 07:07:42 +0000150
David Bainbridgef81cd642019-11-20 00:14:47 +0000151sanity-single-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500152sanity-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
153sanity-single-kind: bbsim-kind
154
David Bainbridge32c45632020-04-13 08:47:09 -0700155rwcore-restart-single-kind: ROBOT_MISC_ARGS += -X -i functionalANDrwcore-restart $(ROBOT_DEBUG_LOG_OPT)
David Bainbridgef81cd642019-11-20 00:14:47 +0000156rwcore-restart-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
ubuntu6b6e7d42020-03-02 12:35:42 -0800157rwcore-restart-single-kind: ROBOT_FILE := Voltha_FailureScenarios.robot
David Bainbridgef81cd642019-11-20 00:14:47 +0000158rwcore-restart-single-kind: voltha-test
159
David Bainbridge3d6d5d32019-12-17 19:05:35 +0000160single-kind: ROBOT_MISC_ARGS += -X -i $(TEST_TAGS) $(ROBOT_DEBUG_LOG_OPT)
161single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
162single-kind: ROBOT_FILE := Voltha_PODTests.robot
163single-kind: voltha-test
164
David Bainbridgef81cd642019-11-20 00:14:47 +0000165sanity-multi-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500166sanity-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
167sanity-multi-kind: bbsim-kind
Andy Bavierba9866b2019-10-11 07:11:53 -0700168
Andy Bavier8da0e132020-04-13 10:25:16 -0700169functional-multi-kind: ROBOT_MISC_ARGS += -i sanityORfunctional $(ROBOT_DEBUG_LOG_OPT)
170functional-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
171functional-multi-kind: bbsim-kind
172
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -0700173bbsim-kind: ROBOT_MISC_ARGS += -X
Gilles Depatie45fbe042019-11-11 17:10:06 -0500174bbsim-kind: ROBOT_FILE := Voltha_PODTests.robot
175bbsim-kind: voltha-test
176
David Bainbridgef81cd642019-11-20 00:14:47 +0000177scale-single-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500178scale-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_SINGLE_PON_FILE)
179scale-single-kind: bbsim-scale-kind
180
David Bainbridgef81cd642019-11-20 00:14:47 +0000181scale-multi-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500182scale-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_PON_FILE)
183scale-multi-kind: bbsim-scale-kind
184
David Bainbridgef81cd642019-11-20 00:14:47 +0000185bbsim-scale-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500186bbsim-scale-kind: ROBOT_FILE := Voltha_ScaleFunctionalTests.robot
187bbsim-scale-kind: voltha-test
Zack Williamsec53a1b2019-09-16 15:50:52 -0700188
hwchiuab524f02020-02-03 23:24:19 +0000189#Only supported in full mode
190system-scale-test: ROBOT_FILE := K8S_SystemTest.robot
hwchiu56eb85c2020-02-05 01:05:53 +0000191system-scale-test: ROBOT_MISC_ARGS += -X -i functional $(ROBOT_DEBUG_LOG_OPT)
hwchiuab524f02020-02-03 23:24:19 +0000192system-scale-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
193system-scale-test: voltha-test
hwchiu11289122019-11-27 16:20:15 +0000194
hwchiu85695932019-12-18 08:05:25 +0000195failure-test: ROBOT_MISC_ARGS += -X -i FailureTest $(ROBOT_DEBUG_LOG_OPT)
hwchiu3d9a0982020-02-06 00:19:19 +0000196failure-test: ROBOT_FILE := K8S_SystemTest.robot
hwchiu85695932019-12-18 08:05:25 +0000197failure-test: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
198failure-test: voltha-test
199
Scott Baker60e570d2020-02-02 22:10:13 -0800200bbsim-alarms-kind: ROBOT_MISC_ARGS += -X -i active
201bbsim-alarms-kind: ROBOT_FILE := Voltha_AlarmTests.robot
Andy Baviere118e052020-03-06 12:49:24 -0700202bbsim-alarms-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
Scott Baker60e570d2020-02-02 22:10:13 -0800203bbsim-alarms-kind: voltctl-docker-image-build voltctl-docker-image-install-kind voltha-test
204
Andy Bavierc1904dc2020-03-20 11:39:15 -0700205bbsim-errorscenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
206bbsim-errorscenarios: ROBOT_FILE := Voltha_ErrorScenarios.robot
207bbsim-errorscenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
208bbsim-errorscenarios: voltha-test
209
Suchitra Vemuri9826c052020-11-18 14:11:51 -0800210bbsim-multiolt-errorscenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
211bbsim-multiolt-errorscenarios: ROBOT_FILE := Voltha_ErrorScenarios.robot
212bbsim-multiolt-errorscenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
213bbsim-multiolt-errorscenarios: voltha-test
214
Hardik Windlasscbcca312020-04-20 21:46:11 +0530215bbsim-errorscenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
216bbsim-errorscenarios-dt: ROBOT_FILE := Voltha_ErrorScenarios.robot
217bbsim-errorscenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
218bbsim-errorscenarios-dt: voltha-test
219
Hardik Windlasse05e4712020-04-29 10:40:42 +0530220bbsim-failurescenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot
Andy Bavier8da0e132020-04-13 10:25:16 -0700221bbsim-failurescenarios: ROBOT_FILE := Voltha_FailureScenarios.robot
222bbsim-failurescenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
223bbsim-failurescenarios: voltha-test
224
Suchitra Vemuri9826c052020-11-18 14:11:51 -0800225bbsim-multiolt-failurescenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot
226bbsim-multiolt-failurescenarios: ROBOT_FILE := Voltha_FailureScenarios.robot
227bbsim-multiolt-failurescenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
228bbsim-multiolt-failurescenarios: voltha-test
229
Suchitra Vemuri6971c392020-12-08 10:41:33 -0800230bbsim-multiolt-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot
231bbsim-multiolt-kind: ROBOT_FILE := Voltha_MultiOLT_Tests.robot
232bbsim-multiolt-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
233bbsim-multiolt-kind: voltha-test
234
235bbsim-multiolt-kind-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot
236bbsim-multiolt-kind-dt: ROBOT_FILE := Voltha_DT_MultiOLT_Tests.robot
237bbsim-multiolt-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
238bbsim-multiolt-kind-dt: voltha-dt-test
239
240multiolt-kind-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -i functionalDt
241multiolt-kind-dt: ROBOT_FILE := Voltha_DT_MultiOLT_Tests.robot
242multiolt-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
243multiolt-kind-dt: voltha-dt-test
244
Hardik Windlass9df139e2020-04-24 14:54:54 +0530245bbsim-failurescenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitchOnuRebootDt -e PhysicalOltRebootDt
246bbsim-failurescenarios-dt: ROBOT_FILE := Voltha_DT_FailureScenarios.robot
247bbsim-failurescenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
248bbsim-failurescenarios-dt: voltha-dt-test
249
Andy Bavier70eab042019-12-14 14:16:26 -0700250voltha-test: ROBOT_MISC_ARGS += -e notready
hwchiu11289122019-11-27 16:20:15 +0000251
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700252voltha-test: vst_venv
253 source ./$</bin/activate ; set -u ;\
254 cd tests/functional ;\
255 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
256
TorstenThiemea7c35452020-12-16 15:25:25 +0000257bbsim-dmi-hw-management-test: ROBOT_MISC_ARGS += -e notreadyDMI -i functionalDMI -e bbsimUnimplementedDMI
258bbsim-dmi-hw-management-test: ROBOT_FILE := dmi-hw-management.robot
259bbsim-dmi-hw-management-test: ROBOT_CONFIG_FILE := $(ROBOT_DMI_SINGLE_BBSIM_FILE)
260bbsim-dmi-hw-management-test: voltha-dmi-test
uwe ottrembka504ca3e2020-11-23 12:02:20 +0100261
TorstenThiemea7c35452020-12-16 15:25:25 +0000262voltha-dmi-hw-management-test: ROBOT_MISC_ARGS += -e notreadyDMI -i functionalDMI
263voltha-dmi-hw-management-test: ROBOT_FILE := dmi-hw-management.robot
264voltha-dmi-hw-management-test: ROBOT_CONFIG_FILE := $(ROBOT_DMI_SINGLE_ADTRAN_FILE)
265voltha-dmi-hw-management-test: voltha-dmi-test
266
267voltha-dmi-test: vst_venv
uwe ottrembka504ca3e2020-11-23 12:02:20 +0100268 source ./$</bin/activate ; set -u ;\
269 cd tests/dmi-interface ;\
270 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
271
Hardik Windlass79b40ff2020-06-11 22:55:47 +0530272voltha-dt-test: ROBOT_MISC_ARGS += -e notready
273
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000274voltha-dt-test: vst_venv
275 source ./$</bin/activate ; set -u ;\
276 cd tests/dt-workflow ;\
277 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
278
Hardik Windlass43118692020-07-01 22:16:47 +0530279voltha-tt-test: ROBOT_MISC_ARGS += -e notready
280
281voltha-tt-test: vst_venv
282 source ./$</bin/activate ; set -u ;\
283 cd tests/tt-workflow ;\
284 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
285
Matteo Scandolo142e6272020-04-29 17:36:59 -0700286voltha-scale-test: vst_venv
287 source ./$</bin/activate ; set -u ;\
288 cd tests/scale ;\
289 robot $(ROBOT_MISC_ARGS) Voltha_Scale_Tests.robot
290
TorstenThieme89caa142020-10-05 08:20:31 +0000291openonu-go-adapter-tests: vst_venv
TorstenThieme1619db22020-04-03 12:01:15 +0000292 source ./$</bin/activate ; set -u ;\
293 cd tests/openonu-go-adapter ;\
294 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
295
296
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700297# self-test, lint, and setup targets
298
299# virtualenv for the robot tools
Andy Bavier952b95b2020-03-06 09:53:42 -0700300# VOL-2724 Invoke pip via python3 to avoid pathname too long on QA jobs
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700301vst_venv:
302 virtualenv -p python3 $@ ;\
303 source ./$@/bin/activate ;\
Andy Baviere118e052020-03-06 12:49:24 -0700304 python -m pip install -r requirements.txt
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700305
306test: lint
307
308lint: lint-robot lint-python lint-yaml lint-json
309
310lint-robot: vst_venv
311 source ./$</bin/activate ; set -u ;\
312 rflint $(LINT_ARGS) $(ROBOT_FILES)
313
314# check deps for format and python3 cleanliness
315lint-python: vst_venv
316 source ./$</bin/activate ; set -u ;\
317 pylint --py3k $(PYTHON_FILES) ;\
318 flake8 --max-line-length=99 --count $(PYTHON_FILES)
319
320lint-yaml: vst_venv
321 source ./$</bin/activate ; set -u ;\
322 yamllint -s $(YAML_FILES)
323
324lint-json: vst_venv
325 source ./$</bin/activate ; set -u ;\
326 for jsonfile in $(JSON_FILES); do \
327 echo "Validating json file: $$jsonfile" ;\
328 python -m json.tool $$jsonfile > /dev/null ;\
329 done
330
331# tidy target will be more useful once issue with removing leading comments
332# is resolved: https://github.com/robotframework/robotframework/issues/3263
333tidy-robot: vst_venv
334 source ./$</bin/activate ; set -u ;\
335 python -m robot.tidy --inplace $(ROBOT_FILES);
336
Andy Bavier4a8450e2020-02-04 08:58:37 -0700337# Install the 'kail' tool if needed: https://github.com/boz/kail
338KAIL_PATH ?= /usr/local/bin
339$(KAIL_PATH)/kail:
340 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b /tmp
341 mv /tmp/kail $(KAIL_PATH)
342
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700343## Variables for gendocs
344TEST_SOURCE := $(wildcard tests/*/*.robot)
345TEST_BASENAME := $(basename $(TEST_SOURCE))
346TEST_DIRS := $(dir $(TEST_SOURCE))
347
348LIB_SOURCE := $(wildcard libraries/*.robot)
349LIB_BASENAME := $(basename $(LIB_SOURCE))
350LIB_DIRS := $(dir $(LIB_SOURCE))
351
352.PHONY: gendocs lint test
353# In future explore use of --docformat REST - integration w/Sphinx?
Zack Williamsec53a1b2019-09-16 15:50:52 -0700354gendocs: vst_venv
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700355 source ./$</bin/activate ; set -u ;\
hwchiu0601ec72019-10-08 00:04:43 +0000356 mkdir -p $@ ;\
357 for dir in ${LIB_DIRS}; do mkdir -p $@/$$dir; done;\
358 for dir in ${LIB_BASENAME}; do\
359 python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\
360 done ;\
361 for dir in ${TEST_DIRS}; do mkdir -p $@/$$dir; done;\
362 for dir in ${TEST_BASENAME}; do\
363 python -m robot.testdoc $$dir.robot $@/$$dir.html ;\
364 done
Zack Williamsec53a1b2019-09-16 15:50:52 -0700365
Zack Williamsec53a1b2019-09-16 15:50:52 -0700366clean:
367 find . -name output.xml -print
368
369clean-all: clean
370 rm -rf vst_venv gendocs
Scott Baker60e570d2020-02-02 22:10:13 -0800371
372voltctl-docker-image-build:
373 cd docker && docker build -t opencord/voltctl:local -f Dockerfile.voltctl .
374
375voltctl-docker-image-install-kind:
376 @if [ "`kind get clusters | grep voltha`" = '' ]; then echo "no voltha cluster found" && exit 1; fi
377 kind load docker-image --name `kind get clusters | grep voltha` opencord/voltctl:local