From 93185789dca5b0f8c18d8fdea239458559eac7b1 Mon Sep 17 00:00:00 2001 From: Filip Krzywka Date: Mon, 6 Aug 2018 09:31:40 +0200 Subject: Setup IT environment for HV-VES component - containers start-up and shutdown - containers logs copied to archives - robot tests started successfully Change-Id:Idfa24a8d6a2f41cc8e1374eb2bf2b5967f533f47 Issue-ID: DCAEGEN2-687 Signed-off-by: Filip Krzywka --- .../csit/plans/dcaegen2/hv-ves-testsuites/setup.sh | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 test/csit/plans/dcaegen2/hv-ves-testsuites/setup.sh (limited to 'test/csit/plans/dcaegen2/hv-ves-testsuites/setup.sh') diff --git a/test/csit/plans/dcaegen2/hv-ves-testsuites/setup.sh b/test/csit/plans/dcaegen2/hv-ves-testsuites/setup.sh new file mode 100755 index 000000000..48e39807f --- /dev/null +++ b/test/csit/plans/dcaegen2/hv-ves-testsuites/setup.sh @@ -0,0 +1,40 @@ +#!/usr/bin/env bash + +set -euo pipefail + +pip uninstall -y docker-py +pip install docker + +COMPOSE_VERSION=1.22.0 +COMPOSE_LOCATION='/usr/local/bin/docker-compose' +sudo curl -L https://github.com/docker/compose/releases/download/${COMPOSE_VERSION}/docker-compose-$(uname -s)-$(uname -m) -o ${COMPOSE_LOCATION} +sudo chmod +x ${COMPOSE_LOCATION} + + +echo "Removing not used docker networks" +docker network prune -f + +export CONTAINERS_NETWORK=ves-hv-default +echo "Creating network for containers: ${CONTAINERS_NETWORK}" +docker network create ${CONTAINERS_NETWORK} + +cd ssl +make FILE=client +make FILE=server +make FILE=invalid_client CA=invalid_trust +cd .. + +export DOCKER_REGISTRY="nexus3.onap.org:10001" +CURRENT_DIR=${PWD##*/} +VES_HV_CONTAINER_NAME=ves-hv-collector + +# little race condition between container start-up and required files copying below +docker-compose up -d + +COMPOSE_VES_HV_CONTAINER_NAME=${CURRENT_DIR}_${VES_HV_CONTAINER_NAME}_1 +echo "COPY tls authorization files to container: ${COMPOSE_VES_HV_CONTAINER_NAME}" +docker cp ssl/. ${COMPOSE_VES_HV_CONTAINER_NAME}:/etc/ves-hv +# race condition end + + +export ROBOT_VARIABLES="--pythonpath ${WORKSPACE}/test/csit/tests/dcaegen2/hv-ves-testcases/libraries" \ No newline at end of file -- cgit 1.2.3-korg