fix few bugs and unused issues in functional tests
[transportpce.git] / tox.ini
1 [tox]
2 minversion = 1.6
3 envlist = py3
4     docs
5     docs-linkcheck
6 skipsdist = true
7 setupdir = tests/
8
9 [testenv]
10 passenv = USE_LIGHTY http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
11 usedevelop = True
12 basepython = python3
13 deps =
14   -r{toxinidir}/tests/requirements.txt
15   -r{toxinidir}/tests/test-requirements.txt
16 whitelist_externals = sh
17                       sudo
18 changedir={toxinidir}/tests
19 commands =
20 #install maven and JDK11 on the Gate since they are not there by default
21   {py3,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,otnrenderer,otnshrenderer,topology221,otntopology,olm221,tapi221,otnend2end,end2end221,gnpy}: - sh -c "if [ ! `which mvn` ]; then ./installMavenCentOS.sh  ; fi"
22 #install honeynode simulators
23   {py3,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,otnrenderer,otnshrenderer,topology221,otntopology,olm221,tapi221,otnend2end,end2end221,gnpy}: - sh -c "./install_honeynode.sh"
24 #patch OLM constant to speed up tests, unnecessary for PCE
25   {py3,portmapping,topoPortMapping,rspn,topology,olm,end2end,portmapping221,rspn221,otnrenderer,otnshrenderer,topology221,otn-topology,olm221,otnend2end,end2end221,tapi221}: - sh -c "sed -i'_' 's@=.*//#FUNCTESTVAL=@=@g' ../olm/src/main/java/org/opendaylight/transportpce/olm/util/OlmUtils.java"
26 #build controller, source JDK_JAVA_OPTIONS to remove illegal reflective acces warnings introduced by Java11
27   {py3,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,otnrenderer,otnshrenderer,topology221,otntopology,olm221,tapi221,otnend2end,end2end221,gnpy}: - sh -c ". $PWD/reflectwarn.sh && cd .. && mvn clean install -s tests/odl_settings.xml -DskipTests -Dmaven.javadoc.skip=true -Dodlparent.spotbugs.skip -Dodlparent.checkstyle.skip"
28   {py3,portmapping,topoPortMapping,rspn,topology,olm,end2end,portmapping221,rspn221,otnrenderer,otnshrenderer,topology221,otn-topology,olm221,otnend2end,end2end221,tapi221}: - sh -c "mv  ../olm/src/main/java/org/opendaylight/transportpce/olm/util/OlmUtils.java_  ../olm/src/main/java/org/opendaylight/transportpce/olm/util/OlmUtils.java"
29 #patch Karaf exec for the same reason at runtime
30   {py3,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,otnrenderer,otnshrenderer,topology221,otntopology,olm221,tapi221,otnend2end,end2end221,gnpy}: - sh -c "sed -i'_' 's@!/bin/sh@!/bin/sh\'$'\n. $(dirname $0)/../../../../tests/reflectwarn.sh@' ../karaf/target/assembly/bin/karaf"
31   # the following command would be the straight and right way to support both BSD and GNU sed versions
32   # sh -c "sed -i'_' '1 a\'$'\n. \$(dirname \$0)/\.\./\.\./\.\./\.\./tests/reflectwarn.sh\n' ../karaf/target/assembly/bin/karaf"
33   # but tox reinterprets the quotes as
34   # sh -c 'sed -i'"'"'_'"'"' '"'"'1 a\'"'"'$'"'"'\n. \$(dirname \$0)/\.\./\.\./\.\./\.\./tests/reflectwarn.sh\n'"'"' ../karaf/target/assembly/bin/karaf'
35   # ,what results in an unexpected different formating (with a $ on the second line and the dot on the third)
36 #build Lighty if needed
37   {py3,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,otnrenderer,otnshrenderer,topology221,otntopology,olm221,tapi221,otnend2end,end2end221,gnpy}: - sh -c 'if [ "$USE_LIGHTY" = "True" ]; then (cd ../lighty && ./build.sh); fi'
38 #run 1.2.1 functional tests
39   {py3,portmapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_portmapping.py
40   {py3,topoPortMapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_topoPortMapping.py
41   {py3,topology}: nosetests --with-xunit transportpce_tests/1.2.1/test_topology.py
42   {py3,rspn}: nosetests --with-xunit transportpce_tests/1.2.1/test_renderer_service_path_nominal.py
43   {py3,pce}: nosetests --with-xunit transportpce_tests/1.2.1/test_pce.py
44   {py3,olm}: nosetests --with-xunit transportpce_tests/1.2.1/test_olm.py
45   #E2E 1.2.1 moved at the end before 2.2.1 E2E
46 #run 2.2.1 functional tests
47   {py3,portmapping221}: nosetests --with-xunit transportpce_tests/2.2.1/test_portmapping.py
48   {py3,topology221}: nosetests --with-xunit transportpce_tests/2.2.1/test_topology.py
49   {py3,otntopology}: nosetests --with-xunit transportpce_tests/2.2.1/test_otn_topology.py
50   {py3,rspn221}: nosetests --with-xunit transportpce_tests/2.2.1/test_renderer_service_path_nominal.py
51   {py3,otnrenderer}: nosetests --with-xunit transportpce_tests/2.2.1/test_otn_renderer.py
52   {py3,otnshrenderer}: nosetests --with-xunit transportpce_tests/2.2.1/test_otn_sh_renderer.py
53   {py3,olm221}: nosetests --with-xunit transportpce_tests/2.2.1/test_olm.py
54   {py3,tapi221}: nosetests --with-xunit transportpce_tests/2.2.1/test_tapi.py
55   {py3,otnend2end}: nosetests --with-xunit transportpce_tests/2.2.1/test_otn_end2end.py
56   {py3,end2end}: nosetests --with-xunit transportpce_tests/1.2.1/test_end2end.py
57   {py3,end2end221}: nosetests --with-xunit transportpce_tests/2.2.1/test_end2end.py
58   #{gnpy}: - sudo docker pull atriki/gnpyrest:v1.2
59   {gnpy}: - sudo docker run -d -p 8008:5000 --name gnpy_tpce_rest1 atriki/gnpyrest:v1.2
60   {gnpy}: nosetests --with-xunit transportpce_tests/1.2.1/test_gnpy.py
61   {gnpy}: - sudo docker container rm -f gnpy_tpce_rest1
62
63 [testenv:docs]
64 passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
65 basepython = python3
66 deps = -rdocs/requirements.txt
67 commands =
68     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/html
69
70 [testenv:docs-linkcheck]
71 passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
72 basepython = python3
73 deps = -rdocs/requirements.txt
74 commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/linkcheck
75
76 [testenv:autopep8]
77 basepython = python3
78 deps = autopep8
79 commands =
80     autopep8 --max-line-length 120 --in-place --recursive transportpce_tests/
81
82 [testenv:pylint]
83 basepython = python3
84 deps = pylint
85 whitelist_externals = find
86 commands =
87     find transportpce_tests/ -name *.py -exec pylint --max-line-length=120 --disable=missing-docstring --method-rgx="(([a-z_][a-zA-Z0-9_]{2,})|(_[a-z0-9_]*)|(__[a-zA-Z][a-zA-Z0-9_]+__))$" --variable-rgx="[a-zA-Z_][a-zA-Z0-9_]{1,30}$" --reports=y --score=y  --output-format=colorized  \{\} +