blob: fb996d1acc97fdb1d9db0877cf61ce0217b54c2d [file] [log] [blame]
Tommy Carpenter5ad8f032019-05-30 14:33:21 -04001# ==================================================================================
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]
18envlist = int
19
20[testenv:int]
21whitelist_externals=
22 sleep
Tommy Carpenter09edf282019-06-11 09:10:23 -040023 helm
Tommy Carpenter5ad8f032019-05-30 14:33:21 -040024 ab
Tommy Carpenter09edf282019-06-11 09:10:23 -040025 echo
26 pkill
27passenv = *
Tommy Carpenter5ad8f032019-05-30 14:33:21 -040028deps =
Tommy Carpenter5ad8f032019-05-30 14:33:21 -040029 tavern
30changedir=integration_tests
31commands_pre=
Tommy Carpenter09edf282019-06-11 09:10:23 -040032 helm install --devel testreceiver -n testreceiver
Tommy Carpenter09edf282019-06-11 09:10:23 -040033 helm install --devel a1mediator/ -n a1
Tommy Carpenter296f8de2019-08-07 11:38:44 -040034 sleep 20
Tommy Carpenter09edf282019-06-11 09:10:23 -040035 ./portforward.sh
Tommy Carpenter5ad8f032019-05-30 14:33:21 -040036 sleep 2
37commands=
Tommy Carpenter09edf282019-06-11 09:10:23 -040038 echo "linting"
39 helm lint a1mediator/
40 echo "running tavern"
41 pytest
42 echo "running ab"
Tommy Carpenter24514462019-07-16 11:25:52 -040043 ab -n 100 -c 10 -u putdata -T application/json http://localhost:10000/ric/policies/admission_control_policy
Tommy Carpenter5ad8f032019-05-30 14:33:21 -040044commands_post=
Tommy Carpenter09edf282019-06-11 09:10:23 -040045 helm delete testreceiver
46 helm del --purge testreceiver
Tommy Carpenter09edf282019-06-11 09:10:23 -040047 helm delete a1
48 helm del --purge a1
49 pkill -9 kubectl
50 sleep 10