unforce lighty use in tox
[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,flexgrid,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,flexgrid,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,flexgrid,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,flexgrid,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,flexgrid,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_topo_portmapping.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,flexgrid}: nosetests --with-xunit transportpce_tests/2.2.1/test_flex_grid.py
51   {py3,rspn221}: nosetests --with-xunit transportpce_tests/2.2.1/test_renderer_service_path_nominal.py
52   {py3,otnrenderer}: nosetests --with-xunit transportpce_tests/2.2.1/test_otn_renderer.py
53   {py3,otnshrenderer}: nosetests --with-xunit transportpce_tests/2.2.1/test_otn_sh_renderer.py
54   {py3,olm221}: nosetests --with-xunit transportpce_tests/2.2.1/test_olm.py
55   {py3,tapi221}: nosetests --with-xunit transportpce_tests/2.2.1/test_tapi.py
56   {py3,otnend2end}: nosetests --with-xunit transportpce_tests/2.2.1/test_otn_end2end.py
57   {py3,end2end}: nosetests --with-xunit transportpce_tests/1.2.1/test_end2end.py
58   {py3,end2end221}: nosetests --with-xunit transportpce_tests/2.2.1/test_end2end.py
59   #{gnpy}: - sudo docker pull atriki/gnpyrest:v1.2
60   {gnpy}: - sudo docker run -d -p 8008:5000 --name gnpy_tpce_rest1 atriki/gnpyrest:v1.2
61   {gnpy}: nosetests --with-xunit transportpce_tests/1.2.1/test_gnpy.py
62   {gnpy}: - sudo docker container rm -f gnpy_tpce_rest1
63
64 [testenv:docs]
65 passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
66 basepython = python3
67 deps = -rdocs/requirements.txt
68 commands =
69     sphinx-build -W -b html -n -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/html
70
71 [testenv:docs-linkcheck]
72 passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
73 basepython = python3
74 deps = -rdocs/requirements.txt
75 commands = sphinx-build -b linkcheck -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/linkcheck
76
77 [testenv:spelling]
78 basepython = python3
79 deps =
80     -rdocs/requirements.txt
81     sphinxcontrib-spelling
82     PyEnchant
83 commands = sphinx-build -b spelling  -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/spelling
84
85 [testenv:autopep8]
86 basepython = python3
87 deps = autopep8
88 commands =
89     autopep8 --max-line-length 120 --in-place --recursive transportpce_tests/
90
91 [testenv:pylint]
92 basepython = python3
93 deps = pylint
94 whitelist_externals = find
95 commands =
96     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  \{\} +
97
98 [testenv:pyang]
99 basepython = python3
100 deps = pyang
101 whitelist_externals = find
102 commands =
103     pyang --version
104     find ../api/ -name target -prune -o -name *.yang -exec pyang --lint --canonical --max-line-length=120 -p../api/src/main/yang/:../ordmodels/common/src/main/yang/:../ordmodels/service/src/main/yang/:../tapimodels/src/main/yang/ \{\} +
105 #find ../api/ ../ordmodels/ ../tapimodels/ -name target -prune -o -name *.yang -exec pyang --lint --canonical --max-line-length=120 -p../api/src/main/yang/:../ordmodels/common/src/main/yang/:../ordmodels/service/src/main/yang/:../tapimodels/src/main/yang/ \{\} +
106
107 [testenv:pyangformat]
108 basepython = python3
109 deps = pyang
110 whitelist_externals = sh
111 commands =
112     pyang --version
113     sh -c 'find ../api/ -name target -prune -o -name *.yang -print | while read -r fname; do pyang -f yang --yang-canonical --yang-remove-unused-imports --max-line-length=120 --keep-comments -p../api/src/main/yang/:../ordmodels/common/src/main/yang/:../ordmodels/service/src/main/yang/:../tapimodels/src/main/yang/ "$fname"  -o /tmp/tmpfile.$$ && mv /tmp/tmpfile.$$ "$fname";done'