diff options
author | Filip Krzywka <filip.krzywka@nokia.com> | 2018-08-06 09:31:40 +0200 |
---|---|---|
committer | Gary Wu <gary.i.wu@huawei.com> | 2018-08-29 22:51:03 +0000 |
commit | 93185789dca5b0f8c18d8fdea239458559eac7b1 (patch) | |
tree | b5edf4c720007427455e1f379b22d774df51942f /test/csit/plans/dcaegen2/hv-ves-testsuites/setup.sh | |
parent | 3f20c45f7c61834a038a6964bbfdf34d376d923a (diff) |
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 <filip.krzywka@nokia.com>
Diffstat (limited to 'test/csit/plans/dcaegen2/hv-ves-testsuites/setup.sh')
-rwxr-xr-x | test/csit/plans/dcaegen2/hv-ves-testsuites/setup.sh | 40 |
1 files changed, 40 insertions, 0 deletions
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 |