[DMAAP-MR] Migrate csit suite to the repo
[dmaap/messagerouter/messageservice.git] / csit / scripts / dmaap-message-router / dmaap-mr-teardown.sh
1 #!/bin/bash
2 #
3 # Copyright 2016-2017 Huawei Technologies Co., Ltd.
4 # Modification copyright (C) 2021 Nordix Foundation.
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 #
18 # Modifications copyright (c) 2018 AT&T Intellectual Property
19 #
20
21 function dmaap_mr_teardown() {
22     cd ${WORKSPACE}/archives/dmaap/mr
23     rm -rf last_run_logs/*
24     docker cp dmaap-mr:/appl/logs/EELF last_run_logs/dmaap_mr_logs
25     docker cp dmaap-kafka:/var/lib/kafka/data/ last_run_logs/kafka_logs
26     docker logs dmaap-kafka  > last_run_logs/kafka_logs/kafka.log
27     docker logs dmaap-zookeeper  > last_run_logs/zookeeper.log
28     docker-compose -f ${WORKSPACE}/scripts/dmaap-message-router/docker-compose/docker-compose.yml rm -sf
29 }