Merge "CSIT uplift for CBS, generalized DFC, bugfixes, stability, traceability"
[integration/csit.git] / plans / dcaegen2-collectors-datafile / Functional-suite / setup.sh
1 #!/bin/bash
2
3 #Stop all running containers
4 docker kill "$(docker ps -q -a)"
5 docker rm "$(docker ps -q -a)"
6 docker system prune -f
7
8 # Clone Simulators for DFC from integration repo.
9 mkdir -p $WORKSPACE/archives/dfc
10 cd $WORKSPACE/archives/dfc
11
12
13 if [ -z "$SIM_ROOT" ]
14 then
15         #git clone --depth 1 https://gerrit.onap.org/r/integration -b master
16         git clone https://github.com/yanhuanwang/integration.git
17         #Location of all individual simulators for DFC
18         echo "Determine SIM_ROOT based on the WORKSPACE"
19         SIM_ROOT=$WORKSPACE/archives/dfc/integration/test/mocks/datafilecollector-testharness
20
21         rm $SIM_ROOT/simulator-group/consul/consul/cbs_localhost_config.hcl || true
22 else
23         echo "Using SIM_ROOT from environmental variable: " $SIM_ROOT
24 fi
25
26 #Location of the above simulators when run as a group. For start+config and stop.
27 SIMGROUP_ROOT=$SIM_ROOT/simulator-group
28
29 #Default IP for all containers
30 SIM_IP="127.0.0.1"
31 #Location of script to start and stop dfc
32 DFC_ROOT=$WORKSPACE/scripts/dcaegen2-collectors-datafile/dfc-management
33
34 #Make the env vars availble to the robot scripts
35 ROBOT_VARIABLES="-b debug.log -v SIMGROUP_ROOT:${SIMGROUP_ROOT} -v SIM_IP:${SIM_IP} -v DFC_ROOT:${DFC_ROOT}"
36
37
38
39
40
41 #Build needed simulator images. DR and MR simulators
42
43 cd $SIM_ROOT/mr-sim
44
45 docker build -t mrsim:latest .
46
47 cd $SIM_ROOT/dr-sim
48
49 docker build -t drsim_common:latest .
50
51 #Prepare the ftp simulator files.
52
53 cd $SIMGROUP_ROOT
54
55 #Copy ftp config for the ftp servers
56 cp -r ../ftps-sftp-server/configuration .
57 cp -r ../ftps-sftp-server/tls .
58
59 cd ../ftps-sftp-server
60 docker build -t ftps_vsftpd:latest -f Dockerfile-ftps .
61
62
63 #All containers will be started and stopped via the robot tests.
64