blob: b99d7ceac682c522ff9495d3a84380d92ba08d65 [file] [log] [blame]
# Copyright 2017-present Open Networking Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# use bash for pushd/popd, and to fail quickly. virtualenv's activate
# has undefined variables, so no -u
SHELL = bash -e -o pipefail
# Variables
LINT_ARGS ?= --verbose --configure LineTooLong:120 --configure TooManyTestSteps:15
VERSION ?= $(shell cat ./VERSION)
sanity-kind: ROBOT_PORT_ARGS ?= -v ONOS_REST_PORT:8181 -v ONOS_SSH_PORT:8101
sanity-kind: ROBOT_TEST_ARGS ?= --exclude notready --critical sanity
sanity-kind: ROBOT_MISC_ARGS ?= -v num_onus:1
sanity-kind: sanity
# virtualenv for the robot tools
vst_venv:
virtualenv $@ ;\
source ./$@/bin/activate ;\
pip install -r requirements.txt
test: lint
lint: vst_venv
source ./vst_venv/bin/activate ;\
set -u ;\
find . -name *.robot -exec rflint $(LINT_ARGS) {} +
# tidy will be more useful once this issue with removing leading comments is
# resolved: https://github.com/robotframework/robotframework/issues/3263
tidy:
source ./vst_venv/bin/activate ;\
set -u ;\
find . -name *.robot -exec python -m robot.tidy --inplace {} \;
sanity: vst_venv
source ./vst_venv/bin/activate ;\
set -u ;\
cd tests/sanity ;\
robot $(ROBOT_PORT_ARGS) $(ROBOT_TEST_ARGS) $(ROBOT_MISC_ARGS) sanity.robot
gendocs: vst_venv
source ./vst_venv/bin/activate ;\
set -u ;\
mkdir -p gendocs ;\
python -m robot.libdoc --format HTML libraries/onos.robot gendocs/lib_onos_robot.html ;\
python -m robot.testdoc tests/Voltha_PODTests.robot gendocs/voltha_podtests.html
# explore use of --docformat REST - integration w/Sphinx?
clean:
find . -name output.xml -print
clean-all: clean
rm -rf vst_venv gendocs