blob: 67b89f374b17d0c62b7f4a9dbace54dff0f128ee [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 \
Hardik Windlass41701e82021-01-12 17:44:44 +000028 --configure FileTooLong:1500 -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
TorstenThiemef8f9a802020-12-16 15:25:25 +000049ROBOT_DMI_SINGLE_ADTRAN_FILE ?= $(ROOT_DIR)/tests/data/dmi-components-adtran.yaml
Hardik Windlass17bd1142021-03-12 08:15:25 +000050ROBOT_SW_UPGRADE_FILE ?= $(ROOT_DIR)/tests/data/software-upgrade.yaml
Zack Williamsa8fe75a2020-01-10 14:25:27 -070051
Gilles Depatie45fbe042019-11-11 17:10:06 -050052# for backwards compatibility
53sanity-kind: sanity-single-kind
54
Matteo Scandolod7ca7f22021-01-26 14:10:37 -080055# to simplify ci
56sanity-kind-att: sanity-single-kind
57
Matteo Scandolo142e6272020-04-29 17:36:59 -070058# for scale pipeline
Hardik Windlass513afd12021-02-03 15:19:46 +000059voltha-scale: ROBOT_MISC_ARGS += -i activation -v NAMESPACE:voltha $(ROBOT_DEBUG_LOG_OPT)
Matteo Scandolo142e6272020-04-29 17:36:59 -070060voltha-scale: voltha-scale-test
61
Hardik Windlassa3d04b92020-02-17 15:06:05 +000062# target to invoke DT Workflow Sanity
63sanity-kind-dt: ROBOT_MISC_ARGS += -i sanityDt $(ROBOT_DEBUG_LOG_OPT)
64sanity-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
65sanity-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot
66sanity-kind-dt: voltha-dt-test
67
Hardik Windlassd6aa0822020-06-29 20:18:12 +053068functional-single-kind: ROBOT_MISC_ARGS += -i sanityORfunctional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT)
Andy Bavier33e6dd32020-01-16 13:35:20 -070069functional-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
70functional-single-kind: bbsim-kind
71
Matteo Scandolod7ca7f22021-01-26 14:10:37 -080072# to simplify ci
73functional-single-kind-att: functional-single-kind
74
Hardik Windlass35706ba2020-02-20 08:16:42 +000075# target to invoke DT Workflow Functional scenarios
Hardik Windlassd6aa0822020-06-29 20:18:12 +053076functional-single-kind-dt: ROBOT_MISC_ARGS += -i sanityDtORfunctionalDt -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT)
Hardik Windlass35706ba2020-02-20 08:16:42 +000077functional-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
78functional-single-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot
79functional-single-kind-dt: voltha-dt-test
80
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -070081# target to invoke TT Workflow Sanity
Hardik Windlass43118692020-07-01 22:16:47 +053082sanity-kind-tt: ROBOT_MISC_ARGS += -i sanityTT $(ROBOT_DEBUG_LOG_OPT)
83sanity-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE)
84sanity-kind-tt: ROBOT_FILE := Voltha_TT_PODTests.robot
85sanity-kind-tt: voltha-tt-test
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -070086
87# target to invoke TT Workflow Functional scenarios
Hardik Windlass43118692020-07-01 22:16:47 +053088functional-single-kind-tt: ROBOT_MISC_ARGS += -i sanityTTORfunctional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT)
Suchitra Vemuri2f1e07d2020-06-26 19:18:01 -070089functional-single-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE)
90functional-single-kind-tt: ROBOT_FILE := Voltha_TT_PODTests.robot
91functional-single-kind-tt: voltha-tt-test
92
TorstenThiemebccd3ae2020-02-20 12:56:44 +000093# target to invoke multiple OLTs Functional scenarios
Suchitra Vemuri2a6975a2020-11-25 12:49:38 -080094functional-multi-olt: ROBOT_MISC_ARGS += -i sanityORfunctional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT)
TorstenThiemebccd3ae2020-02-20 12:56:44 +000095functional-multi-olt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
Suchitra Vemuri9826c052020-11-18 14:11:51 -080096functional-multi-olt: ROBOT_FILE := Voltha_PODTests.robot
TorstenThiemebccd3ae2020-02-20 12:56:44 +000097functional-multi-olt: voltha-test
98
TorstenThiemefe7099e2021-01-29 08:41:04 +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 techprofile:1T4GEM
1011t4gem-openonu-go-adapter-test: openonu-go-adapter-test
102
103# target to invoke test with openonu go adapter applying 1T8GEM tech-profile at single ONU
1041t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM
1051t8gem-openonu-go-adapter-test: openonu-go-adapter-test
106
TorstenThieme1619db22020-04-03 12:01:15 +0000107# target to invoke openonu go adapter
TorstenThieme66c91a82020-10-19 13:37:53 +0000108openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:omci-flows-pushed -v testmode:SingleStateTime
TorstenThiemed4f48962020-12-08 12:17:19 +0000109openonu-go-adapter-test: ROBOT_MISC_ARGS += -v logging:True -i sanityOnuGo -i functionalOnuGo
TorstenThieme66c91a82020-10-19 13:37:53 +0000110openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme1619db22020-04-03 12:01:15 +0000111openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
112openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
TorstenThieme89caa142020-10-05 08:20:31 +0000113openonu-go-adapter-test: openonu-go-adapter-tests
TorstenThieme1619db22020-04-03 12:01:15 +0000114
TorstenThiemefe7099e2021-01-29 08:41:04 +0000115# target to invoke test with openonu go adapter applying 1T4GEM tech-profile at multiple ONU
116multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM
117multi-1t4gem-openonu-go-adapter-test: multi-openonu-go-adapter-test
TorstenThieme280c3802020-08-07 07:07:42 +0000118
TorstenThiemefe7099e2021-01-29 08:41:04 +0000119# target to invoke test with openonu go adapter applying 1T8GEM tech-profile at multiple ONU
120multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM
121multi-1t8gem-openonu-go-adapter-test: multi-openonu-go-adapter-test
TorstenThieme280c3802020-08-07 07:07:42 +0000122
TorstenThiemeffb33922020-06-18 08:41:17 +0000123# target to invoke multiple openonu go adapter
TorstenThieme66c91a82020-10-19 13:37:53 +0000124multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:omci-flows-pushed -v testmode:SingleStateTime
TorstenThiemed4f48962020-12-08 12:17:19 +0000125multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v logging:True -i sanityOnuGo -i functionalOnuGo
TorstenThieme66c91a82020-10-19 13:37:53 +0000126multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
TorstenThiemeffb33922020-06-18 08:41:17 +0000127multi-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE)
128multi-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot
TorstenThieme89caa142020-10-05 08:20:31 +0000129multi-openonu-go-adapter-test: openonu-go-adapter-tests
TorstenThiemeffb33922020-06-18 08:41:17 +0000130
TorstenThieme89caa142020-10-05 08:20:31 +0000131# target to invoke test with openonu go adapter applying MIB-Upload-Templating
TorstenThiemed4f48962020-12-08 12:17:19 +0000132mib-upload-templating-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v logging:True -i functionalOnuGo
TorstenThieme66c91a82020-10-19 13:37:53 +0000133mib-upload-templating-openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
TorstenThieme89caa142020-10-05 08:20:31 +0000134mib-upload-templating-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
135mib-upload-templating-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUTemplateTests.robot
136mib-upload-templating-openonu-go-adapter-test: openonu-go-adapter-tests
TorstenThieme280c3802020-08-07 07:07:42 +0000137
TorstenThieme3d8bf552021-02-08 08:41:52 +0000138# target to invoke reconcile tests with openonu go adapter at single ONU with ATT workflow
139reconcile-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v workflow:ATT
140reconcile-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
141reconcile-openonu-go-adapter-test: reconcile-openonu-go-adapter-tests
142
TorstenThiemefe7099e2021-01-29 08:41:04 +0000143# target to invoke reconcile tests with openonu go adapter at single ONU with DT workflow
144reconcile-openonu-go-adapter-test-dt: ROBOT_MISC_ARGS += -v workflow:DT
TorstenThieme3d8bf552021-02-08 08:41:52 +0000145reconcile-openonu-go-adapter-test-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
146reconcile-openonu-go-adapter-test-dt: reconcile-openonu-go-adapter-tests
TorstenThiemefe7099e2021-01-29 08:41:04 +0000147
148# target to invoke reconcile tests with openonu go adapter at single ONU with TT workflow
149reconcile-openonu-go-adapter-test-tt: ROBOT_MISC_ARGS += -v workflow:TT
TorstenThieme3d8bf552021-02-08 08:41:52 +0000150reconcile-openonu-go-adapter-test-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE)
151reconcile-openonu-go-adapter-test-tt: reconcile-openonu-go-adapter-tests
TorstenThiemefe7099e2021-01-29 08:41:04 +0000152
TorstenThieme3d8bf552021-02-08 08:41:52 +0000153# target to invoke reconcile tests with openonu go adapter at single ONU
154reconcile-openonu-go-adapter-tests: ROBOT_MISC_ARGS += -v logging:True -i functionalOnuGo
155reconcile-openonu-go-adapter-tests: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
156reconcile-openonu-go-adapter-tests: ROBOT_FILE := Voltha_ONUReconcileTests.robot
157reconcile-openonu-go-adapter-tests: openonu-go-adapter-tests
TorstenThieme440b7c02020-12-18 15:42:57 +0000158
TorstenThiemefe7099e2021-01-29 08:41:04 +0000159# target to invoke test with openonu go adapter applying 1T4GEM tech-profile with multiple OLTs scenarios with ATT workflow
1601t4gem-openonu-go-adapter-multi-olt-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM
1611t4gem-openonu-go-adapter-multi-olt-test: openonu-go-adapter-multi-olt-test
TorstenThiemec3c23232021-01-13 13:06:31 +0000162
TorstenThiemefe7099e2021-01-29 08:41:04 +0000163# target to invoke test with openonu go adapter applying 1T8GEM tech-profile with multiple OLTs scenarios with ATT workflow
1641t8gem-openonu-go-adapter-multi-olt-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM
TorstenThieme3d8bf552021-02-08 08:41:52 +00001651t8gem-openonu-go-adapter-multi-olt-test: openonu-go-adapter-multi-olt-test
TorstenThiemefe7099e2021-01-29 08:41:04 +0000166
167# target to invoke test with openonu go adapter (applying 1T1GEM tech-profile) with multiple OLTs scenarios with ATT workflow
168openonu-go-adapter-multi-olt-test: ROBOT_MISC_ARGS += -v state2test:omci-flows-pushed -v testmode:SingleStateTime
169openonu-go-adapter-multi-olt-test: ROBOT_MISC_ARGS += -v logging:True -i sanityOnuGo -i functionalOnuGo
170openonu-go-adapter-multi-olt-test: ROBOT_MISC_ARGS += -e notreadyOnuGo -X $(ROBOT_DEBUG_LOG_OPT)
171openonu-go-adapter-multi-olt-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
172openonu-go-adapter-multi-olt-test: ROBOT_FILE := Voltha_ONUStateTests.robot
173openonu-go-adapter-multi-olt-test: openonu-go-adapter-tests
TorstenThieme70bc5262021-01-19 12:12:55 +0000174
David Bainbridgef81cd642019-11-20 00:14:47 +0000175sanity-single-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500176sanity-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
177sanity-single-kind: bbsim-kind
Matteo Scandoloa80b4732020-09-04 13:51:10 -0700178sanity-bbsim-att: ROBOT_MISC_ARGS += -v logging:True -v workflow:ATT
179sanity-bbsim-att: sanity-bbsim
180
181sanity-bbsim-dt: ROBOT_MISC_ARGS += -v logging:True -v workflow:DT
182sanity-bbsim-dt: sanity-bbsim
183
184sanity-bbsim-tt: ROBOT_MISC_ARGS += -v logging:True -v workflow:TT
185sanity-bbsim-tt: sanity-bbsim
186
187sanity-bbsim: ROBOT_MISC_ARGS += -i bbsimSanity $(ROBOT_DEBUG_LOG_OPT)
188sanity-bbsim: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
189sanity-bbsim: ROBOT_FILE := Voltha_BBSimTests.robot
190sanity-bbsim: voltha-bbsim-test
191
Matteo Scandolo95b22152021-02-05 15:39:34 -0800192voltha-bbsim-test: vst_venv
193 source ./$</bin/activate ; set -u ;\
194 cd tests/bbsim ;\
195 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
196
David Bainbridge32c45632020-04-13 08:47:09 -0700197rwcore-restart-single-kind: ROBOT_MISC_ARGS += -X -i functionalANDrwcore-restart $(ROBOT_DEBUG_LOG_OPT)
David Bainbridgef81cd642019-11-20 00:14:47 +0000198rwcore-restart-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
ubuntu6b6e7d42020-03-02 12:35:42 -0800199rwcore-restart-single-kind: ROBOT_FILE := Voltha_FailureScenarios.robot
David Bainbridgef81cd642019-11-20 00:14:47 +0000200rwcore-restart-single-kind: voltha-test
201
David Bainbridge3d6d5d32019-12-17 19:05:35 +0000202single-kind: ROBOT_MISC_ARGS += -X -i $(TEST_TAGS) $(ROBOT_DEBUG_LOG_OPT)
203single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
204single-kind: ROBOT_FILE := Voltha_PODTests.robot
205single-kind: voltha-test
206
David Bainbridgef81cd642019-11-20 00:14:47 +0000207sanity-multi-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500208sanity-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
209sanity-multi-kind: bbsim-kind
Andy Bavierba9866b2019-10-11 07:11:53 -0700210
Andy Bavier8da0e132020-04-13 10:25:16 -0700211functional-multi-kind: ROBOT_MISC_ARGS += -i sanityORfunctional $(ROBOT_DEBUG_LOG_OPT)
212functional-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
213functional-multi-kind: bbsim-kind
214
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -0700215bbsim-kind: ROBOT_MISC_ARGS += -X
Gilles Depatie45fbe042019-11-11 17:10:06 -0500216bbsim-kind: ROBOT_FILE := Voltha_PODTests.robot
217bbsim-kind: voltha-test
218
David Bainbridgef81cd642019-11-20 00:14:47 +0000219scale-single-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500220scale-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_SINGLE_PON_FILE)
221scale-single-kind: bbsim-scale-kind
222
David Bainbridgef81cd642019-11-20 00:14:47 +0000223scale-multi-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500224scale-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_PON_FILE)
225scale-multi-kind: bbsim-scale-kind
226
David Bainbridgef81cd642019-11-20 00:14:47 +0000227bbsim-scale-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
Gilles Depatie45fbe042019-11-11 17:10:06 -0500228bbsim-scale-kind: ROBOT_FILE := Voltha_ScaleFunctionalTests.robot
229bbsim-scale-kind: voltha-test
Zack Williamsec53a1b2019-09-16 15:50:52 -0700230
hwchiuab524f02020-02-03 23:24:19 +0000231#Only supported in full mode
232system-scale-test: ROBOT_FILE := K8S_SystemTest.robot
Matteo Scandolo66fe6452021-01-05 13:03:41 -0800233system-scale-test: ROBOT_MISC_ARGS += -X -i functional $(ROBOT_DEBUG_LOG_OPT) -v teardown_device:True
hwchiuab524f02020-02-03 23:24:19 +0000234system-scale-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE)
235system-scale-test: voltha-test
hwchiu11289122019-11-27 16:20:15 +0000236
hwchiu85695932019-12-18 08:05:25 +0000237failure-test: ROBOT_MISC_ARGS += -X -i FailureTest $(ROBOT_DEBUG_LOG_OPT)
hwchiu3d9a0982020-02-06 00:19:19 +0000238failure-test: ROBOT_FILE := K8S_SystemTest.robot
hwchiu85695932019-12-18 08:05:25 +0000239failure-test: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE)
240failure-test: voltha-test
241
Scott Baker60e570d2020-02-02 22:10:13 -0800242bbsim-alarms-kind: ROBOT_MISC_ARGS += -X -i active
243bbsim-alarms-kind: ROBOT_FILE := Voltha_AlarmTests.robot
Andy Baviere118e052020-03-06 12:49:24 -0700244bbsim-alarms-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
Scott Baker60e570d2020-02-02 22:10:13 -0800245bbsim-alarms-kind: voltctl-docker-image-build voltctl-docker-image-install-kind voltha-test
246
Andy Bavierc1904dc2020-03-20 11:39:15 -0700247bbsim-errorscenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
248bbsim-errorscenarios: ROBOT_FILE := Voltha_ErrorScenarios.robot
249bbsim-errorscenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
250bbsim-errorscenarios: voltha-test
251
Suchitra Vemuri9826c052020-11-18 14:11:51 -0800252bbsim-multiolt-errorscenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
253bbsim-multiolt-errorscenarios: ROBOT_FILE := Voltha_ErrorScenarios.robot
254bbsim-multiolt-errorscenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
255bbsim-multiolt-errorscenarios: voltha-test
256
Hardik Windlasscbcca312020-04-20 21:46:11 +0530257bbsim-errorscenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
258bbsim-errorscenarios-dt: ROBOT_FILE := Voltha_ErrorScenarios.robot
259bbsim-errorscenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
260bbsim-errorscenarios-dt: voltha-test
261
Hardik Windlasse05e4712020-04-29 10:40:42 +0530262bbsim-failurescenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot
Andy Bavier8da0e132020-04-13 10:25:16 -0700263bbsim-failurescenarios: ROBOT_FILE := Voltha_FailureScenarios.robot
264bbsim-failurescenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE)
265bbsim-failurescenarios: voltha-test
266
Suchitra Vemuri9826c052020-11-18 14:11:51 -0800267bbsim-multiolt-failurescenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot
268bbsim-multiolt-failurescenarios: ROBOT_FILE := Voltha_FailureScenarios.robot
269bbsim-multiolt-failurescenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
270bbsim-multiolt-failurescenarios: voltha-test
271
Hardik Windlass5ceb84e2021-02-11 11:17:08 +0000272bbsim-multiolt-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e MultiOLTPhysicalReboot
Suchitra Vemuri6971c392020-12-08 10:41:33 -0800273bbsim-multiolt-kind: ROBOT_FILE := Voltha_MultiOLT_Tests.robot
274bbsim-multiolt-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
275bbsim-multiolt-kind: voltha-test
276
Hardik Windlass5ceb84e2021-02-11 11:17:08 +0000277bbsim-multiolt-kind-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e MultiOLTPhysicalRebootDt
Suchitra Vemuri6971c392020-12-08 10:41:33 -0800278bbsim-multiolt-kind-dt: ROBOT_FILE := Voltha_DT_MultiOLT_Tests.robot
279bbsim-multiolt-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
280bbsim-multiolt-kind-dt: voltha-dt-test
281
282multiolt-kind-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -i functionalDt
283multiolt-kind-dt: ROBOT_FILE := Voltha_DT_MultiOLT_Tests.robot
284multiolt-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE)
285multiolt-kind-dt: voltha-dt-test
286
Hardik Windlass9df139e2020-04-24 14:54:54 +0530287bbsim-failurescenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitchOnuRebootDt -e PhysicalOltRebootDt
288bbsim-failurescenarios-dt: ROBOT_FILE := Voltha_DT_FailureScenarios.robot
289bbsim-failurescenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE)
290bbsim-failurescenarios-dt: voltha-dt-test
291
TorstenThieme136ebf72021-02-26 14:27:07 +0000292bbsim-failurescenarios-tt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT)
293bbsim-failurescenarios-tt: ROBOT_FILE := Voltha_TT_FailureScenarios.robot
294bbsim-failurescenarios-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE)
295bbsim-failurescenarios-tt: voltha-tt-test
296
Andy Bavier70eab042019-12-14 14:16:26 -0700297voltha-test: ROBOT_MISC_ARGS += -e notready
hwchiu11289122019-11-27 16:20:15 +0000298
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700299voltha-test: vst_venv
300 source ./$</bin/activate ; set -u ;\
301 cd tests/functional ;\
302 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
303
TorstenThiemef8f9a802020-12-16 15:25:25 +0000304bbsim-dmi-hw-management-test: ROBOT_MISC_ARGS += -e notreadyDMI -i functionalDMI -e bbsimUnimplementedDMI
305bbsim-dmi-hw-management-test: ROBOT_FILE := dmi-hw-management.robot
306bbsim-dmi-hw-management-test: ROBOT_CONFIG_FILE := $(ROBOT_DMI_SINGLE_BBSIM_FILE)
307bbsim-dmi-hw-management-test: voltha-dmi-test
uwe ottrembka504ca3e2020-11-23 12:02:20 +0100308
TorstenThiemef8f9a802020-12-16 15:25:25 +0000309voltha-dmi-hw-management-test: ROBOT_MISC_ARGS += -e notreadyDMI -i functionalDMI
310voltha-dmi-hw-management-test: ROBOT_FILE := dmi-hw-management.robot
311voltha-dmi-hw-management-test: ROBOT_CONFIG_FILE := $(ROBOT_DMI_SINGLE_ADTRAN_FILE)
312voltha-dmi-hw-management-test: voltha-dmi-test
313
314voltha-dmi-test: vst_venv
uwe ottrembka504ca3e2020-11-23 12:02:20 +0100315 source ./$</bin/activate ; set -u ;\
316 cd tests/dmi-interface ;\
317 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
318
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000319# ONOS Apps to test for Software Upgrade need to be passed in the 'onos_apps_under_test' variable in format:
Hardik Windlassdc2610f2021-03-09 07:33:51 +0000320# <app-name>,<version>,<oar-url>*<app-name>,<version>,<oar-url>*
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000321onos-app-upgrade-test: ROBOT_MISC_ARGS += -e notready -i functional
322onos-app-upgrade-test: ROBOT_FILE := ONOS_AppsUpgrade.robot
Hardik Windlass17bd1142021-03-12 08:15:25 +0000323onos-app-upgrade-test: ROBOT_CONFIG_FILE := $(ROBOT_SW_UPGRADE_FILE)
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000324onos-app-upgrade-test: software-upgrade-test
325
326# Voltha Components to test for Software Upgrade need to be passed in the 'voltha_comps_under_test' variable in format:
Hardik Windlassdc2610f2021-03-09 07:33:51 +0000327# <comp-label>,<comp-container>,<comp-image>*<comp-label>,<comp-container>,<comp-image>*
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000328voltha-comp-upgrade-test: ROBOT_MISC_ARGS += -e notready -i functional
329voltha-comp-upgrade-test: ROBOT_FILE := Voltha_ComponentsUpgrade.robot
Hardik Windlass17bd1142021-03-12 08:15:25 +0000330voltha-comp-upgrade-test: ROBOT_CONFIG_FILE := $(ROBOT_SW_UPGRADE_FILE)
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000331voltha-comp-upgrade-test: software-upgrade-test
332
Hardik Windlass17bd1142021-03-12 08:15:25 +0000333# Requirement: Pass ONU image details in following parameters
334# onu_image_name, onu_image_url, onu_image_version, onu_image_crc, onu_image_local_dir
335onu-upgrade-test: ROBOT_MISC_ARGS += -e notready -i functional
336onu-upgrade-test: ROBOT_FILE := ONU_Upgrade.robot
337onu-upgrade-test: ROBOT_CONFIG_FILE := $(ROBOT_SW_UPGRADE_FILE)
338onu-upgrade-test: software-upgrade-test
339
Hardik Windlassdd1a9a12021-02-23 15:34:50 +0000340software-upgrade-test: vst_venv
341 source ./$</bin/activate ; set -u ;\
342 cd tests/software-upgrades ;\
343 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
344
Hardik Windlass79b40ff2020-06-11 22:55:47 +0530345voltha-dt-test: ROBOT_MISC_ARGS += -e notready
346
Hardik Windlassa3d04b92020-02-17 15:06:05 +0000347voltha-dt-test: vst_venv
348 source ./$</bin/activate ; set -u ;\
349 cd tests/dt-workflow ;\
350 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
351
Hardik Windlass43118692020-07-01 22:16:47 +0530352voltha-tt-test: ROBOT_MISC_ARGS += -e notready
353
354voltha-tt-test: vst_venv
355 source ./$</bin/activate ; set -u ;\
356 cd tests/tt-workflow ;\
357 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
358
Matteo Scandolo142e6272020-04-29 17:36:59 -0700359voltha-scale-test: vst_venv
360 source ./$</bin/activate ; set -u ;\
361 cd tests/scale ;\
362 robot $(ROBOT_MISC_ARGS) Voltha_Scale_Tests.robot
363
TorstenThieme89caa142020-10-05 08:20:31 +0000364openonu-go-adapter-tests: vst_venv
TorstenThieme1619db22020-04-03 12:01:15 +0000365 source ./$</bin/activate ; set -u ;\
366 cd tests/openonu-go-adapter ;\
367 robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE)
368
369
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700370# self-test, lint, and setup targets
371
372# virtualenv for the robot tools
Andy Bavier952b95b2020-03-06 09:53:42 -0700373# VOL-2724 Invoke pip via python3 to avoid pathname too long on QA jobs
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700374vst_venv:
375 virtualenv -p python3 $@ ;\
376 source ./$@/bin/activate ;\
Andy Baviere118e052020-03-06 12:49:24 -0700377 python -m pip install -r requirements.txt
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700378
379test: lint
380
381lint: lint-robot lint-python lint-yaml lint-json
382
383lint-robot: vst_venv
384 source ./$</bin/activate ; set -u ;\
385 rflint $(LINT_ARGS) $(ROBOT_FILES)
386
387# check deps for format and python3 cleanliness
388lint-python: vst_venv
389 source ./$</bin/activate ; set -u ;\
390 pylint --py3k $(PYTHON_FILES) ;\
391 flake8 --max-line-length=99 --count $(PYTHON_FILES)
392
393lint-yaml: vst_venv
394 source ./$</bin/activate ; set -u ;\
395 yamllint -s $(YAML_FILES)
396
397lint-json: vst_venv
398 source ./$</bin/activate ; set -u ;\
399 for jsonfile in $(JSON_FILES); do \
400 echo "Validating json file: $$jsonfile" ;\
401 python -m json.tool $$jsonfile > /dev/null ;\
402 done
403
404# tidy target will be more useful once issue with removing leading comments
405# is resolved: https://github.com/robotframework/robotframework/issues/3263
406tidy-robot: vst_venv
407 source ./$</bin/activate ; set -u ;\
408 python -m robot.tidy --inplace $(ROBOT_FILES);
409
Andy Bavier4a8450e2020-02-04 08:58:37 -0700410# Install the 'kail' tool if needed: https://github.com/boz/kail
411KAIL_PATH ?= /usr/local/bin
412$(KAIL_PATH)/kail:
413 bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b /tmp
414 mv /tmp/kail $(KAIL_PATH)
415
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700416## Variables for gendocs
417TEST_SOURCE := $(wildcard tests/*/*.robot)
418TEST_BASENAME := $(basename $(TEST_SOURCE))
419TEST_DIRS := $(dir $(TEST_SOURCE))
420
421LIB_SOURCE := $(wildcard libraries/*.robot)
422LIB_BASENAME := $(basename $(LIB_SOURCE))
423LIB_DIRS := $(dir $(LIB_SOURCE))
424
425.PHONY: gendocs lint test
426# In future explore use of --docformat REST - integration w/Sphinx?
Zack Williamsec53a1b2019-09-16 15:50:52 -0700427gendocs: vst_venv
Zack Williamsa8fe75a2020-01-10 14:25:27 -0700428 source ./$</bin/activate ; set -u ;\
hwchiu0601ec72019-10-08 00:04:43 +0000429 mkdir -p $@ ;\
430 for dir in ${LIB_DIRS}; do mkdir -p $@/$$dir; done;\
431 for dir in ${LIB_BASENAME}; do\
432 python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\
433 done ;\
434 for dir in ${TEST_DIRS}; do mkdir -p $@/$$dir; done;\
435 for dir in ${TEST_BASENAME}; do\
436 python -m robot.testdoc $$dir.robot $@/$$dir.html ;\
437 done
Zack Williamsec53a1b2019-09-16 15:50:52 -0700438
Zack Williamsec53a1b2019-09-16 15:50:52 -0700439clean:
440 find . -name output.xml -print
441
442clean-all: clean
443 rm -rf vst_venv gendocs
Scott Baker60e570d2020-02-02 22:10:13 -0800444
445voltctl-docker-image-build:
446 cd docker && docker build -t opencord/voltctl:local -f Dockerfile.voltctl .
447
448voltctl-docker-image-install-kind:
449 @if [ "`kind get clusters | grep voltha`" = '' ]; then echo "no voltha cluster found" && exit 1; fi
450 kind load docker-image --name `kind get clusters | grep voltha` opencord/voltctl:local