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