blob: 28636b09487a4cecdeef98dfe9ccd0af23fe1f02 [file] [log] [blame]
Kailash92764922019-07-25 08:21:39 -07001# 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 Williamsec53a1b2019-09-16 15:50:52 -070015# use bash for pushd/popd, and to fail quickly. virtualenv's activate
16# has undefined variables, so no -u
17SHELL = bash -e -o pipefail
Andy Bavierba9866b2019-10-11 07:11:53 -070018ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
Kailash92764922019-07-25 08:21:39 -070019
Zack Williamsec53a1b2019-09-16 15:50:52 -070020# Variables
21LINT_ARGS ?= --verbose --configure LineTooLong:120 --configure TooManyTestSteps:15
22VERSION ?= $(shell cat ./VERSION)
Andy Bavierba9866b2019-10-11 07:11:53 -070023ROBOT_VAR_FILE ?= $(ROOT_DIR)/tests/data/bbsim-kind.yaml
Kailash92764922019-07-25 08:21:39 -070024
hwchiu0601ec72019-10-08 00:04:43 +000025.PHONY: gendocs
26
27## Variables for gendocs
28TEST_SOURCE := $(wildcard tests/*/*.robot)
29TEST_BASENAME := $(basename $(TEST_SOURCE))
30TEST_DIRS := $(dir $(TEST_SOURCE))
31
32LIB_SOURCE := $(wildcard libraries/*.robot)
33LIB_BASENAME := $(basename $(LIB_SOURCE))
34LIB_DIRS := $(dir $(LIB_SOURCE))
35
Andy Bavierba9866b2019-10-11 07:11:53 -070036ROBOT_MISC_ARGS ?=
hwchiu0601ec72019-10-08 00:04:43 +000037
Andy Bavierba9866b2019-10-11 07:11:53 -070038sanity-kind: ROBOT_MISC_ARGS += -i sanity
39sanity-kind: bbsim-kind
40
Suchitra Vemuri8a9c3782019-10-23 12:43:01 -070041bbsim-kind: ROBOT_MISC_ARGS += -X
Andy Bavierba9866b2019-10-11 07:11:53 -070042bbsim-kind: voltha-podtest
Zack Williamsec53a1b2019-09-16 15:50:52 -070043
44# virtualenv for the robot tools
45vst_venv:
46 virtualenv $@ ;\
47 source ./$@/bin/activate ;\
48 pip install -r requirements.txt
49
50test: lint
51
52lint: vst_venv
53 source ./vst_venv/bin/activate ;\
54 set -u ;\
55 find . -name *.robot -exec rflint $(LINT_ARGS) {} +
56
57# tidy will be more useful once this issue with removing leading comments is
58# resolved: https://github.com/robotframework/robotframework/issues/3263
59tidy:
60 source ./vst_venv/bin/activate ;\
61 set -u ;\
62 find . -name *.robot -exec python -m robot.tidy --inplace {} \;
63
Andy Bavierba9866b2019-10-11 07:11:53 -070064voltha-podtest: vst_venv
Zack Williamsec53a1b2019-09-16 15:50:52 -070065 source ./vst_venv/bin/activate ;\
66 set -u ;\
Andy Bavierba9866b2019-10-11 07:11:53 -070067 cd tests/functional ;\
68 robot -V $(ROBOT_VAR_FILE) $(ROBOT_MISC_ARGS) Voltha_PODTests.robot
hwchiu0601ec72019-10-08 00:04:43 +000069
Zack Williamsec53a1b2019-09-16 15:50:52 -070070gendocs: vst_venv
71 source ./vst_venv/bin/activate ;\
72 set -u ;\
hwchiu0601ec72019-10-08 00:04:43 +000073 mkdir -p $@ ;\
74 for dir in ${LIB_DIRS}; do mkdir -p $@/$$dir; done;\
75 for dir in ${LIB_BASENAME}; do\
76 python -m robot.libdoc --format HTML $$dir.robot $@/$$dir.html ;\
77 done ;\
78 for dir in ${TEST_DIRS}; do mkdir -p $@/$$dir; done;\
79 for dir in ${TEST_BASENAME}; do\
80 python -m robot.testdoc $$dir.robot $@/$$dir.html ;\
81 done
Zack Williamsec53a1b2019-09-16 15:50:52 -070082
83# explore use of --docformat REST - integration w/Sphinx?
84clean:
85 find . -name output.xml -print
86
87clean-all: clean
88 rm -rf vst_venv gendocs