Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 1 | # -*- makefile -*- |
| 2 | # ----------------------------------------------------------------------- |
| 3 | # Copyright 2022 Open Networking Foundation |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 16 | # ----------------------------------------------------------------------- |
| 17 | |
| 18 | .DEFAULT_GOAL := sanity-kind |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 19 | |
Joey Armstrong | fc2067f | 2022-10-11 23:04:49 -0400 | [diff] [blame] | 20 | TOP ?= . |
| 21 | MAKEDIR ?= $(TOP)/makefiles |
| 22 | |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 23 | # Assign early: altered by include |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 24 | ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 25 | |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 26 | ##--------------------## |
| 27 | ##---] INCLUDES [---## |
| 28 | ##--------------------## |
| 29 | include $(MAKEDIR)/consts.mk |
| 30 | include $(MAKEDIR)/help.mk |
| 31 | include $(MAKEDIR)/patches/include.mk |
| 32 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 33 | # Configuration and lists of files for linting/testing |
| 34 | VERSION ?= $(shell cat ./VERSION) |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 35 | |
| 36 | PYTHON_FILES := $(wildcard libraries/*.py) |
| 37 | ROBOT_FILES := $(shell find . -name *.robot -print) |
| 38 | YAML_FILES := $(shell find ./tests -type f \( -name *.yaml -o -name *.yml \) -print) |
| 39 | JSON_FILES := $(shell find ./tests -name *.json -print) |
| 40 | |
| 41 | # Robot config |
| 42 | ROBOT_SANITY_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 43 | ROBOT_SANITY_DT_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-dt.yaml |
Suchitra Vemuri | a311faf | 2020-11-23 13:46:52 -0800 | [diff] [blame] | 44 | ROBOT_SANITY_MULTIPLE_OLT_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-2OLTx2ONUx2PON.yaml |
TorstenThieme | 379c3da | 2021-03-23 10:27:32 +0000 | [diff] [blame] | 45 | ROBOT_SANITY_DT_MULTIPLE_OLT_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-2OLTx2ONUx2PON-dt.yaml |
| 46 | ROBOT_SANITY_TT_MULTIPLE_OLT_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-2OLTx2ONUx2PON-tt.yaml |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 47 | ROBOT_FAIL_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml |
| 48 | ROBOT_SANITY_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-2x2.yaml |
| 49 | ROBOT_SCALE_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-16.yaml |
| 50 | ROBOT_SCALE_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-8x2.yaml |
TorstenThieme | ffb3392 | 2020-06-18 08:41:17 +0000 | [diff] [blame] | 51 | ROBOT_SCALE_MULT_ONU_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-8x8.yaml |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 52 | ROBOT_DEBUG_LOG_OPT ?= |
| 53 | ROBOT_MISC_ARGS ?= |
Matteo Scandolo | 549df9e | 2020-09-04 11:09:18 -0700 | [diff] [blame] | 54 | ROBOT_SANITY_TT_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-tt.yaml |
uwe ottrembka | 504ca3e | 2020-11-23 12:02:20 +0100 | [diff] [blame] | 55 | ROBOT_DMI_SINGLE_BBSIM_FILE ?= $(ROOT_DIR)/tests/data/dmi-components-bbsim.yaml |
TorstenThieme | f8f9a80 | 2020-12-16 15:25:25 +0000 | [diff] [blame] | 56 | ROBOT_DMI_SINGLE_ADTRAN_FILE ?= $(ROOT_DIR)/tests/data/dmi-components-adtran.yaml |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 57 | ROBOT_SW_UPGRADE_FILE ?= $(ROOT_DIR)/tests/data/software-upgrade.yaml |
TorstenThieme | ff9c914 | 2021-04-08 07:21:34 +0000 | [diff] [blame] | 58 | ROBOT_PM_DATA_FILE ?= $(ROOT_DIR)/tests/data/pm-data.yaml |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 59 | ROBOT_SANITY_MULTI_UNI_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-multi-uni.yaml |
| 60 | ROBOT_SANITY_MULTI_UNI_MULTIPLE_OLT_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-multi-uni-2OLTx2ONUx2PON.yaml |
| 61 | ROBOT_SANITY_TT_MULTI_UNI_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-multi-uni-tt.yaml |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 62 | ROBOT_SANITY_TT_MULTI_UNI_MULTIPLE_OLT_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-multi-uni-2OLTx2ONUx2PON-tt.yaml |
Hardik Windlass | a7b34be | 2022-03-22 17:28:31 +0000 | [diff] [blame] | 63 | ROBOT_SANITY_DT_FTTB_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-dt-fttb-1OLTx1PONx2ONUx2UNI.yaml |
Andrea Speranza | a8cf80b | 2022-05-26 10:09:59 +0200 | [diff] [blame] | 64 | ROBOT_SANITY_TIM_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-tim.yaml |
| 65 | ROBOT_SANITY_TIM_SINGLE_PON_MULTI_ONU_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-tim-OLTxPONx2ONU.yaml |
| 66 | ROBOT_SANITY_TIM_MULTI_PON_MULTI_ONU_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-tim-OLTx2PONx2ONU.yaml |
| 67 | ROBOT_SANITY_TIM_MULTI_OLT_MULTI_PON_MULTI_ONU_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-tim-2OLTx2PONx2ONU.yaml |
Andrea Speranza | 8b6f46f | 2022-08-23 14:22:15 +0200 | [diff] [blame] | 68 | ROBOT_SANITY_BBF_ADPATER_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-bbf-adapter.yaml |
| 69 | ROBOT_SANITY_BBF_ADPATER_ADD_DELETE_FILE ?= $(ROOT_DIR)/tests/data/bbsim-bbf-adapter_addDelete_tests.yaml |
Andrea Speranza | a8cf80b | 2022-05-26 10:09:59 +0200 | [diff] [blame] | 70 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 71 | |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 72 | # for backwards compatibility |
| 73 | sanity-kind: sanity-single-kind |
| 74 | |
Matteo Scandolo | d7ca7f2 | 2021-01-26 14:10:37 -0800 | [diff] [blame] | 75 | # to simplify ci |
| 76 | sanity-kind-att: sanity-single-kind |
| 77 | |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 78 | # ATT Multi-UNI Sanity Target |
| 79 | sanity-kind-multiuni-att: ROBOT_MISC_ARGS += -X -i sanity $(ROBOT_DEBUG_LOG_OPT) |
| 80 | sanity-kind-multiuni-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTI_UNI_SINGLE_PON_FILE) |
| 81 | sanity-kind-multiuni-att: ROBOT_FILE := Voltha_PODTests.robot |
| 82 | sanity-kind-multiuni-att: voltha-test |
| 83 | |
| 84 | # ATT Multi-UNI Functional Suite Target |
| 85 | functional-single-kind-multiuni-att: ROBOT_MISC_ARGS += -X -i sanityORmulti-uni $(ROBOT_DEBUG_LOG_OPT) |
| 86 | functional-single-kind-multiuni-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTI_UNI_SINGLE_PON_FILE) |
| 87 | functional-single-kind-multiuni-att: ROBOT_FILE := Voltha_PODTests.robot |
| 88 | functional-single-kind-multiuni-att: voltha-test |
| 89 | |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 90 | # for scale pipeline |
Hardik Windlass | 513afd1 | 2021-02-03 15:19:46 +0000 | [diff] [blame] | 91 | voltha-scale: ROBOT_MISC_ARGS += -i activation -v NAMESPACE:voltha $(ROBOT_DEBUG_LOG_OPT) |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 92 | voltha-scale: voltha-scale-test |
| 93 | |
Hardik Windlass | f8b3ee6 | 2022-01-24 16:36:32 +0000 | [diff] [blame] | 94 | # for onu-upgrade scale pipeline |
| 95 | # Requirement: Pass ONU image details in following parameters |
| 96 | # image_version, image_url, image_vendor, image_activate_on_success, image_commit_on_success, image_crc |
| 97 | voltha-scale-onu-upgrade: ROBOT_MISC_ARGS += -i setup -i activation -i onu-upgrade -v NAMESPACE:voltha -v image_version:BBSM_IMG_00002 -v image_url:http://bbsim0:50074/images/software-image.img -v image_vendor:BBSM -v image_activate_on_success:false -v image_commit_on_success:false -v image_crc:0 $(ROBOT_DEBUG_LOG_OPT) |
| 98 | voltha-scale-onu-upgrade: voltha-scale-test |
| 99 | |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 100 | # target to invoke DT Workflow Sanity |
| 101 | sanity-kind-dt: ROBOT_MISC_ARGS += -i sanityDt $(ROBOT_DEBUG_LOG_OPT) |
| 102 | sanity-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 103 | sanity-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot |
| 104 | sanity-kind-dt: voltha-dt-test |
| 105 | |
Hardik Windlass | a7b34be | 2022-03-22 17:28:31 +0000 | [diff] [blame] | 106 | # target to invoke DT FTTB Workflow Sanity |
| 107 | sanity-kind-dt-fttb: ROBOT_MISC_ARGS += -i sanityDtFttb $(ROBOT_DEBUG_LOG_OPT) |
| 108 | sanity-kind-dt-fttb: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_FTTB_SINGLE_PON_FILE) |
| 109 | sanity-kind-dt-fttb: ROBOT_FILE := Voltha_DT_FTTB_Tests.robot |
| 110 | sanity-kind-dt-fttb: voltha-dt-test |
| 111 | |
Hardik Windlass | d6aa082 | 2020-06-29 20:18:12 +0530 | [diff] [blame] | 112 | functional-single-kind: ROBOT_MISC_ARGS += -i sanityORfunctional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT) |
Andy Bavier | 33e6dd3 | 2020-01-16 13:35:20 -0700 | [diff] [blame] | 113 | functional-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 114 | functional-single-kind: bbsim-kind |
| 115 | |
Matteo Scandolo | d7ca7f2 | 2021-01-26 14:10:37 -0800 | [diff] [blame] | 116 | # to simplify ci |
| 117 | functional-single-kind-att: functional-single-kind |
| 118 | |
Hardik Windlass | 35706ba | 2020-02-20 08:16:42 +0000 | [diff] [blame] | 119 | # target to invoke DT Workflow Functional scenarios |
Hardik Windlass | d6aa082 | 2020-06-29 20:18:12 +0530 | [diff] [blame] | 120 | functional-single-kind-dt: ROBOT_MISC_ARGS += -i sanityDtORfunctionalDt -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT) |
Hardik Windlass | 35706ba | 2020-02-20 08:16:42 +0000 | [diff] [blame] | 121 | functional-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 122 | functional-single-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot |
| 123 | functional-single-kind-dt: voltha-dt-test |
| 124 | |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 125 | # target to invoke TT Workflow Sanity |
Hardik Windlass | 4311869 | 2020-07-01 22:16:47 +0530 | [diff] [blame] | 126 | sanity-kind-tt: ROBOT_MISC_ARGS += -i sanityTT $(ROBOT_DEBUG_LOG_OPT) |
| 127 | sanity-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 128 | sanity-kind-tt: ROBOT_FILE := Voltha_TT_PODTests.robot |
| 129 | sanity-kind-tt: voltha-tt-test |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 130 | |
Hardik Windlass | c609eb0 | 2022-02-22 11:28:37 +0000 | [diff] [blame] | 131 | sanity-kind-tt-maclearning: ROBOT_MISC_ARGS += -i sanityTT -v with_maclearning:True $(ROBOT_DEBUG_LOG_OPT) |
| 132 | sanity-kind-tt-maclearning: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 133 | sanity-kind-tt-maclearning: ROBOT_FILE := Voltha_TT_PODTests.robot |
| 134 | sanity-kind-tt-maclearning: voltha-tt-test |
| 135 | |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 136 | sanity-kind-multiuni-tt: ROBOT_MISC_ARGS += -i sanityTT $(ROBOT_DEBUG_LOG_OPT) |
| 137 | sanity-kind-multiuni-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_MULTI_UNI_SINGLE_PON_FILE) |
| 138 | sanity-kind-multiuni-tt: ROBOT_FILE := Voltha_TT_PODTests.robot |
| 139 | sanity-kind-multiuni-tt: voltha-tt-test |
| 140 | |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 141 | # target to invoke TT Workflow Functional scenarios |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 142 | functional-single-kind-tt: ROBOT_MISC_ARGS += -i sanityTTORfunctionalTT -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT) |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 143 | functional-single-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 144 | functional-single-kind-tt: ROBOT_FILE := Voltha_TT_PODTests.robot |
| 145 | functional-single-kind-tt: voltha-tt-test |
| 146 | |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 147 | functional-single-kind-multiuni-tt: ROBOT_MISC_ARGS += -i sanityTTORfunctionalTT -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT) |
| 148 | functional-single-kind-multiuni-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_MULTI_UNI_SINGLE_PON_FILE) |
| 149 | functional-single-kind-multiuni-tt: ROBOT_FILE := Voltha_TT_PODTests.robot |
| 150 | functional-single-kind-multiuni-tt: voltha-tt-test |
| 151 | |
Andrea Speranza | a8cf80b | 2022-05-26 10:09:59 +0200 | [diff] [blame] | 152 | # target to invoke TIM Workflow Sanity |
| 153 | sanity-kind-tim: ROBOT_MISC_ARGS += -i sanityTIM $(ROBOT_DEBUG_LOG_OPT) |
| 154 | sanity-kind-tim: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TIM_SINGLE_PON_FILE) |
| 155 | sanity-kind-tim: ROBOT_FILE := Voltha_TIM_PODTests.robot |
| 156 | sanity-kind-tim: voltha-tim-test |
| 157 | |
| 158 | sanity-kind-tim-multi-onu: ROBOT_MISC_ARGS += -i sanityTIM $(ROBOT_DEBUG_LOG_OPT) |
| 159 | sanity-kind-tim-multi-onu: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TIM_SINGLE_PON_MULTI_ONU_FILE) |
| 160 | sanity-kind-tim-multi-onu: ROBOT_FILE := Voltha_TIM_PODTests.robot |
| 161 | sanity-kind-tim-multi-onu: voltha-tim-test |
| 162 | |
| 163 | sanity-kind-tim-multi-pon-multi-onu: ROBOT_MISC_ARGS += -i sanityTIM $(ROBOT_DEBUG_LOG_OPT) |
| 164 | sanity-kind-tim-multi-pon-multi-onu: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TIM_MULTI_PON_MULTI_ONU_FILE) |
| 165 | sanity-kind-tim-multi-pon-multi-onu: ROBOT_FILE := Voltha_TIM_PODTests.robot |
| 166 | sanity-kind-tim-multi-pon-multi-onu: voltha-tim-test |
| 167 | |
| 168 | sanity-kind-tim-multi-olt-multi-pon-multi-onu: ROBOT_MISC_ARGS += -i sanityTIM $(ROBOT_DEBUG_LOG_OPT) |
| 169 | sanity-kind-tim-multi-olt-multi-pon-multi-onu: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TIM_MULTI_OLT_MULTI_PON_MULTI_ONU_FILE) |
| 170 | sanity-kind-tim-multi-olt-multi-pon-multi-onu: ROBOT_FILE := Voltha_TIM_PODTests.robot |
| 171 | sanity-kind-tim-multi-olt-multi-pon-multi-onu: voltha-tim-test |
| 172 | |
| 173 | |
TorstenThieme | bccd3ae | 2020-02-20 12:56:44 +0000 | [diff] [blame] | 174 | # target to invoke multiple OLTs Functional scenarios |
Suchitra Vemuri | 2a6975a | 2020-11-25 12:49:38 -0800 | [diff] [blame] | 175 | functional-multi-olt: ROBOT_MISC_ARGS += -i sanityORfunctional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | bccd3ae | 2020-02-20 12:56:44 +0000 | [diff] [blame] | 176 | functional-multi-olt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
Suchitra Vemuri | 9826c05 | 2020-11-18 14:11:51 -0800 | [diff] [blame] | 177 | functional-multi-olt: ROBOT_FILE := Voltha_PODTests.robot |
TorstenThieme | bccd3ae | 2020-02-20 12:56:44 +0000 | [diff] [blame] | 178 | functional-multi-olt: voltha-test |
| 179 | |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 180 | functional-multiuni-multiolt-att: ROBOT_MISC_ARGS += -X -i sanityORmulti-uni $(ROBOT_DEBUG_LOG_OPT) |
| 181 | functional-multiuni-multiolt-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTI_UNI_MULTIPLE_OLT_FILE) |
| 182 | functional-multiuni-multiolt-att: ROBOT_FILE := Voltha_PODTests.robot |
| 183 | functional-multiuni-multiolt-att: voltha-test |
| 184 | |
TorstenThieme | 90a99f8 | 2021-05-05 09:17:37 +0000 | [diff] [blame] | 185 | # target to invoke test with openonu go adapter applying 1T1GEM tech-profile at single ONU |
| 186 | 1t1gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T1GEM |
| 187 | 1t1gem-openonu-go-adapter-test: openonu-go-adapter-test |
| 188 | |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 189 | # target to invoke test with openonu go adapter applying 1T4GEM tech-profile at single ONU |
| 190 | 1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM |
| 191 | 1t4gem-openonu-go-adapter-test: openonu-go-adapter-test |
| 192 | |
| 193 | # target to invoke test with openonu go adapter applying 1T8GEM tech-profile at single ONU |
| 194 | 1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM |
| 195 | 1t8gem-openonu-go-adapter-test: openonu-go-adapter-test |
| 196 | |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 197 | # target to invoke openonu go adapter |
TorstenThieme | 66c91a8 | 2020-10-19 13:37:53 +0000 | [diff] [blame] | 198 | openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:omci-flows-pushed -v testmode:SingleStateTime |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 199 | openonu-go-adapter-test: ROBOT_MISC_ARGS += -i sanityOnuGo -i functionalOnuGo |
TorstenThieme | 41097be | 2021-07-06 09:52:50 +0000 | [diff] [blame] | 200 | openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 201 | openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 202 | openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot |
TorstenThieme | 89caa14 | 2020-10-05 08:20:31 +0000 | [diff] [blame] | 203 | openonu-go-adapter-test: openonu-go-adapter-tests |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 204 | |
Andrea Speranza | 8b6f46f | 2022-08-23 14:22:15 +0200 | [diff] [blame] | 205 | # target to invoke bbf adapter |
| 206 | bbf-adapter: ROBOT_MISC_ARGS += -i sanityBbfAdapter $(ROBOT_DEBUG_LOG_OPT) |
| 207 | bbf-adapter: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_BBF_ADPATER_SINGLE_PON_FILE) |
| 208 | bbf-adapter: ROBOT_FILE := Voltha_BBF_Adapter_Tests.robot |
| 209 | bbf-adapter: voltha-bbf-adapter-test |
| 210 | |
| 211 | bbf-adapter-functionality: ROBOT_MISC_ARGS += -i bbfAdapterFunctionality $(ROBOT_DEBUG_LOG_OPT) |
| 212 | bbf-adapter-functionality: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_BBF_ADPATER_ADD_DELETE_FILE) |
| 213 | bbf-adapter-functionality: ROBOT_FILE := Voltha_BBF_Adapter_Tests.robot |
| 214 | bbf-adapter-functionality: voltha-bbf-adapter-test |
| 215 | |
| 216 | bbf-adapter-functionality-single: ROBOT_MISC_ARGS += -i bbfAdapterFunctionalitySingleTest $(ROBOT_DEBUG_LOG_OPT) |
| 217 | bbf-adapter-functionality-single: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_BBF_ADPATER_ADD_DELETE_FILE) |
| 218 | bbf-adapter-functionality-single: ROBOT_FILE := Voltha_BBF_Adapter_Tests.robot |
| 219 | bbf-adapter-functionality-single: voltha-bbf-adapter-test |
| 220 | |
TorstenThieme | 89caa14 | 2020-10-05 08:20:31 +0000 | [diff] [blame] | 221 | # target to invoke test with openonu go adapter applying MIB-Upload-Templating |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 222 | mib-upload-templating-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i functionalOnuGo |
TorstenThieme | 5db695e | 2022-04-01 08:19:05 +0000 | [diff] [blame] | 223 | mib-upload-templating-openonu-go-adapter-test: ROBOT_MISC_ARGS += -e notreadyOnuGo $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | 89caa14 | 2020-10-05 08:20:31 +0000 | [diff] [blame] | 224 | mib-upload-templating-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE) |
| 225 | mib-upload-templating-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUTemplateTests.robot |
| 226 | mib-upload-templating-openonu-go-adapter-test: openonu-go-adapter-tests |
TorstenThieme | 280c380 | 2020-08-07 07:07:42 +0000 | [diff] [blame] | 227 | |
TorstenThieme | 53450ff | 2021-05-11 09:44:33 +0000 | [diff] [blame] | 228 | # target to invoke test with openonu go adapter applying 1T8GEM tech-profile at single ONU with OMCI hardening |
| 229 | # timeout is determined for omci_response_rate=9 and omci_timeout=1s |
| 230 | openonu-go-adapter-omci-hardening-passed-test: ROBOT_MISC_ARGS += -v timeout:180s -v techprofile:1T8GEM |
| 231 | openonu-go-adapter-omci-hardening-passed-test: openonu-go-adapter-test |
| 232 | |
| 233 | # target to invoke openonu go adapter failed state test at single ONU with OMCI hardening |
| 234 | # test should show in case of too small omci_response_rate (<=7) in BBSIM that OMCI hardening does not work |
| 235 | # test is PASS when ONU does not leave state 'starting-openomci' |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 236 | openonu-go-adapter-omci-hardening-failed-test: ROBOT_MISC_ARGS += -v timeout:300s -i NegativeStateTestOnuGo |
TorstenThieme | 5db695e | 2022-04-01 08:19:05 +0000 | [diff] [blame] | 237 | openonu-go-adapter-omci-hardening-failed-test: ROBOT_MISC_ARGS += -e notreadyOnuGo $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | 53450ff | 2021-05-11 09:44:33 +0000 | [diff] [blame] | 238 | openonu-go-adapter-omci-hardening-failed-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 239 | openonu-go-adapter-omci-hardening-failed-test: ROBOT_FILE := Voltha_ONUNegativeStateTests.robot |
| 240 | openonu-go-adapter-omci-hardening-failed-test: openonu-go-adapter-tests |
| 241 | |
TorstenThieme | 379c3da | 2021-03-23 10:27:32 +0000 | [diff] [blame] | 242 | # target to invoke reconcile tests with openonu go adapter at single ONU with ATT workflow (default workflow) |
TorstenThieme | 90a99f8 | 2021-05-05 09:17:37 +0000 | [diff] [blame] | 243 | reconcile-openonu-go-adapter-test-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 244 | reconcile-openonu-go-adapter-test-att: reconcile-openonu-go-adapter-tests-att |
TorstenThieme | 3d8bf55 | 2021-02-08 08:41:52 +0000 | [diff] [blame] | 245 | |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 246 | # target to invoke reconcile tests with openonu go adapter at single ONU with DT workflow |
TorstenThieme | 3d8bf55 | 2021-02-08 08:41:52 +0000 | [diff] [blame] | 247 | reconcile-openonu-go-adapter-test-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
TorstenThieme | 379c3da | 2021-03-23 10:27:32 +0000 | [diff] [blame] | 248 | reconcile-openonu-go-adapter-test-dt: reconcile-openonu-go-adapter-tests-dt |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 249 | |
| 250 | # target to invoke reconcile tests with openonu go adapter at single ONU with TT workflow |
TorstenThieme | 3d8bf55 | 2021-02-08 08:41:52 +0000 | [diff] [blame] | 251 | reconcile-openonu-go-adapter-test-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
TorstenThieme | 379c3da | 2021-03-23 10:27:32 +0000 | [diff] [blame] | 252 | reconcile-openonu-go-adapter-test-tt: reconcile-openonu-go-adapter-tests-tt |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 253 | |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 254 | # target to invoke reconcile tests with openonu go adapter at single ONU multi UNI with TT workflow |
| 255 | reconcile-openonu-go-adapter-multi-uni-test-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_MULTI_UNI_SINGLE_PON_FILE) |
| 256 | reconcile-openonu-go-adapter-multi-uni-test-tt: ROBOT_MISC_ARGS += -v unitag_sub:True |
| 257 | reconcile-openonu-go-adapter-multi-uni-test-tt: reconcile-openonu-go-adapter-tests-tt |
| 258 | |
TorstenThieme | 379c3da | 2021-03-23 10:27:32 +0000 | [diff] [blame] | 259 | # target to invoke reconcile tests with openonu go adapter with multiple OLTs scenario with ATT workflow (default workflow) |
TorstenThieme | 90a99f8 | 2021-05-05 09:17:37 +0000 | [diff] [blame] | 260 | reconcile-openonu-go-adapter-multi-olt-test-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 261 | reconcile-openonu-go-adapter-multi-olt-test-att: reconcile-openonu-go-adapter-tests-att |
TorstenThieme | 379c3da | 2021-03-23 10:27:32 +0000 | [diff] [blame] | 262 | |
| 263 | # target to invoke reconcile tests with openonu go adapter with multiple OLTs scenario with DT workflow |
| 264 | reconcile-openonu-go-adapter-multi-olt-test-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_MULTIPLE_OLT_FILE) |
| 265 | reconcile-openonu-go-adapter-multi-olt-test-dt: reconcile-openonu-go-adapter-tests-dt |
| 266 | |
| 267 | # target to invoke reconcile tests with openonu go adapter with multiple OLTs scenario with TT workflow |
| 268 | reconcile-openonu-go-adapter-multi-olt-test-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_MULTIPLE_OLT_FILE) |
| 269 | reconcile-openonu-go-adapter-multi-olt-test-tt: reconcile-openonu-go-adapter-tests-tt |
| 270 | |
TorstenThieme | 00fe826 | 2022-01-19 10:43:07 +0000 | [diff] [blame] | 271 | # target to invoke reconcile tests with openonu go adapter with multiple OLTs multi UNI scenario with TT workflow |
| 272 | reconcile-openonu-go-adapter-multi-olt-multi-uni-test-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_MULTI_UNI_MULTIPLE_OLT_FILE) |
| 273 | reconcile-openonu-go-adapter-multi-olt-multi-uni-test-tt: ROBOT_MISC_ARGS += -v unitag_sub:True |
| 274 | reconcile-openonu-go-adapter-multi-olt-multi-uni-test-tt: reconcile-openonu-go-adapter-tests-tt |
| 275 | |
TorstenThieme | 90a99f8 | 2021-05-05 09:17:37 +0000 | [diff] [blame] | 276 | # target to invoke reconcile tests with openonu go adapter with ATT workflow |
| 277 | reconcile-openonu-go-adapter-tests-att: ROBOT_MISC_ARGS += -v workflow:ATT |
| 278 | reconcile-openonu-go-adapter-tests-att: reconcile-openonu-go-adapter-tests |
| 279 | |
TorstenThieme | 379c3da | 2021-03-23 10:27:32 +0000 | [diff] [blame] | 280 | # target to invoke reconcile tests with openonu go adapter with DT workflow |
| 281 | reconcile-openonu-go-adapter-tests-dt: ROBOT_MISC_ARGS += -v workflow:DT |
| 282 | reconcile-openonu-go-adapter-tests-dt: reconcile-openonu-go-adapter-tests |
| 283 | |
| 284 | # target to invoke reconcile tests with openonu go adapter with TT workflow |
| 285 | reconcile-openonu-go-adapter-tests-tt: ROBOT_MISC_ARGS += -v workflow:TT |
| 286 | reconcile-openonu-go-adapter-tests-tt: reconcile-openonu-go-adapter-tests |
| 287 | |
| 288 | # target to invoke reconcile tests with openonu go adapter at single ONU resp. multiple OLTs |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 289 | reconcile-openonu-go-adapter-tests: ROBOT_MISC_ARGS += -i functionalOnuGo |
TorstenThieme | 0ec95eb | 2021-11-23 14:56:26 +0000 | [diff] [blame] | 290 | reconcile-openonu-go-adapter-tests: ROBOT_MISC_ARGS += -e notreadyOnuGo $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | 3d8bf55 | 2021-02-08 08:41:52 +0000 | [diff] [blame] | 291 | reconcile-openonu-go-adapter-tests: ROBOT_FILE := Voltha_ONUReconcileTests.robot |
| 292 | reconcile-openonu-go-adapter-tests: openonu-go-adapter-tests |
TorstenThieme | 440b7c0 | 2020-12-18 15:42:57 +0000 | [diff] [blame] | 293 | |
TorstenThieme | 90a99f8 | 2021-05-05 09:17:37 +0000 | [diff] [blame] | 294 | # target to invoke test with openonu go adapter applying 1T1GEM tech-profile with multiple OLTs scenarios with ATT workflow |
| 295 | 1t1gem-openonu-go-adapter-multi-olt-test: ROBOT_MISC_ARGS += -v techprofile:1T1GEM |
| 296 | 1t1gem-openonu-go-adapter-multi-olt-test: openonu-go-adapter-multi-olt-test |
| 297 | |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 298 | # target to invoke test with openonu go adapter applying 1T4GEM tech-profile with multiple OLTs scenarios with ATT workflow |
| 299 | 1t4gem-openonu-go-adapter-multi-olt-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM |
| 300 | 1t4gem-openonu-go-adapter-multi-olt-test: openonu-go-adapter-multi-olt-test |
TorstenThieme | c3c2323 | 2021-01-13 13:06:31 +0000 | [diff] [blame] | 301 | |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 302 | # target to invoke test with openonu go adapter applying 1T8GEM tech-profile with multiple OLTs scenarios with ATT workflow |
| 303 | 1t8gem-openonu-go-adapter-multi-olt-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM |
TorstenThieme | 3d8bf55 | 2021-02-08 08:41:52 +0000 | [diff] [blame] | 304 | 1t8gem-openonu-go-adapter-multi-olt-test: openonu-go-adapter-multi-olt-test |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 305 | |
| 306 | # target to invoke test with openonu go adapter (applying 1T1GEM tech-profile) with multiple OLTs scenarios with ATT workflow |
| 307 | openonu-go-adapter-multi-olt-test: ROBOT_MISC_ARGS += -v state2test:omci-flows-pushed -v testmode:SingleStateTime |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 308 | openonu-go-adapter-multi-olt-test: ROBOT_MISC_ARGS += -i sanityOnuGo -i functionalOnuGo |
TorstenThieme | 41097be | 2021-07-06 09:52:50 +0000 | [diff] [blame] | 309 | openonu-go-adapter-multi-olt-test: ROBOT_MISC_ARGS += -e notreadyOnuGo $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | fe7099e | 2021-01-29 08:41:04 +0000 | [diff] [blame] | 310 | openonu-go-adapter-multi-olt-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 311 | openonu-go-adapter-multi-olt-test: ROBOT_FILE := Voltha_ONUStateTests.robot |
| 312 | openonu-go-adapter-multi-olt-test: openonu-go-adapter-tests |
TorstenThieme | 70bc526 | 2021-01-19 12:12:55 +0000 | [diff] [blame] | 313 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 314 | sanity-single-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 315 | sanity-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 316 | sanity-single-kind: bbsim-kind |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 317 | |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 318 | sanity-bbsim-att: ROBOT_MISC_ARGS += -v workflow:ATT |
Matteo Scandolo | a80b473 | 2020-09-04 13:51:10 -0700 | [diff] [blame] | 319 | sanity-bbsim-att: sanity-bbsim |
| 320 | |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 321 | sanity-bbsim-dt: ROBOT_MISC_ARGS += -v workflow:DT |
Matteo Scandolo | f310d96 | 2021-05-18 10:35:48 -0700 | [diff] [blame] | 322 | sanity-bbsim-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 323 | sanity-bbsim-dt: ROBOT_FILE := Voltha_BBSimTests.robot |
| 324 | sanity-bbsim-dt: voltha-bbsim-test |
Matteo Scandolo | a80b473 | 2020-09-04 13:51:10 -0700 | [diff] [blame] | 325 | |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 326 | sanity-bbsim-tt: ROBOT_MISC_ARGS += -v workflow:TT |
Matteo Scandolo | f310d96 | 2021-05-18 10:35:48 -0700 | [diff] [blame] | 327 | sanity-bbsim-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 328 | sanity-bbsim-tt: ROBOT_FILE := Voltha_BBSimTests.robot |
| 329 | sanity-bbsim-tt: voltha-bbsim-test |
Matteo Scandolo | a80b473 | 2020-09-04 13:51:10 -0700 | [diff] [blame] | 330 | |
| 331 | sanity-bbsim: ROBOT_MISC_ARGS += -i bbsimSanity $(ROBOT_DEBUG_LOG_OPT) |
| 332 | sanity-bbsim: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 333 | sanity-bbsim: ROBOT_FILE := Voltha_BBSimTests.robot |
| 334 | sanity-bbsim: voltha-bbsim-test |
| 335 | |
Matteo Scandolo | 95b2215 | 2021-02-05 15:39:34 -0800 | [diff] [blame] | 336 | voltha-bbsim-test: vst_venv |
| 337 | source ./$</bin/activate ; set -u ;\ |
| 338 | cd tests/bbsim ;\ |
| 339 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 340 | |
David Bainbridge | 32c4563 | 2020-04-13 08:47:09 -0700 | [diff] [blame] | 341 | rwcore-restart-single-kind: ROBOT_MISC_ARGS += -X -i functionalANDrwcore-restart $(ROBOT_DEBUG_LOG_OPT) |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 342 | rwcore-restart-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE) |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 343 | rwcore-restart-single-kind: ROBOT_FILE := Voltha_FailureScenarios.robot |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 344 | rwcore-restart-single-kind: voltha-test |
| 345 | |
David Bainbridge | 3d6d5d3 | 2019-12-17 19:05:35 +0000 | [diff] [blame] | 346 | single-kind: ROBOT_MISC_ARGS += -X -i $(TEST_TAGS) $(ROBOT_DEBUG_LOG_OPT) |
| 347 | single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 348 | single-kind: ROBOT_FILE := Voltha_PODTests.robot |
| 349 | single-kind: voltha-test |
| 350 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 351 | sanity-multi-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 352 | sanity-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE) |
| 353 | sanity-multi-kind: bbsim-kind |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 354 | |
Andy Bavier | 8da0e13 | 2020-04-13 10:25:16 -0700 | [diff] [blame] | 355 | functional-multi-kind: ROBOT_MISC_ARGS += -i sanityORfunctional $(ROBOT_DEBUG_LOG_OPT) |
| 356 | functional-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE) |
| 357 | functional-multi-kind: bbsim-kind |
| 358 | |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 359 | bbsim-kind: ROBOT_MISC_ARGS += -X |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 360 | bbsim-kind: ROBOT_FILE := Voltha_PODTests.robot |
| 361 | bbsim-kind: voltha-test |
| 362 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 363 | scale-single-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 364 | scale-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_SINGLE_PON_FILE) |
| 365 | scale-single-kind: bbsim-scale-kind |
| 366 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 367 | scale-multi-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 368 | scale-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_PON_FILE) |
| 369 | scale-multi-kind: bbsim-scale-kind |
| 370 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 371 | bbsim-scale-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 372 | bbsim-scale-kind: ROBOT_FILE := Voltha_ScaleFunctionalTests.robot |
| 373 | bbsim-scale-kind: voltha-test |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 374 | |
hwchiu | ab524f0 | 2020-02-03 23:24:19 +0000 | [diff] [blame] | 375 | #Only supported in full mode |
| 376 | system-scale-test: ROBOT_FILE := K8S_SystemTest.robot |
Matteo Scandolo | 66fe645 | 2021-01-05 13:03:41 -0800 | [diff] [blame] | 377 | system-scale-test: ROBOT_MISC_ARGS += -X -i functional $(ROBOT_DEBUG_LOG_OPT) -v teardown_device:True |
hwchiu | ab524f0 | 2020-02-03 23:24:19 +0000 | [diff] [blame] | 378 | system-scale-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE) |
| 379 | system-scale-test: voltha-test |
hwchiu | 1128912 | 2019-11-27 16:20:15 +0000 | [diff] [blame] | 380 | |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 381 | failure-test: ROBOT_MISC_ARGS += -X -i FailureTest $(ROBOT_DEBUG_LOG_OPT) |
hwchiu | 3d9a098 | 2020-02-06 00:19:19 +0000 | [diff] [blame] | 382 | failure-test: ROBOT_FILE := K8S_SystemTest.robot |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 383 | failure-test: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE) |
| 384 | failure-test: voltha-test |
| 385 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 386 | bbsim-alarms-kind: ROBOT_MISC_ARGS += -X -i active |
| 387 | bbsim-alarms-kind: ROBOT_FILE := Voltha_AlarmTests.robot |
Andy Bavier | e118e05 | 2020-03-06 12:49:24 -0700 | [diff] [blame] | 388 | bbsim-alarms-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 389 | bbsim-alarms-kind: voltctl-docker-image-build voltctl-docker-image-install-kind voltha-test |
| 390 | |
Andy Bavier | c1904dc | 2020-03-20 11:39:15 -0700 | [diff] [blame] | 391 | bbsim-errorscenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
| 392 | bbsim-errorscenarios: ROBOT_FILE := Voltha_ErrorScenarios.robot |
| 393 | bbsim-errorscenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 394 | bbsim-errorscenarios: voltha-test |
| 395 | |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 396 | bbsim-multiuni-errorscenarios-att: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
| 397 | bbsim-multiuni-errorscenarios-att: ROBOT_FILE := Voltha_ErrorScenarios.robot |
| 398 | bbsim-multiuni-errorscenarios-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTI_UNI_SINGLE_PON_FILE) |
| 399 | bbsim-multiuni-errorscenarios-att: voltha-test |
| 400 | |
Suchitra Vemuri | 9826c05 | 2020-11-18 14:11:51 -0800 | [diff] [blame] | 401 | bbsim-multiolt-errorscenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
| 402 | bbsim-multiolt-errorscenarios: ROBOT_FILE := Voltha_ErrorScenarios.robot |
| 403 | bbsim-multiolt-errorscenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 404 | bbsim-multiolt-errorscenarios: voltha-test |
| 405 | |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 406 | bbsim-multiuni-multiolt-errorscenarios-att: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
| 407 | bbsim-multiuni-multiolt-errorscenarios-att: ROBOT_FILE := Voltha_ErrorScenarios.robot |
| 408 | bbsim-multiuni-multiolt-errorscenarios-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTI_UNI_MULTIPLE_OLT_FILE) |
| 409 | bbsim-multiuni-multiolt-errorscenarios-att: voltha-test |
| 410 | |
Hardik Windlass | cbcca31 | 2020-04-20 21:46:11 +0530 | [diff] [blame] | 411 | bbsim-errorscenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
| 412 | bbsim-errorscenarios-dt: ROBOT_FILE := Voltha_ErrorScenarios.robot |
| 413 | bbsim-errorscenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 414 | bbsim-errorscenarios-dt: voltha-test |
| 415 | |
Hardik Windlass | e05e471 | 2020-04-29 10:40:42 +0530 | [diff] [blame] | 416 | bbsim-failurescenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot |
Andy Bavier | 8da0e13 | 2020-04-13 10:25:16 -0700 | [diff] [blame] | 417 | bbsim-failurescenarios: ROBOT_FILE := Voltha_FailureScenarios.robot |
| 418 | bbsim-failurescenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 419 | bbsim-failurescenarios: voltha-test |
| 420 | |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 421 | bbsim-multiuni-failurescenarios-att: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot |
| 422 | bbsim-multiuni-failurescenarios-att: ROBOT_FILE := Voltha_FailureScenarios.robot |
| 423 | bbsim-multiuni-failurescenarios-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTI_UNI_SINGLE_PON_FILE) |
| 424 | bbsim-multiuni-failurescenarios-att: voltha-test |
| 425 | |
Suchitra Vemuri | 9826c05 | 2020-11-18 14:11:51 -0800 | [diff] [blame] | 426 | bbsim-multiolt-failurescenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot |
| 427 | bbsim-multiolt-failurescenarios: ROBOT_FILE := Voltha_FailureScenarios.robot |
| 428 | bbsim-multiolt-failurescenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 429 | bbsim-multiolt-failurescenarios: voltha-test |
| 430 | |
Hardik Windlass | 1ed2eee | 2021-06-25 09:51:03 +0000 | [diff] [blame] | 431 | bbsim-multiuni-multiolt-failurescenarios-att: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOLTReboot |
| 432 | bbsim-multiuni-multiolt-failurescenarios-att: ROBOT_FILE := Voltha_FailureScenarios.robot |
| 433 | bbsim-multiuni-multiolt-failurescenarios-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTI_UNI_MULTIPLE_OLT_FILE) |
| 434 | bbsim-multiuni-multiolt-failurescenarios-att: voltha-test |
| 435 | |
Hardik Windlass | 5ceb84e | 2021-02-11 11:17:08 +0000 | [diff] [blame] | 436 | bbsim-multiolt-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e MultiOLTPhysicalReboot |
Suchitra Vemuri | 6971c39 | 2020-12-08 10:41:33 -0800 | [diff] [blame] | 437 | bbsim-multiolt-kind: ROBOT_FILE := Voltha_MultiOLT_Tests.robot |
| 438 | bbsim-multiolt-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 439 | bbsim-multiolt-kind: voltha-test |
| 440 | |
Hardik Windlass | 5ceb84e | 2021-02-11 11:17:08 +0000 | [diff] [blame] | 441 | bbsim-multiolt-kind-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e MultiOLTPhysicalRebootDt |
Suchitra Vemuri | 6971c39 | 2020-12-08 10:41:33 -0800 | [diff] [blame] | 442 | bbsim-multiolt-kind-dt: ROBOT_FILE := Voltha_DT_MultiOLT_Tests.robot |
| 443 | bbsim-multiolt-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 444 | bbsim-multiolt-kind-dt: voltha-dt-test |
| 445 | |
| 446 | multiolt-kind-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -i functionalDt |
| 447 | multiolt-kind-dt: ROBOT_FILE := Voltha_DT_MultiOLT_Tests.robot |
| 448 | multiolt-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 449 | multiolt-kind-dt: voltha-dt-test |
| 450 | |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 451 | bbsim-failurescenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitchOnuRebootDt -e PhysicalOltRebootDt |
| 452 | bbsim-failurescenarios-dt: ROBOT_FILE := Voltha_DT_FailureScenarios.robot |
| 453 | bbsim-failurescenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 454 | bbsim-failurescenarios-dt: voltha-dt-test |
| 455 | |
Hardik Windlass | b1bda36 | 2021-11-24 11:54:36 +0000 | [diff] [blame] | 456 | bbsim-failurescenarios-tt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitch -e PhysicalOltRebootTT -e dataplaneTT |
TorstenThieme | 136ebf7 | 2021-02-26 14:27:07 +0000 | [diff] [blame] | 457 | bbsim-failurescenarios-tt: ROBOT_FILE := Voltha_TT_FailureScenarios.robot |
| 458 | bbsim-failurescenarios-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 459 | bbsim-failurescenarios-tt: voltha-tt-test |
| 460 | |
Andrea Campanella | f108157 | 2021-10-06 16:06:55 +0200 | [diff] [blame] | 461 | onos-ha-test: ROBOT_MISC_ARGS += -e notready -X $(ROBOT_DEBUG_LOG_OPT) |
| 462 | onos-ha-test: ROBOT_FILE := Voltha_ONOSHATests.robot |
| 463 | onos-ha-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 464 | onos-ha-test: voltha-test |
| 465 | |
Matteo Scandolo | ab48f9e | 2021-06-11 17:08:00 +0200 | [diff] [blame] | 466 | voltha-test: ROBOT_MISC_ARGS += -e notready --noncritical non-critical |
hwchiu | 1128912 | 2019-11-27 16:20:15 +0000 | [diff] [blame] | 467 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 468 | voltha-test: vst_venv |
| 469 | source ./$</bin/activate ; set -u ;\ |
| 470 | cd tests/functional ;\ |
| 471 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 472 | |
TorstenThieme | f8f9a80 | 2020-12-16 15:25:25 +0000 | [diff] [blame] | 473 | bbsim-dmi-hw-management-test: ROBOT_MISC_ARGS += -e notreadyDMI -i functionalDMI -e bbsimUnimplementedDMI |
| 474 | bbsim-dmi-hw-management-test: ROBOT_FILE := dmi-hw-management.robot |
| 475 | bbsim-dmi-hw-management-test: ROBOT_CONFIG_FILE := $(ROBOT_DMI_SINGLE_BBSIM_FILE) |
| 476 | bbsim-dmi-hw-management-test: voltha-dmi-test |
uwe ottrembka | 504ca3e | 2020-11-23 12:02:20 +0100 | [diff] [blame] | 477 | |
TorstenThieme | f8f9a80 | 2020-12-16 15:25:25 +0000 | [diff] [blame] | 478 | voltha-dmi-hw-management-test: ROBOT_MISC_ARGS += -e notreadyDMI -i functionalDMI |
| 479 | voltha-dmi-hw-management-test: ROBOT_FILE := dmi-hw-management.robot |
| 480 | voltha-dmi-hw-management-test: ROBOT_CONFIG_FILE := $(ROBOT_DMI_SINGLE_ADTRAN_FILE) |
| 481 | voltha-dmi-hw-management-test: voltha-dmi-test |
| 482 | |
| 483 | voltha-dmi-test: vst_venv |
uwe ottrembka | 504ca3e | 2020-11-23 12:02:20 +0100 | [diff] [blame] | 484 | source ./$</bin/activate ; set -u ;\ |
| 485 | cd tests/dmi-interface ;\ |
| 486 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 487 | |
TorstenThieme | ff9c914 | 2021-04-08 07:21:34 +0000 | [diff] [blame] | 488 | # target to invoke single ONU pm data scenarios in ATT workflow |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 489 | voltha-pm-data-single-kind-att: ROBOT_MISC_ARGS += -v workflow:ATT |
TorstenThieme | ff9c914 | 2021-04-08 07:21:34 +0000 | [diff] [blame] | 490 | voltha-pm-data-single-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 491 | voltha-pm-data-single-kind-att: voltha-pm-data-tests |
| 492 | |
| 493 | # target to invoke single ONU pm data scenarios in DT workflow |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 494 | voltha-pm-data-single-kind-dt: ROBOT_MISC_ARGS += -v workflow:DT |
TorstenThieme | ff9c914 | 2021-04-08 07:21:34 +0000 | [diff] [blame] | 495 | voltha-pm-data-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 496 | voltha-pm-data-single-kind-dt: voltha-pm-data-tests |
| 497 | |
| 498 | # target to invoke single ONU pm data scenarios in TT workflow |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 499 | voltha-pm-data-single-kind-tt: ROBOT_MISC_ARGS += -v workflow:TT |
TorstenThieme | 90a99f8 | 2021-05-05 09:17:37 +0000 | [diff] [blame] | 500 | voltha-pm-data-single-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 501 | voltha-pm-data-single-kind-tt: voltha-pm-data-tests |
TorstenThieme | ff9c914 | 2021-04-08 07:21:34 +0000 | [diff] [blame] | 502 | |
| 503 | # target to invoke multiple OLTs pm data scenarios in ATT workflow |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 504 | voltha-pm-data-multiolt-kind-att: ROBOT_MISC_ARGS += -v workflow:ATT |
TorstenThieme | ff9c914 | 2021-04-08 07:21:34 +0000 | [diff] [blame] | 505 | voltha-pm-data-multiolt-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 506 | voltha-pm-data-multiolt-kind-att: voltha-pm-data-tests |
| 507 | |
| 508 | # target to invoke multiple OLTs pm data scenarios in DT workflow |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 509 | voltha-pm-data-multiolt-kind-dt: ROBOT_MISC_ARGS += -v workflow:DT |
TorstenThieme | ff9c914 | 2021-04-08 07:21:34 +0000 | [diff] [blame] | 510 | voltha-pm-data-multiolt-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_MULTIPLE_OLT_FILE) |
| 511 | voltha-pm-data-multiolt-kind-dt: voltha-pm-data-tests |
| 512 | |
| 513 | # target to invoke multiple OLTs pm data scenarios in TT workflow |
Hardik Windlass | 9e3db23 | 2021-10-14 07:10:47 +0000 | [diff] [blame] | 514 | voltha-pm-data-multiolt-kind-tt: ROBOT_MISC_ARGS += -v workflow:TT |
TorstenThieme | ff9c914 | 2021-04-08 07:21:34 +0000 | [diff] [blame] | 515 | voltha-pm-data-multiolt-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_MULTIPLE_OLT_FILE) |
| 516 | voltha-pm-data-multiolt-kind-tt: voltha-pm-data-tests |
| 517 | |
| 518 | voltha-pm-data-tests: ROBOT_MISC_ARGS += -i functional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT) |
| 519 | voltha-pm-data-tests: ROBOT_PM_CONFIG_FILE := $(ROBOT_PM_DATA_FILE) |
| 520 | voltha-pm-data-tests: ROBOT_FILE := Voltha_ONUPMTests.robot |
| 521 | voltha-pm-data-tests: voltha-pm-data-test |
| 522 | |
| 523 | voltha-pm-data-test: vst_venv |
| 524 | source ./$</bin/activate ; set -u ;\ |
| 525 | cd tests/pm-data ;\ |
| 526 | robot -V $(ROBOT_CONFIG_FILE) -V $(ROBOT_PM_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 527 | |
TorstenThieme | 1c1f5fa | 2021-06-18 13:40:30 +0000 | [diff] [blame] | 528 | # target to invoke single ONU OMCI Get scenarios in ATT workflow |
| 529 | voltha-onu-omci-get-single-kind-att: ROBOT_MISC_ARGS += -v workflow:ATT |
| 530 | voltha-onu-omci-get-single-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 531 | voltha-onu-omci-get-single-kind-att: voltha-onu-omci-get-tests |
| 532 | |
| 533 | # target to invoke single ONU OMCI Get scenarios in DT workflow |
| 534 | voltha-onu-omci-get-single-kind-dt: ROBOT_MISC_ARGS += -v workflow:DT |
| 535 | voltha-onu-omci-get-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 536 | voltha-onu-omci-get-single-kind-dt: voltha-onu-omci-get-tests |
| 537 | |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 538 | # target to invoke single ONU OMCI Get scenarios in TT workflow |
TorstenThieme | 1c1f5fa | 2021-06-18 13:40:30 +0000 | [diff] [blame] | 539 | voltha-onu-omci-get-single-kind-tt: ROBOT_MISC_ARGS += -v workflow:TT |
| 540 | voltha-onu-omci-get-single-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 541 | voltha-onu-omci-get-single-kind-tt: voltha-onu-omci-get-tests |
| 542 | |
| 543 | # target to invoke multiple OLTs OMCI Get scenarios in ATT workflow |
| 544 | voltha-onu-omci-get-multiolt-kind-att: ROBOT_MISC_ARGS += -v workflow:ATT |
| 545 | voltha-onu-omci-get-multiolt-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 546 | voltha-onu-omci-get-multiolt-kind-att: voltha-onu-omci-get-tests |
| 547 | |
| 548 | # target to invoke multiple OLTs OMCI Get scenarios in DT workflow |
| 549 | voltha-onu-omci-get-multiolt-kind-dt: ROBOT_MISC_ARGS += -v workflow:DT |
| 550 | voltha-onu-omci-get-multiolt-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_MULTIPLE_OLT_FILE) |
| 551 | voltha-onu-omci-get-multiolt-kind-dt: voltha-onu-omci-get-tests |
| 552 | |
| 553 | # target to invoke multiple OLTs OMCI Get scenarios in TT workflow |
| 554 | voltha-onu-omci-get-multiolt-kind-tt: ROBOT_MISC_ARGS += -v workflow:TT |
| 555 | voltha-onu-omci-get-multiolt-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_MULTIPLE_OLT_FILE) |
| 556 | voltha-onu-omci-get-multiolt-kind-tt: voltha-onu-omci-get-tests |
| 557 | |
| 558 | voltha-onu-omci-get-tests: ROBOT_MISC_ARGS += -i functionalOnuGo -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT) |
| 559 | voltha-onu-omci-get-tests: ROBOT_FILE := Voltha_ONUOmciGetTest.robot |
| 560 | voltha-onu-omci-get-tests: openonu-go-adapter-tests |
| 561 | |
TorstenThieme | a7315f1 | 2021-07-23 11:56:34 +0000 | [diff] [blame] | 562 | # target to invoke single ONU Flows Check in ATT workflow |
| 563 | voltha-onu-flows-check-single-kind-att: ROBOT_MISC_ARGS += -v workflow:ATT |
| 564 | voltha-onu-flows-check-single-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 565 | voltha-onu-flows-check-single-kind-att: voltha-onu-flows-check-tests |
| 566 | |
| 567 | # target to invoke single ONU Flows Check scenarios in DT workflow |
| 568 | voltha-onu-flows-check-single-kind-dt: ROBOT_MISC_ARGS += -v workflow:DT -v techprofile:1T8GEM |
| 569 | voltha-onu-flows-check-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 570 | voltha-onu-flows-check-single-kind-dt: voltha-onu-flows-check-tests |
| 571 | |
| 572 | # target to invoke single ONU Flows Check scenarios in TT workflow |
| 573 | voltha-onu-flows-check-single-kind-tt: ROBOT_MISC_ARGS += -v workflow:TT -v techprofile:1T4GEM |
| 574 | voltha-onu-flows-check-single-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 575 | voltha-onu-flows-check-single-kind-tt: voltha-onu-flows-check-tests |
| 576 | |
| 577 | # target to invoke multiple OLTs Flows Check scenarios in ATT workflow |
| 578 | voltha-onu-flows-check-multiolt-kind-att: ROBOT_MISC_ARGS += -v workflow:ATT |
| 579 | voltha-onu-flows-check-multiolt-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 580 | voltha-onu-flows-check-multiolt-kind-att: voltha-onu-flows-check-tests |
| 581 | |
| 582 | # target to invoke multiple OLTs Flows Check scenarios in DT workflow |
| 583 | voltha-onu-flows-check-multiolt-kind-dt: ROBOT_MISC_ARGS += -v workflow:DT -v techprofile:1T8GEM |
| 584 | voltha-onu-flows-check-multiolt-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_MULTIPLE_OLT_FILE) |
| 585 | voltha-onu-flows-check-multiolt-kind-dt: voltha-onu-flows-check-tests |
| 586 | |
| 587 | # target to invoke multiple OLTs Flows Check scenarios in TT workflow |
| 588 | voltha-onu-flows-check-multiolt-kind-tt: ROBOT_MISC_ARGS += -v workflow:TT -v techprofile:1T4GEM |
| 589 | voltha-onu-flows-check-multiolt-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_MULTIPLE_OLT_FILE) |
| 590 | voltha-onu-flows-check-multiolt-kind-tt: voltha-onu-flows-check-tests |
| 591 | |
| 592 | voltha-onu-flows-check-tests: ROBOT_MISC_ARGS += -i functionalOnuGo -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT) |
| 593 | voltha-onu-flows-check-tests: ROBOT_FILE := Voltha_ONUFlowChecks.robot |
| 594 | voltha-onu-flows-check-tests: openonu-go-adapter-tests |
| 595 | |
Hardik Windlass | dd1a9a1 | 2021-02-23 15:34:50 +0000 | [diff] [blame] | 596 | # ONOS Apps to test for Software Upgrade need to be passed in the 'onos_apps_under_test' variable in format: |
Hardik Windlass | dc2610f | 2021-03-09 07:33:51 +0000 | [diff] [blame] | 597 | # <app-name>,<version>,<oar-url>*<app-name>,<version>,<oar-url>* |
Hardik Windlass | dd1a9a1 | 2021-02-23 15:34:50 +0000 | [diff] [blame] | 598 | onos-app-upgrade-test: ROBOT_MISC_ARGS += -e notready -i functional |
| 599 | onos-app-upgrade-test: ROBOT_FILE := ONOS_AppsUpgrade.robot |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 600 | onos-app-upgrade-test: ROBOT_CONFIG_FILE := $(ROBOT_SW_UPGRADE_FILE) |
Hardik Windlass | dd1a9a1 | 2021-02-23 15:34:50 +0000 | [diff] [blame] | 601 | onos-app-upgrade-test: software-upgrade-test |
| 602 | |
| 603 | # Voltha Components to test for Software Upgrade need to be passed in the 'voltha_comps_under_test' variable in format: |
Hardik Windlass | dc2610f | 2021-03-09 07:33:51 +0000 | [diff] [blame] | 604 | # <comp-label>,<comp-container>,<comp-image>*<comp-label>,<comp-container>,<comp-image>* |
Hardik Windlass | 76f6821 | 2022-01-19 08:16:14 +0000 | [diff] [blame] | 605 | voltha-comp-upgrade-test: ROBOT_MISC_ARGS += -e notready -i VolthaCompMinorVerUpgrade |
Hardik Windlass | dd1a9a1 | 2021-02-23 15:34:50 +0000 | [diff] [blame] | 606 | voltha-comp-upgrade-test: ROBOT_FILE := Voltha_ComponentsUpgrade.robot |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 607 | voltha-comp-upgrade-test: ROBOT_CONFIG_FILE := $(ROBOT_SW_UPGRADE_FILE) |
Hardik Windlass | dd1a9a1 | 2021-02-23 15:34:50 +0000 | [diff] [blame] | 608 | voltha-comp-upgrade-test: software-upgrade-test |
| 609 | |
Hardik Windlass | 76f6821 | 2022-01-19 08:16:14 +0000 | [diff] [blame] | 610 | # Voltha Components to test for Software Upgrade need to be passed in the 'voltha_comps_under_test' variable in format: |
| 611 | # <comp-label>,<comp-container>,<comp-image>*<comp-label>,<comp-container>,<comp-image>* |
| 612 | voltha-comp-rolling-upgrade-test: ROBOT_MISC_ARGS += -e notready -i VolthaCompMinorVerRollingUpgrade |
| 613 | voltha-comp-rolling-upgrade-test: ROBOT_FILE := Voltha_ComponentsUpgrade.robot |
| 614 | voltha-comp-rolling-upgrade-test: ROBOT_CONFIG_FILE := $(ROBOT_SW_UPGRADE_FILE) |
| 615 | voltha-comp-rolling-upgrade-test: software-upgrade-test |
| 616 | |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 617 | # Requirement: Pass ONU image details in following parameters |
Hardik Windlass | ba1bd27 | 2021-06-22 08:29:33 +0000 | [diff] [blame] | 618 | # image_version, image_url, image_vendor, image_activate_on_success, image_commit_on_success, image_crc |
Hardik Windlass | 17bd114 | 2021-03-12 08:15:25 +0000 | [diff] [blame] | 619 | onu-upgrade-test: ROBOT_MISC_ARGS += -e notready -i functional |
| 620 | onu-upgrade-test: ROBOT_FILE := ONU_Upgrade.robot |
| 621 | onu-upgrade-test: ROBOT_CONFIG_FILE := $(ROBOT_SW_UPGRADE_FILE) |
| 622 | onu-upgrade-test: software-upgrade-test |
| 623 | |
TorstenThieme | f3e492c | 2021-11-08 15:25:48 +0000 | [diff] [blame] | 624 | # Requirement: Pass ONU image details in following parameters |
| 625 | # image_version, image_url, image_vendor, image_activate_on_success, image_commit_on_success, image_crc |
| 626 | onu-upgrade-test-multiolt-kind-att: ROBOT_MISC_ARGS += -e notready -i functionalMultipleONUs |
| 627 | onu-upgrade-test-multiolt-kind-att: ROBOT_FILE := ONU_Upgrade.robot |
| 628 | onu-upgrade-test-multiolt-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 629 | onu-upgrade-test-multiolt-kind-att: software-upgrade-test |
| 630 | |
TorstenThieme | 0c8cc6f | 2022-02-16 13:48:21 +0000 | [diff] [blame] | 631 | # Voltha openonu MIB Audit tests att workflow single kind |
| 632 | onu-mib-audit-test-single-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 633 | onu-mib-audit-test-single-kind-att: voltha-onu-mib-audit-tests |
| 634 | |
| 635 | # Voltha openonu MIB Audit tests t workflow single kind |
| 636 | onu-mib-audit-test-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 637 | onu-mib-audit-test-single-kind-dt: voltha-onu-mib-audit-tests |
| 638 | |
| 639 | # Voltha openonu MIB Audit tests tt workflow single kind |
| 640 | onu-mib-audit-test-single-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 641 | onu-mib-audit-test-single-kind-tt: voltha-onu-mib-audit-tests |
| 642 | |
| 643 | # Voltha openonu MIB Audit tests att workflow multiple OLTs |
| 644 | onu-mib-audit-test-multiolt-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 645 | onu-mib-audit-test-multiolt-kind-att: voltha-onu-mib-audit-tests |
| 646 | |
| 647 | # Voltha openonu MIB Audit tests tt workflow multiple OLTs |
| 648 | onu-mib-audit-test-multiolt-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_MULTIPLE_OLT_FILE) |
| 649 | onu-mib-audit-test-multiolt-kind-dt: voltha-onu-mib-audit-tests |
| 650 | |
| 651 | # Voltha openonu MIB Audit tests tt workflow multiple OLTs |
| 652 | onu-mib-audit-test-multiolt-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_MULTIPLE_OLT_FILE) |
| 653 | onu-mib-audit-test-multiolt-kind-tt: voltha-onu-mib-audit-tests |
| 654 | |
| 655 | voltha-onu-mib-audit-tests: ROBOT_MISC_ARGS += -i functional -e notready --noncritical non-critical |
| 656 | voltha-onu-mib-audit-tests: ROBOT_MISC_ARGS += $(ROBOT_DEBUG_LOG_OPT) |
| 657 | voltha-onu-mib-audit-tests: ROBOT_FILE := Voltha_ONUMibAudit.robot |
| 658 | voltha-onu-mib-audit-tests: openonu-go-adapter-tests |
| 659 | |
TorstenThieme | 700ccbf | 2022-02-11 10:24:05 +0000 | [diff] [blame] | 660 | # Voltha Components Memory Leak tests att workflow single kind |
| 661 | memory-leak-test-single-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 662 | memory-leak-test-single-kind-att: voltha-memory-leak-tests |
| 663 | |
| 664 | # Voltha Components Memory Leak tests t workflow single kind |
| 665 | memory-leak-test-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 666 | memory-leak-test-single-kind-dt: voltha-memory-leak-tests |
| 667 | |
| 668 | # Voltha Components Memory Leak tests tt workflow single kind |
| 669 | memory-leak-test-single-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 670 | memory-leak-test-single-kind-tt: voltha-memory-leak-tests |
| 671 | |
| 672 | # Voltha Components Memory Leak tests att workflow multiple OLTs |
| 673 | memory-leak-test-multiolt-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 674 | memory-leak-test-multiolt-kind-att: voltha-memory-leak-tests |
| 675 | |
| 676 | # Voltha Components Memory Leak tests tt workflow multiple OLTs |
| 677 | memory-leak-test-multiolt-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_MULTIPLE_OLT_FILE) |
| 678 | memory-leak-test-multiolt-kind-dt: voltha-memory-leak-tests |
| 679 | |
| 680 | # Voltha Components Memory Leak tests tt workflow multiple OLTs |
| 681 | memory-leak-test-multiolt-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_MULTIPLE_OLT_FILE) |
| 682 | memory-leak-test-multiolt-kind-tt: voltha-memory-leak-tests |
| 683 | |
| 684 | voltha-memory-leak-tests: ROBOT_MISC_ARGS += -i functionalMemoryLeak -e notready --noncritical non-critical |
| 685 | voltha-memory-leak-tests: ROBOT_MISC_ARGS += $(ROBOT_DEBUG_LOG_OPT) |
| 686 | voltha-memory-leak-tests: ROBOT_FILE := VOLTHA_Memory_Leak_Tests.robot |
| 687 | voltha-memory-leak-tests: voltha-memory-leak-test |
| 688 | |
TorstenThieme | d9cc06e | 2022-11-09 12:12:46 +0000 | [diff] [blame] | 689 | # Voltha openonu robustness tests att workflow |
| 690 | onu-robustness-test-single-kind-att: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 691 | onu-robustness-test-single-kind-att: ROBOT_MISC_ARGS += -i functional |
| 692 | onu-robustness-test-single-kind-att: voltha-onu-robustness-tests |
| 693 | |
| 694 | # Voltha openonu robustness tests dt workflow |
| 695 | onu-robustness-test-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 696 | onu-robustness-test-single-kind-dt: ROBOT_MISC_ARGS += -i functional |
| 697 | onu-robustness-test-single-kind-dt: voltha-onu-robustness-tests |
| 698 | |
| 699 | # Voltha openonu robustness tests tt workflow |
| 700 | onu-robustness-test-single-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 701 | onu-robustness-test-single-kind-tt: ROBOT_MISC_ARGS += -i functional |
| 702 | onu-robustness-test-single-kind-tt: voltha-onu-robustness-tests |
| 703 | |
| 704 | # Voltha openonu robustness tests multi-uni tt workflow |
| 705 | onu-robustness-test-multi-uni-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_MULTI_UNI_SINGLE_PON_FILE) |
| 706 | onu-robustness-test-multi-uni-kind-tt: ROBOT_MISC_ARGS += -v unitag_sub:True -i functionalMultiUni |
| 707 | onu-robustness-test-multi-uni-kind-tt: voltha-onu-robustness-tests |
| 708 | |
| 709 | voltha-onu-robustness-tests: ROBOT_MISC_ARGS += -e notready --noncritical non-critical |
| 710 | voltha-onu-robustness-tests: ROBOT_MISC_ARGS += $(ROBOT_DEBUG_LOG_OPT) |
| 711 | voltha-onu-robustness-tests: ROBOT_FILE := Voltha_ONUErrorTests.robot |
| 712 | voltha-onu-robustness-tests: openonu-go-adapter-tests |
| 713 | |
Hardik Windlass | dd1a9a1 | 2021-02-23 15:34:50 +0000 | [diff] [blame] | 714 | software-upgrade-test: vst_venv |
| 715 | source ./$</bin/activate ; set -u ;\ |
| 716 | cd tests/software-upgrades ;\ |
| 717 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 718 | |
Matteo Scandolo | ab48f9e | 2021-06-11 17:08:00 +0200 | [diff] [blame] | 719 | voltha-dt-test: ROBOT_MISC_ARGS += -e notready --noncritical non-critical |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 720 | |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 721 | voltha-dt-test: vst_venv |
| 722 | source ./$</bin/activate ; set -u ;\ |
| 723 | cd tests/dt-workflow ;\ |
| 724 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 725 | |
Emrehan UZUN | d6f8589 | 2021-07-01 13:54:26 +0000 | [diff] [blame] | 726 | voltha-tt-test: ROBOT_MISC_ARGS += -e notready --noncritical non-critical |
Hardik Windlass | 4311869 | 2020-07-01 22:16:47 +0530 | [diff] [blame] | 727 | |
| 728 | voltha-tt-test: vst_venv |
| 729 | source ./$</bin/activate ; set -u ;\ |
| 730 | cd tests/tt-workflow ;\ |
| 731 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 732 | |
Andrea Speranza | a8cf80b | 2022-05-26 10:09:59 +0200 | [diff] [blame] | 733 | voltha-tim-test: ROBOT_MISC_ARGS += -e notready --noncritical non-critical |
| 734 | |
| 735 | voltha-tim-test: vst_venv |
| 736 | source ./$</bin/activate ; set -u ;\ |
| 737 | cd tests/tim-workflow ;\ |
| 738 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 739 | |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 740 | voltha-scale-test: vst_venv |
| 741 | source ./$</bin/activate ; set -u ;\ |
| 742 | cd tests/scale ;\ |
| 743 | robot $(ROBOT_MISC_ARGS) Voltha_Scale_Tests.robot |
| 744 | |
TorstenThieme | 89caa14 | 2020-10-05 08:20:31 +0000 | [diff] [blame] | 745 | openonu-go-adapter-tests: vst_venv |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 746 | source ./$</bin/activate ; set -u ;\ |
| 747 | cd tests/openonu-go-adapter ;\ |
| 748 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 749 | |
Andrea Speranza | 8b6f46f | 2022-08-23 14:22:15 +0200 | [diff] [blame] | 750 | voltha-bbf-adapter-test: ROBOT_MISC_ARGS += -e notready --noncritical non-critical |
| 751 | voltha-bbf-adapter-test: vst_venv |
| 752 | source ./$</bin/activate ; set -u ;\ |
| 753 | cd tests/bbf-adapter ;\ |
| 754 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 755 | |
TorstenThieme | 700ccbf | 2022-02-11 10:24:05 +0000 | [diff] [blame] | 756 | voltha-memory-leak-test: vst_venv |
| 757 | source ./$</bin/activate ; set -u ;\ |
| 758 | cd tests/memory-leak ;\ |
| 759 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 760 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 761 | # self-test, lint, and setup targets |
| 762 | |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 763 | # ----------------------------------------------------------------------- |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 764 | # virtualenv for the robot tools |
Andy Bavier | 952b95b | 2020-03-06 09:53:42 -0700 | [diff] [blame] | 765 | # VOL-2724 Invoke pip via python3 to avoid pathname too long on QA jobs |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 766 | # Verify installation: make lint -or- make test |
| 767 | # vol-4874 - python_310_migration.sh |
| 768 | # ----------------------------------------------------------------------- |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 769 | vst_venv: |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 770 | @echo "=============================" |
| 771 | @echo "Installing python virtual env" |
| 772 | @echo "=============================" |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 773 | virtualenv -p python3 $@ ;\ |
| 774 | source ./$@/bin/activate ;\ |
Andy Bavier | e118e05 | 2020-03-06 12:49:24 -0700 | [diff] [blame] | 775 | python -m pip install -r requirements.txt |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 776 | @echo |
| 777 | @echo "========================================" |
| 778 | @echo "Applying python 3.10.x migration patches" |
| 779 | @echo "========================================" |
| 780 | ./patches/python_310_migration.sh 'apply' |
Joey Armstrong | a45431a | 2022-12-01 17:49:54 -0500 | [diff] [blame] | 781 | @echo |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 782 | |
Joey Armstrong | fc2067f | 2022-10-11 23:04:49 -0400 | [diff] [blame] | 783 | ##----------------## |
| 784 | ##---] LINT [---## |
| 785 | ##----------------## |
| 786 | include $(MAKEDIR)/lint.mk |
| 787 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 788 | test: lint |
| 789 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 790 | # tidy target will be more useful once issue with removing leading comments |
| 791 | # is resolved: https://github.com/robotframework/robotframework/issues/3263 |
| 792 | tidy-robot: vst_venv |
| 793 | source ./$</bin/activate ; set -u ;\ |
| 794 | python -m robot.tidy --inplace $(ROBOT_FILES); |
| 795 | |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 796 | # Install the 'kail' tool if needed: https://github.com/boz/kail |
| 797 | KAIL_PATH ?= /usr/local/bin |
| 798 | $(KAIL_PATH)/kail: |
| 799 | bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b /tmp |
| 800 | mv /tmp/kail $(KAIL_PATH) |
| 801 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 802 | ## Variables for gendocs |
| 803 | TEST_SOURCE := $(wildcard tests/*/*.robot) |
| 804 | TEST_BASENAME := $(basename $(TEST_SOURCE)) |
| 805 | TEST_DIRS := $(dir $(TEST_SOURCE)) |
| 806 | |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 807 | LIB_SOURCE := $(wildcard libraries/*.robot) |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 808 | LIB_BASENAME := $(basename $(LIB_SOURCE)) |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 809 | LIB_DIRS := $(sort $(dir $(LIB_SOURCE))) |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 810 | |
| 811 | .PHONY: gendocs lint test |
| 812 | # In future explore use of --docformat REST - integration w/Sphinx? |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 813 | gendocs: vst_venv |
Joey Armstrong | a45431a | 2022-12-01 17:49:54 -0500 | [diff] [blame] | 814 | $(HIDE)echo " ** $(make) $@: ENTER" |
| 815 | source ./$</bin/activate \ |
| 816 | && set -u \ |
| 817 | && echo \ |
| 818 | && echo " ** $(make) $@: robot.libdoc" \ |
| 819 | && mkdir -pv $(addprefix $@/,$(LIB_DIRS)) \ |
| 820 | && for dir in $(LIB_BASENAME); do\ |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 821 | python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\ |
Joey Armstrong | a45431a | 2022-12-01 17:49:54 -0500 | [diff] [blame] | 822 | done \ |
| 823 | && echo \ |
| 824 | && echo " ** $(make) $@: robot.testdoc" \ |
| 825 | && mkdir -vp $(addprefix $@/,$(TEST_DIRS)) \ |
| 826 | && for dir in $(TEST_BASENAME); do\ |
hwchiu | 0601ec7 | 2019-10-08 00:04:43 +0000 | [diff] [blame] | 827 | python -m robot.testdoc $$dir.robot $@/$$dir.html ;\ |
| 828 | done |
Joey Armstrong | a45431a | 2022-12-01 17:49:54 -0500 | [diff] [blame] | 829 | $(HIDE)echo " ** $(make) $@: LEAVE" |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 830 | |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 831 | ## ----------------------------------------------------------------------- |
| 832 | ## ----------------------------------------------------------------------- |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 833 | clean: |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 834 | $(RM) -r gendocs |
| 835 | find . -name output.xml -print # no action performed ? |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 836 | |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 837 | clean-all sterile: clean |
| 838 | $(RM) -r vst_venv |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 839 | |
Joey Armstrong | 83874cc | 2022-11-26 09:40:08 -0500 | [diff] [blame] | 840 | ## ----------------------------------------------------------------------- |
| 841 | ## ----------------------------------------------------------------------- |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 842 | voltctl-docker-image-build: |
| 843 | cd docker && docker build -t opencord/voltctl:local -f Dockerfile.voltctl . |
| 844 | |
| 845 | voltctl-docker-image-install-kind: |
Matteo Scandolo | 10acf56 | 2021-05-03 15:35:16 -0700 | [diff] [blame] | 846 | @if [ "`kind get clusters | grep kind`" = '' ]; then echo "no kind cluster found" && exit 1; fi |
| 847 | kind load docker-image --name `kind get clusters | grep kind` opencord/voltctl:local |
Joey Armstrong | fc2067f | 2022-10-11 23:04:49 -0400 | [diff] [blame] | 848 | |
| 849 | # [EOF] |