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