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