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 |
| 17 | SHELL = bash -e -o pipefail |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 18 | ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST)))) |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 19 | |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 20 | # Variables |
Gilles Depatie | 6c727ff | 2019-10-21 16:23:13 -0400 | [diff] [blame] | 21 | LINT_ARGS ?= --verbose --configure LineTooLong:120 --configure TooManyTestSteps:15 \ |
| 22 | --configure TooFewTestSteps:1 --configure TooFewKeywordSteps:1 |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 23 | VERSION ?= $(shell cat ./VERSION) |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame^] | 24 | ROBOT_SANITY_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml |
| 25 | ROBOT_SANITY_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-2x2.yaml |
| 26 | ROBOT_SCALE_SINGLE_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-16.yaml |
| 27 | ROBOT_SCALE_MULT_PON_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind-8x2.yaml |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 28 | |
hwchiu | 0601ec7 | 2019-10-08 00:04:43 +0000 | [diff] [blame] | 29 | .PHONY: gendocs |
| 30 | |
| 31 | ## Variables for gendocs |
| 32 | TEST_SOURCE := $(wildcard tests/*/*.robot) |
| 33 | TEST_BASENAME := $(basename $(TEST_SOURCE)) |
| 34 | TEST_DIRS := $(dir $(TEST_SOURCE)) |
| 35 | |
| 36 | LIB_SOURCE := $(wildcard libraries/*.robot) |
| 37 | LIB_BASENAME := $(basename $(LIB_SOURCE)) |
| 38 | LIB_DIRS := $(dir $(LIB_SOURCE)) |
| 39 | |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 40 | ROBOT_MISC_ARGS ?= |
hwchiu | 0601ec7 | 2019-10-08 00:04:43 +0000 | [diff] [blame] | 41 | |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame^] | 42 | # for backwards compatibility |
| 43 | sanity-kind: sanity-single-kind |
| 44 | |
| 45 | sanity-single-kind: ROBOT_MISC_ARGS += -i sanity |
| 46 | sanity-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_SINGLE_PON_FILE) |
| 47 | sanity-single-kind: bbsim-kind |
| 48 | |
| 49 | sanity-multi-kind: ROBOT_MISC_ARGS += -i sanity |
| 50 | sanity-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SANITY_MULT_PON_FILE) |
| 51 | sanity-multi-kind: bbsim-kind |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 52 | |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 53 | bbsim-kind: ROBOT_MISC_ARGS += -X |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame^] | 54 | bbsim-kind: ROBOT_FILE := Voltha_PODTests.robot |
| 55 | bbsim-kind: voltha-test |
| 56 | |
| 57 | scale-single-kind: ROBOT_MISC_ARGS += -i active |
| 58 | scale-single-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_SINGLE_PON_FILE) |
| 59 | scale-single-kind: bbsim-scale-kind |
| 60 | |
| 61 | scale-multi-kind: ROBOT_MISC_ARGS += -i active |
| 62 | scale-multi-kind: ROBOT_CONFIG_FILE := $(ROBOT_SCALE_MULT_PON_FILE) |
| 63 | scale-multi-kind: bbsim-scale-kind |
| 64 | |
| 65 | bbsim-scale-kind: ROBOT_MISC_ARGS += -X |
| 66 | bbsim-scale-kind: ROBOT_FILE := Voltha_ScaleFunctionalTests.robot |
| 67 | bbsim-scale-kind: voltha-test |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 68 | |
| 69 | # virtualenv for the robot tools |
| 70 | vst_venv: |
| 71 | virtualenv $@ ;\ |
| 72 | source ./$@/bin/activate ;\ |
| 73 | pip install -r requirements.txt |
| 74 | |
| 75 | test: lint |
| 76 | |
| 77 | lint: vst_venv |
| 78 | source ./vst_venv/bin/activate ;\ |
| 79 | set -u ;\ |
| 80 | find . -name *.robot -exec rflint $(LINT_ARGS) {} + |
| 81 | |
| 82 | # tidy will be more useful once this issue with removing leading comments is |
| 83 | # resolved: https://github.com/robotframework/robotframework/issues/3263 |
| 84 | tidy: |
| 85 | source ./vst_venv/bin/activate ;\ |
| 86 | set -u ;\ |
| 87 | find . -name *.robot -exec python -m robot.tidy --inplace {} \; |
| 88 | |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame^] | 89 | voltha-test: vst_venv |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 90 | source ./vst_venv/bin/activate ;\ |
| 91 | set -u ;\ |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 92 | cd tests/functional ;\ |
Gilles Depatie | 45fbe04 | 2019-11-11 17:10:06 -0500 | [diff] [blame^] | 93 | robot -V $(ROBOT_CONFIG_FILE) $(ROBOT_MISC_ARGS) $(ROBOT_FILE) |
hwchiu | 0601ec7 | 2019-10-08 00:04:43 +0000 | [diff] [blame] | 94 | |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 95 | gendocs: vst_venv |
| 96 | source ./vst_venv/bin/activate ;\ |
| 97 | set -u ;\ |
hwchiu | 0601ec7 | 2019-10-08 00:04:43 +0000 | [diff] [blame] | 98 | mkdir -p $@ ;\ |
| 99 | for dir in ${LIB_DIRS}; do mkdir -p $@/$$dir; done;\ |
| 100 | for dir in ${LIB_BASENAME}; do\ |
| 101 | python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\ |
| 102 | done ;\ |
| 103 | for dir in ${TEST_DIRS}; do mkdir -p $@/$$dir; done;\ |
| 104 | for dir in ${TEST_BASENAME}; do\ |
| 105 | python -m robot.testdoc $$dir.robot $@/$$dir.html ;\ |
| 106 | done |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 107 | |
| 108 | # explore use of --docformat REST - integration w/Sphinx? |
| 109 | clean: |
| 110 | find . -name output.xml -print |
| 111 | |
| 112 | clean-all: clean |
| 113 | rm -rf vst_venv gendocs |