Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 1 | # Copyright 2017-present Open Networking Foundation |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | # you may not use this file except in compliance with the License. |
| 5 | # You may obtain a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | # See the License for the specific language governing permissions and |
| 13 | # limitations under the License. |
| 14 | |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 15 | # use bash for pushd/popd, and to fail quickly. virtualenv's activate |
| 16 | # has undefined variables, so no -u |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 17 | SHELL := bash -e -o pipefail |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 18 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 19 | ROOT_DIR := $(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 20 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 21 | # Configuration and lists of files for linting/testing |
| 22 | VERSION ?= $(shell cat ./VERSION) |
| 23 | LINT_ARGS ?= --verbose --configure LineTooLong:120 -e LineTooLong \ |
Suraj Gour | 3365127 | 2020-05-04 10:10:16 +0530 | [diff] [blame] | 24 | --configure TooManyTestSteps:50 -e TooManyTestSteps \ |
Scott Baker | 27d04db | 2020-02-06 18:03:21 -0800 | [diff] [blame] | 25 | --configure TooManyTestCases:50 -e TooManyTestCases \ |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 26 | --configure TooFewTestSteps:1 \ |
| 27 | --configure TooFewKeywordSteps:1 \ |
Hardik Windlass | 16cdf96 | 2020-04-29 15:26:50 +0530 | [diff] [blame] | 28 | --configure FileTooLong:1100 -e FileTooLong \ |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 29 | -e TrailingWhitespace |
| 30 | |
| 31 | PYTHON_FILES := $(wildcard libraries/*.py) |
| 32 | ROBOT_FILES := $(shell find . -name *.robot -print) |
| 33 | YAML_FILES := $(shell find ./tests -type f \( -name *.yaml -o -name *.yml \) -print) |
| 34 | JSON_FILES := $(shell find ./tests -name *.json -print) |
| 35 | |
| 36 | # Robot config |
| 37 | ROBOT_SANITY_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 38 | ROBOT_SANITY_DT_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-dt.yaml |
TorstenThieme | bccd3ae | 2020-02-20 12:56:44 +0000 | [diff] [blame] | 39 | ROBOT_SANITY_MULTIPLE_OLT_FILE ?= $(ROOT_DIR)/tests/data/multiple-bbsim-kind.yaml |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 40 | ROBOT_FAIL_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml |
| 41 | ROBOT_SANITY_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-2x2.yaml |
| 42 | ROBOT_SCALE_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-16.yaml |
| 43 | ROBOT_SCALE_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-8x2.yaml |
TorstenThieme | ffb3392 | 2020-06-18 08:41:17 +0000 | [diff] [blame] | 44 | 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] | 45 | ROBOT_DEBUG_LOG_OPT ?= |
| 46 | ROBOT_MISC_ARGS ?= |
Matteo Scandolo | 549df9e | 2020-09-04 11:09:18 -0700 | [diff] [blame] | 47 | ROBOT_SANITY_TT_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-tt.yaml |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 48 | |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 49 | # for backwards compatibility |
| 50 | sanity-kind: sanity-single-kind |
| 51 | |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 52 | # for scale pipeline |
| 53 | voltha-scale: ROBOT_MISC_ARGS += -i activation $(ROBOT_DEBUG_LOG_OPT) |
| 54 | voltha-scale: voltha-scale-test |
| 55 | |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 56 | # target to invoke DT Workflow Sanity |
| 57 | sanity-kind-dt: ROBOT_MISC_ARGS += -i sanityDt $(ROBOT_DEBUG_LOG_OPT) |
| 58 | sanity-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 59 | sanity-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot |
| 60 | sanity-kind-dt: voltha-dt-test |
| 61 | |
Hardik Windlass | d6aa082 | 2020-06-29 20:18:12 +0530 | [diff] [blame] | 62 | 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] | 63 | functional-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 64 | functional-single-kind: bbsim-kind |
| 65 | |
Hardik Windlass | 35706ba | 2020-02-20 08:16:42 +0000 | [diff] [blame] | 66 | # target to invoke DT Workflow Functional scenarios |
Hardik Windlass | d6aa082 | 2020-06-29 20:18:12 +0530 | [diff] [blame] | 67 | 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] | 68 | functional-single-kind-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 69 | functional-single-kind-dt: ROBOT_FILE := Voltha_DT_PODTests.robot |
| 70 | functional-single-kind-dt: voltha-dt-test |
| 71 | |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 72 | # target to invoke TT Workflow Sanity |
Hardik Windlass | 4311869 | 2020-07-01 22:16:47 +0530 | [diff] [blame] | 73 | sanity-kind-tt: ROBOT_MISC_ARGS += -i sanityTT $(ROBOT_DEBUG_LOG_OPT) |
| 74 | sanity-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 75 | sanity-kind-tt: ROBOT_FILE := Voltha_TT_PODTests.robot |
| 76 | sanity-kind-tt: voltha-tt-test |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 77 | |
| 78 | # target to invoke TT Workflow Functional scenarios |
Hardik Windlass | 4311869 | 2020-07-01 22:16:47 +0530 | [diff] [blame] | 79 | functional-single-kind-tt: ROBOT_MISC_ARGS += -i sanityTTORfunctional -e PowerSwitch $(ROBOT_DEBUG_LOG_OPT) |
Suchitra Vemuri | 2f1e07d | 2020-06-26 19:18:01 -0700 | [diff] [blame] | 80 | functional-single-kind-tt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_TT_SINGLE_PON_FILE) |
| 81 | functional-single-kind-tt: ROBOT_FILE := Voltha_TT_PODTests.robot |
| 82 | functional-single-kind-tt: voltha-tt-test |
| 83 | |
TorstenThieme | bccd3ae | 2020-02-20 12:56:44 +0000 | [diff] [blame] | 84 | # target to invoke multiple OLTs Functional scenarios |
| 85 | functional-multi-olt: ROBOT_MISC_ARGS += -i sanityMultiOLT $(ROBOT_DEBUG_LOG_OPT) |
| 86 | functional-multi-olt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULTIPLE_OLT_FILE) |
| 87 | functional-multi-olt: ROBOT_FILE := Voltha_multipleOLTTests.robot |
| 88 | functional-multi-olt: voltha-test |
| 89 | |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 90 | # target to invoke openonu go adapter |
Holger Hildebrandt | ae8c33f | 2020-08-31 08:55:42 +0000 | [diff] [blame] | 91 | openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s |
TorstenThieme | 95b02a5 | 2020-09-08 08:21:33 +0000 | [diff] [blame] | 92 | openonu-go-adapter-test: ROBOT_MISC_ARGS += -v logging:True -i onutest $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 93 | openonu-go-adapter-test: ROBOT_MISC_ARGS += -X |
| 94 | openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 95 | openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot |
| 96 | openonu-go-adapter-test: openonu-go-adapter-statetest |
| 97 | |
TorstenThieme | 280c380 | 2020-08-07 07:07:42 +0000 | [diff] [blame] | 98 | # target to invoke test with openonu go adapter applying 1T4GEM tech-profile at single ONU |
Holger Hildebrandt | ae8c33f | 2020-08-31 08:55:42 +0000 | [diff] [blame] | 99 | 1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s |
TorstenThieme | 95b02a5 | 2020-09-08 08:21:33 +0000 | [diff] [blame] | 100 | 1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM -v logging:True |
| 101 | 1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i onutest $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | 280c380 | 2020-08-07 07:07:42 +0000 | [diff] [blame] | 102 | 1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X |
| 103 | 1t4gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 104 | 1t4gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot |
| 105 | 1t4gem-openonu-go-adapter-test: openonu-go-adapter-statetest |
| 106 | |
| 107 | # target to invoke test with openonu go adapter applying 1T8GEM tech-profile at single ONU |
Holger Hildebrandt | ae8c33f | 2020-08-31 08:55:42 +0000 | [diff] [blame] | 108 | 1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s |
TorstenThieme | 95b02a5 | 2020-09-08 08:21:33 +0000 | [diff] [blame] | 109 | 1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM -v logging:True |
| 110 | 1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i onutest $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | 280c380 | 2020-08-07 07:07:42 +0000 | [diff] [blame] | 111 | 1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X |
| 112 | 1t8gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 113 | 1t8gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot |
| 114 | 1t8gem-openonu-go-adapter-test: openonu-go-adapter-statetest |
| 115 | |
TorstenThieme | ffb3392 | 2020-06-18 08:41:17 +0000 | [diff] [blame] | 116 | # target to invoke multiple openonu go adapter |
Holger Hildebrandt | ae8c33f | 2020-08-31 08:55:42 +0000 | [diff] [blame] | 117 | multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s |
TorstenThieme | 95b02a5 | 2020-09-08 08:21:33 +0000 | [diff] [blame] | 118 | multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v logging:True -i onutest $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | ffb3392 | 2020-06-18 08:41:17 +0000 | [diff] [blame] | 119 | multi-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X |
| 120 | multi-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE) |
| 121 | multi-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot |
| 122 | multi-openonu-go-adapter-test: openonu-go-adapter-statetest |
| 123 | |
TorstenThieme | 280c380 | 2020-08-07 07:07:42 +0000 | [diff] [blame] | 124 | # target to invoke test with openonu go adapter applying 1T4GEM tech-profile at multiple ONU |
Holger Hildebrandt | ae8c33f | 2020-08-31 08:55:42 +0000 | [diff] [blame] | 125 | multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s |
TorstenThieme | 95b02a5 | 2020-09-08 08:21:33 +0000 | [diff] [blame] | 126 | multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T4GEM -v logging:True |
| 127 | multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i onutest $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | 280c380 | 2020-08-07 07:07:42 +0000 | [diff] [blame] | 128 | multi-1t4gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X |
| 129 | multi-1t4gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE) |
| 130 | multi-1t4gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot |
| 131 | multi-1t4gem-openonu-go-adapter-test: openonu-go-adapter-statetest |
| 132 | |
| 133 | # target to invoke test with openonu go adapter applying 1T8GEM tech-profile at multiple ONU |
Holger Hildebrandt | ae8c33f | 2020-08-31 08:55:42 +0000 | [diff] [blame] | 134 | multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v state2test:6 -v testmode:SingleStateTime -v timeout:180s |
TorstenThieme | 95b02a5 | 2020-09-08 08:21:33 +0000 | [diff] [blame] | 135 | multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -v techprofile:1T8GEM -v logging:True |
| 136 | multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -i onutest $(ROBOT_DEBUG_LOG_OPT) |
TorstenThieme | 280c380 | 2020-08-07 07:07:42 +0000 | [diff] [blame] | 137 | multi-1t8gem-openonu-go-adapter-test: ROBOT_MISC_ARGS += -X |
| 138 | multi-1t8gem-openonu-go-adapter-test: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_ONU_FILE) |
| 139 | multi-1t8gem-openonu-go-adapter-test: ROBOT_FILE := Voltha_ONUStateTests.robot |
| 140 | multi-1t8gem-openonu-go-adapter-test: openonu-go-adapter-statetest |
| 141 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 142 | sanity-single-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 143 | sanity-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 144 | sanity-single-kind: bbsim-kind |
| 145 | |
David Bainbridge | 32c4563 | 2020-04-13 08:47:09 -0700 | [diff] [blame] | 146 | 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] | 147 | rwcore-restart-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE) |
ubuntu | 6b6e7d4 | 2020-03-02 12:35:42 -0800 | [diff] [blame] | 148 | rwcore-restart-single-kind: ROBOT_FILE := Voltha_FailureScenarios.robot |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 149 | rwcore-restart-single-kind: voltha-test |
| 150 | |
David Bainbridge | 3d6d5d3 | 2019-12-17 19:05:35 +0000 | [diff] [blame] | 151 | single-kind: ROBOT_MISC_ARGS += -X -i $(TEST_TAGS) $(ROBOT_DEBUG_LOG_OPT) |
| 152 | single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 153 | single-kind: ROBOT_FILE := Voltha_PODTests.robot |
| 154 | single-kind: voltha-test |
| 155 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 156 | sanity-multi-kind: ROBOT_MISC_ARGS += -i sanity $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 157 | sanity-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE) |
| 158 | sanity-multi-kind: bbsim-kind |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 159 | |
Andy Bavier | 8da0e13 | 2020-04-13 10:25:16 -0700 | [diff] [blame] | 160 | functional-multi-kind: ROBOT_MISC_ARGS += -i sanityORfunctional $(ROBOT_DEBUG_LOG_OPT) |
| 161 | functional-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE) |
| 162 | functional-multi-kind: bbsim-kind |
| 163 | |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 164 | bbsim-kind: ROBOT_MISC_ARGS += -X |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 165 | bbsim-kind: ROBOT_FILE := Voltha_PODTests.robot |
| 166 | bbsim-kind: voltha-test |
| 167 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 168 | scale-single-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 169 | scale-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_SINGLE_PON_FILE) |
| 170 | scale-single-kind: bbsim-scale-kind |
| 171 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 172 | scale-multi-kind: ROBOT_MISC_ARGS += -i active $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 173 | scale-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_PON_FILE) |
| 174 | scale-multi-kind: bbsim-scale-kind |
| 175 | |
David Bainbridge | f81cd64 | 2019-11-20 00:14:47 +0000 | [diff] [blame] | 176 | bbsim-scale-kind: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame] | 177 | bbsim-scale-kind: ROBOT_FILE := Voltha_ScaleFunctionalTests.robot |
| 178 | bbsim-scale-kind: voltha-test |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 179 | |
hwchiu | ab524f0 | 2020-02-03 23:24:19 +0000 | [diff] [blame] | 180 | #Only supported in full mode |
| 181 | system-scale-test: ROBOT_FILE := K8S_SystemTest.robot |
hwchiu | 56eb85c | 2020-02-05 01:05:53 +0000 | [diff] [blame] | 182 | system-scale-test: ROBOT_MISC_ARGS += -X -i functional $(ROBOT_DEBUG_LOG_OPT) |
hwchiu | ab524f0 | 2020-02-03 23:24:19 +0000 | [diff] [blame] | 183 | system-scale-test: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE) |
| 184 | system-scale-test: voltha-test |
hwchiu | 1128912 | 2019-11-27 16:20:15 +0000 | [diff] [blame] | 185 | |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 186 | failure-test: ROBOT_MISC_ARGS += -X -i FailureTest $(ROBOT_DEBUG_LOG_OPT) |
hwchiu | 3d9a098 | 2020-02-06 00:19:19 +0000 | [diff] [blame] | 187 | failure-test: ROBOT_FILE := K8S_SystemTest.robot |
hwchiu | 8569593 | 2019-12-18 08:05:25 +0000 | [diff] [blame] | 188 | failure-test: ROBOT_CONFIG_FILE := $(ROBOT_FAIL_SINGLE_PON_FILE) |
| 189 | failure-test: voltha-test |
| 190 | |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 191 | bbsim-alarms-kind: ROBOT_MISC_ARGS += -X -i active |
| 192 | bbsim-alarms-kind: ROBOT_FILE := Voltha_AlarmTests.robot |
Andy Bavier | e118e05 | 2020-03-06 12:49:24 -0700 | [diff] [blame] | 193 | bbsim-alarms-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 194 | bbsim-alarms-kind: voltctl-docker-image-build voltctl-docker-image-install-kind voltha-test |
| 195 | |
Andy Bavier | c1904dc | 2020-03-20 11:39:15 -0700 | [diff] [blame] | 196 | bbsim-errorscenarios: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
| 197 | bbsim-errorscenarios: ROBOT_FILE := Voltha_ErrorScenarios.robot |
| 198 | bbsim-errorscenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 199 | bbsim-errorscenarios: voltha-test |
| 200 | |
Hardik Windlass | cbcca31 | 2020-04-20 21:46:11 +0530 | [diff] [blame] | 201 | bbsim-errorscenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) |
| 202 | bbsim-errorscenarios-dt: ROBOT_FILE := Voltha_ErrorScenarios.robot |
| 203 | bbsim-errorscenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 204 | bbsim-errorscenarios-dt: voltha-test |
| 205 | |
Hardik Windlass | e05e471 | 2020-04-29 10:40:42 +0530 | [diff] [blame] | 206 | 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] | 207 | bbsim-failurescenarios: ROBOT_FILE := Voltha_FailureScenarios.robot |
| 208 | bbsim-failurescenarios: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 209 | bbsim-failurescenarios: voltha-test |
| 210 | |
Hardik Windlass | 9df139e | 2020-04-24 14:54:54 +0530 | [diff] [blame] | 211 | bbsim-failurescenarios-dt: ROBOT_MISC_ARGS += -X $(ROBOT_DEBUG_LOG_OPT) -e PowerSwitchOnuRebootDt -e PhysicalOltRebootDt |
| 212 | bbsim-failurescenarios-dt: ROBOT_FILE := Voltha_DT_FailureScenarios.robot |
| 213 | bbsim-failurescenarios-dt: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_DT_SINGLE_PON_FILE) |
| 214 | bbsim-failurescenarios-dt: voltha-dt-test |
| 215 | |
Andy Bavier | 70eab04 | 2019-12-14 14:16:26 -0700 | [diff] [blame] | 216 | voltha-test: ROBOT_MISC_ARGS += -e notready |
hwchiu | 1128912 | 2019-11-27 16:20:15 +0000 | [diff] [blame] | 217 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 218 | voltha-test: vst_venv |
| 219 | source ./$</bin/activate ; set -u ;\ |
| 220 | cd tests/functional ;\ |
| 221 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 222 | |
Hardik Windlass | 79b40ff | 2020-06-11 22:55:47 +0530 | [diff] [blame] | 223 | voltha-dt-test: ROBOT_MISC_ARGS += -e notready |
| 224 | |
Hardik Windlass | a3d04b9 | 2020-02-17 15:06:05 +0000 | [diff] [blame] | 225 | voltha-dt-test: vst_venv |
| 226 | source ./$</bin/activate ; set -u ;\ |
| 227 | cd tests/dt-workflow ;\ |
| 228 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 229 | |
Hardik Windlass | 4311869 | 2020-07-01 22:16:47 +0530 | [diff] [blame] | 230 | voltha-tt-test: ROBOT_MISC_ARGS += -e notready |
| 231 | |
| 232 | voltha-tt-test: vst_venv |
| 233 | source ./$</bin/activate ; set -u ;\ |
| 234 | cd tests/tt-workflow ;\ |
| 235 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 236 | |
Matteo Scandolo | 142e627 | 2020-04-29 17:36:59 -0700 | [diff] [blame] | 237 | voltha-scale-test: vst_venv |
| 238 | source ./$</bin/activate ; set -u ;\ |
| 239 | cd tests/scale ;\ |
| 240 | robot $(ROBOT_MISC_ARGS) Voltha_Scale_Tests.robot |
| 241 | |
TorstenThieme | 1619db2 | 2020-04-03 12:01:15 +0000 | [diff] [blame] | 242 | openonu-go-adapter-statetest: vst_venv |
| 243 | source ./$</bin/activate ; set -u ;\ |
| 244 | cd tests/openonu-go-adapter ;\ |
| 245 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
| 246 | |
| 247 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 248 | # self-test, lint, and setup targets |
| 249 | |
| 250 | # virtualenv for the robot tools |
Andy Bavier | 952b95b | 2020-03-06 09:53:42 -0700 | [diff] [blame] | 251 | # VOL-2724 Invoke pip via python3 to avoid pathname too long on QA jobs |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 252 | vst_venv: |
| 253 | virtualenv -p python3 $@ ;\ |
| 254 | source ./$@/bin/activate ;\ |
Andy Bavier | e118e05 | 2020-03-06 12:49:24 -0700 | [diff] [blame] | 255 | python -m pip install -r requirements.txt |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 256 | |
| 257 | test: lint |
| 258 | |
| 259 | lint: lint-robot lint-python lint-yaml lint-json |
| 260 | |
| 261 | lint-robot: vst_venv |
| 262 | source ./$</bin/activate ; set -u ;\ |
| 263 | rflint $(LINT_ARGS) $(ROBOT_FILES) |
| 264 | |
| 265 | # check deps for format and python3 cleanliness |
| 266 | lint-python: vst_venv |
| 267 | source ./$</bin/activate ; set -u ;\ |
| 268 | pylint --py3k $(PYTHON_FILES) ;\ |
| 269 | flake8 --max-line-length=99 --count $(PYTHON_FILES) |
| 270 | |
| 271 | lint-yaml: vst_venv |
| 272 | source ./$</bin/activate ; set -u ;\ |
| 273 | yamllint -s $(YAML_FILES) |
| 274 | |
| 275 | lint-json: vst_venv |
| 276 | source ./$</bin/activate ; set -u ;\ |
| 277 | for jsonfile in $(JSON_FILES); do \ |
| 278 | echo "Validating json file: $$jsonfile" ;\ |
| 279 | python -m json.tool $$jsonfile > /dev/null ;\ |
| 280 | done |
| 281 | |
| 282 | # tidy target will be more useful once issue with removing leading comments |
| 283 | # is resolved: https://github.com/robotframework/robotframework/issues/3263 |
| 284 | tidy-robot: vst_venv |
| 285 | source ./$</bin/activate ; set -u ;\ |
| 286 | python -m robot.tidy --inplace $(ROBOT_FILES); |
| 287 | |
Andy Bavier | 4a8450e | 2020-02-04 08:58:37 -0700 | [diff] [blame] | 288 | # Install the 'kail' tool if needed: https://github.com/boz/kail |
| 289 | KAIL_PATH ?= /usr/local/bin |
| 290 | $(KAIL_PATH)/kail: |
| 291 | bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b /tmp |
| 292 | mv /tmp/kail $(KAIL_PATH) |
| 293 | |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 294 | ## Variables for gendocs |
| 295 | TEST_SOURCE := $(wildcard tests/*/*.robot) |
| 296 | TEST_BASENAME := $(basename $(TEST_SOURCE)) |
| 297 | TEST_DIRS := $(dir $(TEST_SOURCE)) |
| 298 | |
| 299 | LIB_SOURCE := $(wildcard libraries/*.robot) |
| 300 | LIB_BASENAME := $(basename $(LIB_SOURCE)) |
| 301 | LIB_DIRS := $(dir $(LIB_SOURCE)) |
| 302 | |
| 303 | .PHONY: gendocs lint test |
| 304 | # In future explore use of --docformat REST - integration w/Sphinx? |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 305 | gendocs: vst_venv |
Zack Williams | a8fe75a | 2020-01-10 14:25:27 -0700 | [diff] [blame] | 306 | source ./$</bin/activate ; set -u ;\ |
hwchiu | 0601ec7 | 2019-10-08 00:04:43 +0000 | [diff] [blame] | 307 | mkdir -p $@ ;\ |
| 308 | for dir in ${LIB_DIRS}; do mkdir -p $@/$$dir; done;\ |
| 309 | for dir in ${LIB_BASENAME}; do\ |
| 310 | python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\ |
| 311 | done ;\ |
| 312 | for dir in ${TEST_DIRS}; do mkdir -p $@/$$dir; done;\ |
| 313 | for dir in ${TEST_BASENAME}; do\ |
| 314 | python -m robot.testdoc $$dir.robot $@/$$dir.html ;\ |
| 315 | done |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 316 | |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 317 | clean: |
| 318 | find . -name output.xml -print |
| 319 | |
| 320 | clean-all: clean |
| 321 | rm -rf vst_venv gendocs |
Scott Baker | 60e570d | 2020-02-02 22:10:13 -0800 | [diff] [blame] | 322 | |
| 323 | voltctl-docker-image-build: |
| 324 | cd docker && docker build -t opencord/voltctl:local -f Dockerfile.voltctl . |
| 325 | |
| 326 | voltctl-docker-image-install-kind: |
| 327 | @if [ "`kind get clusters | grep voltha`" = '' ]; then echo "no voltha cluster found" && exit 1; fi |
| 328 | kind load docker-image --name `kind get clusters | grep voltha` opencord/voltctl:local |