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) |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 24 | ROBOT_VAR_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml |
Kailash | 9276492 | 2019-07-25 08:21:39 -0700 | [diff] [blame] | 25 | |
hwchiu | 0601ec7 | 2019-10-08 00:04:43 +0000 | [diff] [blame] | 26 | .PHONY: gendocs |
| 27 | |
| 28 | ## Variables for gendocs |
| 29 | TEST_SOURCE := $(wildcard tests/*/*.robot) |
| 30 | TEST_BASENAME := $(basename $(TEST_SOURCE)) |
| 31 | TEST_DIRS := $(dir $(TEST_SOURCE)) |
| 32 | |
| 33 | LIB_SOURCE := $(wildcard libraries/*.robot) |
| 34 | LIB_BASENAME := $(basename $(LIB_SOURCE)) |
| 35 | LIB_DIRS := $(dir $(LIB_SOURCE)) |
| 36 | |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 37 | ROBOT_MISC_ARGS ?= |
hwchiu | 0601ec7 | 2019-10-08 00:04:43 +0000 | [diff] [blame] | 38 | |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 39 | sanity-kind: ROBOT_MISC_ARGS += -i sanity |
| 40 | sanity-kind: bbsim-kind |
| 41 | |
Suchitra Vemuri | 8a9c378 | 2019-10-23 12:43:01 -0700 | [diff] [blame] | 42 | bbsim-kind: ROBOT_MISC_ARGS += -X |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 43 | bbsim-kind: voltha-podtest |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 44 | |
| 45 | # virtualenv for the robot tools |
| 46 | vst_venv: |
| 47 | virtualenv $@ ;\ |
| 48 | source ./$@/bin/activate ;\ |
| 49 | pip install -r requirements.txt |
| 50 | |
| 51 | test: lint |
| 52 | |
| 53 | lint: vst_venv |
| 54 | source ./vst_venv/bin/activate ;\ |
| 55 | set -u ;\ |
| 56 | find . -name *.robot -exec rflint $(LINT_ARGS) {} + |
| 57 | |
| 58 | # tidy will be more useful once this issue with removing leading comments is |
| 59 | # resolved: https://github.com/robotframework/robotframework/issues/3263 |
| 60 | tidy: |
| 61 | source ./vst_venv/bin/activate ;\ |
| 62 | set -u ;\ |
| 63 | find . -name *.robot -exec python -m robot.tidy --inplace {} \; |
| 64 | |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 65 | voltha-podtest: vst_venv |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 66 | source ./vst_venv/bin/activate ;\ |
| 67 | set -u ;\ |
Andy Bavier | ba9866b | 2019-10-11 07:11:53 -0700 | [diff] [blame] | 68 | cd tests/functional ;\ |
| 69 | robot -V $(ROBOT_VAR_FILE) $(ROBOT_MISC_ARGS) Voltha_PODTests.robot |
hwchiu | 0601ec7 | 2019-10-08 00:04:43 +0000 | [diff] [blame] | 70 | |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 71 | gendocs: vst_venv |
| 72 | source ./vst_venv/bin/activate ;\ |
| 73 | set -u ;\ |
hwchiu | 0601ec7 | 2019-10-08 00:04:43 +0000 | [diff] [blame] | 74 | mkdir -p $@ ;\ |
| 75 | for dir in ${LIB_DIRS}; do mkdir -p $@/$$dir; done;\ |
| 76 | for dir in ${LIB_BASENAME}; do\ |
| 77 | python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\ |
| 78 | done ;\ |
| 79 | for dir in ${TEST_DIRS}; do mkdir -p $@/$$dir; done;\ |
| 80 | for dir in ${TEST_BASENAME}; do\ |
| 81 | python -m robot.testdoc $$dir.robot $@/$$dir.html ;\ |
| 82 | done |
Zack Williams | ec53a1b | 2019-09-16 15:50:52 -0700 | [diff] [blame] | 83 | |
| 84 | # explore use of --docformat REST - integration w/Sphinx? |
| 85 | clean: |
| 86 | find . -name output.xml -print |
| 87 | |
| 88 | clean-all: clean |
| 89 | rm -rf vst_venv gendocs |