Refactor buildcontroller tox profile
[transportpce.git] / tox.ini
1 [tox]
2 minversion = 3.7.0
3 envlist = buildcontroller,testsPCE,sims121,tests121,sims221,tests221,sims71,tests71
4     docs
5     docs-linkcheck
6     checkbashisms
7     pre-commit
8     gitlint
9 skipsdist = true
10 setupdir = tests/
11
12 [testenv]
13 passenv = USE_LIGHTY http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
14 setenv =
15     USE_LIGHTY=True
16 usedevelop = true
17 basepython = python3
18 deps =
19   -r{toxinidir}/tests/requirements.txt
20   -r{toxinidir}/tests/test-requirements.txt
21   setuptools>=7.0
22 changedir = {toxinidir}/tests
23 parallel_show_output = true
24
25 [testenv:buildcontroller]
26 whitelist_externals = build_controller.sh
27 commands =
28   ./build_controller.sh
29
30 [testenv:sims121]
31 whitelist_externals = install_honeynode.sh
32 depends = buildcontroller
33 # sims profiles does not strictly depends on buildcontroller
34 # but this dependency avoids race condition in the gate
35 commands =
36   ./install_honeynode.sh 1.2.1
37
38 [testenv:sims221]
39 whitelist_externals = install_honeynode.sh
40 depends = buildcontroller
41 commands =
42   ./install_honeynode.sh 2.2.1
43
44 [testenv:sims71]
45 whitelist_externals = install_honeynode.sh
46 depends = buildcontroller
47 commands =
48   ./install_honeynode.sh 7.1
49
50 [testenv:testsPCE]
51 depends = buildcontroller
52 whitelist_externals = launch_tests.sh
53 passenv = LAUNCHER USE_LIGHTY
54 setenv =
55     USE_LIGHTY=True
56 commands =
57   ./launch_tests.sh pce {posargs:}
58
59 [testenv:tests121]
60 depends = buildcontroller,sims121,testsPCE
61 # testsPCE dependency is only here to chain tests in the gate and avoid resources starvation
62 whitelist_externals = launch_tests.sh
63 passenv = LAUNCHER USE_LIGHTY
64 setenv =
65     USE_LIGHTY=True
66     USE_ODL_ALT_WEBSOCKET_PORT=8186
67     USE_ODL_ALT_AKKA_PORT=2551
68     USE_ODL_ALT_AKKA_MGT_PORT=8559
69     USE_ODL_ALT_SHELL_PORT=8102
70     USE_ODL_ALT_RMI_REGISTRY_PORT=1100
71     USE_ODL_ALT_RMI_SERVER_PORT=44445
72     USE_ODL_ALT_RESTCONF_PORT=8182
73     USE_ODL_ALT_KARAF_INSTALL_DIR=karaf121
74 commands =
75   ./launch_tests.sh 1.2.1 {posargs:}
76 # By default, all tests in the folder transportpce_tests/1.2.1/ are run.
77 # Though, a restricted list of tests can be passed as argument to 'tox -e tests121'.
78 # For example, 'tox -e tests121 portmapping' will run only the portmapping test.
79 # and 'tox -e tests121 "portmapping pce"' will run the portmapping and pce tests.
80 # Additionnally, a different launcher command than 'nosetests --with-xunit' can be
81 # used by exporting the variable LAUNCHER. For example 'export LAUNCHER="python3"'
82 # which is more verbose than nose or 'export LAUNCHER="ls -l"' to only list script
83 # files attributes.
84
85 [testenv:tests221]
86 depends = buildcontroller,sims221,tests71
87 # tests71 dependency is only here to chain tests in the gate and avoid ressources starvation
88 whitelist_externals = launch_tests.sh
89 passenv = LAUNCHER USE_LIGHTY
90 setenv =
91     USE_LIGHTY=True
92     USE_ODL_ALT_WEBSOCKET_PORT=8187
93     USE_ODL_ALT_AKKA_PORT=2552
94     USE_ODL_ALT_AKKA_MGT_PORT=8560
95     USE_ODL_ALT_SHELL_PORT=8103
96     USE_ODL_ALT_RMI_REGISTRY_PORT=1101
97     USE_ODL_ALT_RMI_SERVER_PORT=44446
98     USE_ODL_ALT_RESTCONF_PORT=8183
99     USE_ODL_ALT_KARAF_INSTALL_DIR=karaf221
100 commands =
101   ./launch_tests.sh 2.2.1 {posargs:}
102
103 [testenv:tests71]
104 depends = buildcontroller,sims71
105 whitelist_externals = launch_tests.sh
106 passenv = LAUNCHER USE_LIGHTY
107 setenv =
108     USE_LIGHTY=True
109     USE_ODL_ALT_WEBSOCKET_PORT=8188
110     USE_ODL_ALT_AKKA_PORT=2553
111     USE_ODL_ALT_AKKA_MGT_PORT=8561
112     USE_ODL_ALT_SHELL_PORT=8104
113     USE_ODL_ALT_RMI_REGISTRY_PORT=1102
114     USE_ODL_ALT_RMI_SERVER_PORT=44447
115     USE_ODL_ALT_RESTCONF_PORT=8184
116     USE_ODL_ALT_KARAF_INSTALL_DIR=karaf71
117 commands =
118   ./launch_tests.sh 7.1 {posargs:}
119
120 [testenv:gnpy]
121 depends = buildcontroller
122 whitelist_externals = sh
123                       sudo
124 passenv = LAUNCHER USE_LIGHTY
125 commands =
126   #sudo docker pull atriki/gnpyrest:v1.2
127   sudo docker run -d -p 8008:5000 --name gnpy_tpce_rest1 atriki/gnpyrest:v1.2
128   ./launch_tests.sh with_docker gnpy
129   sudo docker container rm -f gnpy_tpce_rest1
130
131 [testenv:nbinotifications]
132 depends = buildcontroller,sims221
133 whitelist_externals = sh
134                       sudo
135 passenv = LAUNCHER USE_LIGHTY
136 commands =
137   sudo docker-compose -f ./nbinotifications/docker-compose.yml up -d
138   ./launch_tests.sh with_docker nbinotifications
139   sudo docker-compose -f ./nbinotifications/docker-compose.yml down --rmi all
140
141 [testenv:docs]
142 passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
143 basepython = python3
144 deps = -rdocs/requirements.txt
145 commands =
146     sphinx-build -q -W -b html -n -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/html
147
148 [testenv:docs-linkcheck]
149 passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY
150 basepython = python3
151 deps = -rdocs/requirements.txt
152 commands = sphinx-build -q -b linkcheck -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/linkcheck
153
154 [testenv:checkbashisms]
155 deps =
156 whitelist_externals = sh
157                       checkbashisms
158                       sudo
159                       find
160 commands =
161     sh -c 'command checkbashisms>/dev/null || sudo yum install devscripts-minimal || (echo "checkbashisms command not found - please install it (e.g. sudo apt-get install devscripts | yum install devscripts-minimal )" >&2 && exit 1)'
162     find . -not -path '*/\.*' -name *.sh -exec checkbashisms -f  \{\} +
163
164 [testenv:spelling]
165 basepython = python3
166 deps =
167     -rdocs/requirements.txt
168     sphinxcontrib-spelling
169     PyEnchant
170 commands = sphinx-build -b spelling  -d {envtmpdir}/doctrees ../docs/ {toxinidir}/docs/_build/spelling
171
172 [testenv:autopep8]
173 basepython = python3
174 deps = autopep8
175 commands =
176     autopep8 --max-line-length 120 --in-place --recursive transportpce_tests/
177
178 [testenv:pylint]
179 basepython = python3
180 deps = pylint
181 whitelist_externals = find
182 commands =
183     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  \{\} +
184
185 [testenv:pyang]
186 basepython = python3
187 deps = pyang
188 whitelist_externals = find
189 commands =
190     pyang --version
191     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/ \{\} +
192 #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/ \{\} +
193
194 [testenv:pyangformat]
195 basepython = python3
196 deps = pyang
197 whitelist_externals = sh
198 commands =
199     pyang --version
200     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'
201
202 [testenv:pre-commit-install]
203 basepython = python3
204 deps = pre-commit
205 commands =
206     pre-commit install
207     pre-commit install --hook-type commit-msg
208
209 [testenv:pre-commit-uninstall]
210 basepython = python3
211 deps = pre-commit
212 commands =
213     pre-commit uninstall
214     pre-commit uninstall --hook-type commit-msg
215
216 [testenv:pre-commit]
217 basepython = python3
218 deps = pre-commit
219 passenv = HOME
220 commands =
221     pre-commit run --all-files --show-diff-on-failure
222     pre-commit run gitlint --hook-stage commit-msg --commit-msg-filename .git/COMMIT_EDITMSG
223     # Gitlint only proposes a pre-commit configuration for the commit-msg stage but none for the commit stage.
224     # Its default arguments --passed and --msg-filename are different from CI recommandations.
225     # As a result, the line above is always skipped in jenkins CI since there cannot be a .git/COMMIT_EDITMSG file.
226     # A dedicated gitlint profile for CI is proposed below. Also to behave fine locally, this profile must have access
227     # to the HOME variable so that Gitlint can retrieve Git user settings.
228
229 [testenv:gitlint]
230 basepython = python3
231 deps = gitlint
232 commands =
233     gitlint
234