Towards A1 v1.0.0
[ric-plt/a1.git] / tox-integration.ini
1 # ==================================================================================
2 #       Copyright (c) 2019 Nokia
3 #       Copyright (c) 2018-2019 AT&T Intellectual Property.
4 #
5 #   Licensed under the Apache License, Version 2.0 (the "License");
6 #   you may not use this file except in compliance with the License.
7 #   You may obtain a copy of the License at
8 #
9 #          http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #   Unless required by applicable law or agreed to in writing, software
12 #   distributed under the License is distributed on an "AS IS" BASIS,
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #   See the License for the specific language governing permissions and
15 #   limitations under the License.
16 # ==================================================================================
17 [tox]
18 envlist = int
19
20 [testenv:int]
21 whitelist_externals=
22     sleep
23     helm
24     ab
25     echo
26     pkill
27     kubectl
28 passenv = *
29 deps =
30     tavern
31 changedir=integration_tests
32 commands_pre=
33     echo "WARNING: make sure you're running with latest docker builds!"
34     sleep 5
35     helm install --devel testreceiver -n testreceiver
36     helm install --devel a1mediator -n a1
37 # wait for helm charts
38     sleep 20
39     kubectl get pods --all-namespaces
40     ./portforward.sh
41     sleep 2
42 commands=
43     echo "linting"
44     helm lint a1mediator
45     helm lint testreceiver
46     echo "running tavern"
47 # run tavern
48     pytest --tavern-beta-new-traceback
49     echo "running ab"
50 # run apache bench
51     ab -n 100 -c 10 -u putdata -T application/json http://localhost:10000/a1-p/policytypes/20000/policies/admission_control_policy
52 commands_post=
53     helm delete testreceiver
54     helm del --purge testreceiver
55     helm delete a1
56     helm del --purge a1
57     pkill -9 kubectl
58     sleep 10