Junit tests for network model
[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
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,topology221,otntopology,olm221,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,topology221,otntopology,olm221,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,topology221,otn-topology,olm221,end2end221}: - 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,topology221,otntopology,olm221,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,topology221,otn-topology,olm221,end2end221}: - 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,topology221,otntopology,olm221,end2end221,gnpy}: - sh -c "sed -i'_' 's@!/bin/sh@!/bin/sh\'$'\n. $(dirname $0)/../../../../tests/reflectwarn.sh@' ../karaf/target/assembly/bin/karaf"
31 #build Lighty if needed
32   {py3,portmapping,topoPortMapping,rspn,topology,pce,olm,end2end,portmapping221,rspn221,otnrenderer,topology221,otntopology,olm221,end2end221,gnpy}: - sh -c 'if [ "$USE_LIGHTY" = "True" ]; then (cd ../lighty && ./build.sh); fi'
33 #run 1.2.1 functional tests
34   {py3,portmapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_portmapping.py
35   {py3,topoPortMapping}: nosetests --with-xunit transportpce_tests/1.2.1/test_topoPortMapping.py
36   {py3,topology}: nosetests --with-xunit transportpce_tests/1.2.1/test_topology.py
37   {py3,rspn}: nosetests --with-xunit transportpce_tests/1.2.1/test_renderer_service_path_nominal.py
38   {py3,pce}: nosetests --with-xunit transportpce_tests/1.2.1/test_pce.py
39   {py3,olm}: nosetests --with-xunit transportpce_tests/1.2.1/test_olm.py
40   {end2end}: nosetests --with-xunit transportpce_tests/1.2.1/test_end2end.py
41 #run 2.2.1 functional tests
42   {py3,portmapping221}: nosetests --with-xunit transportpce_tests/2.2.1/test_portmapping.py
43   {py3,topology221}: nosetests --with-xunit transportpce_tests/2.2.1/test_topology.py
44   {otntopology}: nosetests --with-xunit transportpce_tests/2.2.1/test_otn_topology.py
45   {py3,rspn221}: nosetests --with-xunit transportpce_tests/2.2.1/test_renderer_service_path_nominal.py
46   {py3,otnrenderer}: nosetests --with-xunit transportpce_tests/2.2.1/test_otn_renderer.py
47   {py3,olm221}: nosetests --with-xunit transportpce_tests/2.2.1/test_olm.py
48   {end2end221}: nosetests --with-xunit transportpce_tests/2.2.1/test_end2end.py
49   #{gnpy}: - sudo docker pull atriki/gnpyrest:v1.2
50   {gnpy}: - sudo docker run -d -p 8008:5000 --name gnpy_tpce_rest1 atriki/gnpyrest:v1.2
51   {gnpy}: nosetests --with-xunit transportpce_tests/1.2.1/test_gnpy.py
52   {gnpy}: - sudo docker container rm -f gnpy_tpce_rest1
53
54 [testenv:docs]
55 basepython = python3
56 deps = -rdocs/requirements.txt
57 commands =
58     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/html
59
60 [testenv:docs-linkcheck]
61 basepython = python3
62 deps = -rdocs/requirements.txt
63 commands = sphinx-build -W -b linkcheck -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/linkcheck
64
65 [testenv:autopep8]
66 basepython = python3
67 deps = autopep8
68 commands =
69     autopep8 --max-line-length 120 --in-place --recursive transportpce_tests/
70
71 [testenv:pylint]
72 basepython = python3
73 deps = pylint
74 whitelist_externals = find
75 commands =
76     find transportpce_tests/ -name *.py -exec pylint --max-line-length=120 --disable=missing-docstring  --reports=y --score=y  --output-format=colorized  \{\} +