787f811ee2fc9a6bc0e8a098605d1f63f1130b67
[integration/csit.git] / plans / dcaegen2-collectors-hv-ves / testsuites / teardown.sh
1 #!/usr/bin/env bash
2 # ============LICENSE_START=======================================================
3 # csit-dcaegen2-collectors-hv-ves
4 # ================================================================================
5 # Copyright (C) 2018-2019 NOKIA
6 # ================================================================================
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #      http://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 # ============LICENSE_END=========================================================
19
20 RUN_CSIT_LOCAL=${RUN_CSIT_LOCAL:-false}
21
22 cd collector/ssl
23 ./gen-certs.sh clean
24 cd ../..
25
26 if ${RUN_CSIT_LOCAL} ; then
27   echo "Tearing down local setup"
28   source env_local.sh
29 else
30   echo "Tearing down"
31   source env.sh
32 fi
33
34 set +e
35
36 COMPOSE_LOGS_FILE=${WORKSPACE}/archives/containers_logs/docker-compose.log
37 docker-compose logs > ${COMPOSE_LOGS_FILE}
38 docker-compose down
39 docker-compose rm -f
40
41 echo "Stopping leftover containers"
42 LEFTOVER_CONTAINERS=$(docker ps -aqf network=${CONTAINERS_NETWORK} | awk '{print $1}')
43 docker stop ${LEFTOVER_CONTAINERS}
44 docker rm ${LEFTOVER_CONTAINERS}
45 docker network rm ${CONTAINERS_NETWORK}
46
47 set -e
48
49 if grep "LEAK:" ${COMPOSE_LOGS_FILE}; then
50     echo "WARNING: Memory leak detected in docker-compose logs."
51 fi