Merge "Update dfc env variables"
[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 METRICS_FILE=${WORKSPACE}/archives/containers_logs/collector-metrics.dump
37 docker-compose exec hv-ves-collector curl -qs localhost:6060/monitoring/prometheus > ${METRICS_FILE}
38
39 CONTAINER_LOGS=${WORKSPACE}/archives/containers_logs/
40 COMPOSE_LOGS_FILE=${CONTAINER_LOGS}/docker-compose.log
41
42 docker-compose logs hv-ves-collector > ${CONTAINER_LOGS}/hv-ves-collector.log
43 docker-compose logs unencrypted-hv-ves-collector > ${CONTAINER_LOGS}/unencrypted-hv-ves-collector.log
44 docker-compose logs dcae-app-simulator > ${CONTAINER_LOGS}/dcae-app-simulator.log
45 docker-compose logs > ${COMPOSE_LOGS_FILE}
46 docker-compose down
47 docker-compose rm -f
48
49 echo "Stopping leftover containers"
50 LEFTOVER_CONTAINERS=$(docker ps -aqf network=${CONTAINERS_NETWORK} | awk '{print $1}')
51 docker stop ${LEFTOVER_CONTAINERS}
52 docker rm ${LEFTOVER_CONTAINERS}
53 docker network rm ${CONTAINERS_NETWORK}
54
55 set -e
56
57 if grep "LEAK:" ${COMPOSE_LOGS_FILE}; then
58     echo "WARNING: Memory leak detected in docker-compose logs."
59 fi