Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame^] | 1 | #!/bin/bash |
| 2 | # |
| 3 | # Copyright 2016-2017 Huawei Technologies Co., Ltd. |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
| 16 | # |
| 17 | # Modifications copyright (c) 2017 AT&T Intellectual Property |
| 18 | # |
| 19 | # Place the scripts in run order: |
| 20 | SCRIPTS="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" |
| 21 | source ${WORKSPACE}/test/csit/scripts/sdnc/script1.sh |
| 22 | |
| 23 | export NEXUS_USERNAME=docker |
| 24 | export NEXUS_PASSWD=docker |
| 25 | export NEXUS_DOCKER_REPO=nexus3.onap.org:10001 |
| 26 | export DMAAP_TOPIC=AUTO |
| 27 | export DOCKER_IMAGE_VERSION=1.4-STAGING-latest |
| 28 | export CCSDK_DOCKER_IMAGE_VERSION=0.3-STAGING-latest |
| 29 | |
| 30 | export MTU=$(/sbin/ifconfig | grep MTU | sed 's/.*MTU://' | sed 's/ .*//' | sort -n | head -1) |
| 31 | |
| 32 | if [ "$MTU" == "" ]; then |
| 33 | export MTU="1450" |
| 34 | fi |
| 35 | |
| 36 | |
| 37 | # Clone SDNC repo to get docker-compose for SDNC |
| 38 | mkdir -p $WORKSPACE/archives/sdnc |
| 39 | cd $WORKSPACE/archives |
| 40 | git clone -b master --single-branch --depth=1 http://gerrit.onap.org/r/sdnc/oam.git sdnc |
| 41 | cd $WORKSPACE/archives/sdnc |
| 42 | git pull |
| 43 | unset http_proxy https_proxy |
| 44 | cd $WORKSPACE/archives/sdnc/installation/src/main/yaml |
| 45 | |
| 46 | sed -i "s/DMAAP_TOPIC_ENV=.*/DMAAP_TOPIC_ENV="AUTO"/g" docker-compose.yml |
| 47 | docker login -u $NEXUS_USERNAME -p $NEXUS_PASSWD $NEXUS_DOCKER_REPO |
| 48 | |
| 49 | docker pull $NEXUS_DOCKER_REPO/onap/sdnc-image:$DOCKER_IMAGE_VERSION |
| 50 | docker tag $NEXUS_DOCKER_REPO/onap/sdnc-image:$DOCKER_IMAGE_VERSION onap/sdnc-image:latest |
| 51 | |
| 52 | docker pull $NEXUS_DOCKER_REPO/onap/sdnc-ansible-server-image:$DOCKER_IMAGE_VERSION |
| 53 | docker tag $NEXUS_DOCKER_REPO/onap/sdnc-ansible-server-image:$DOCKER_IMAGE_VERSION onap/sdnc-ansible-server-image:latest |
| 54 | |
| 55 | docker pull $NEXUS_DOCKER_REPO/onap/ccsdk-dgbuilder-image:$CCSDK_DOCKER_IMAGE_VERSION |
| 56 | docker tag $NEXUS_DOCKER_REPO/onap/ccsdk-dgbuilder-image:$CCSDK_DOCKER_IMAGE_VERSION onap/ccsdk-dgbuilder-image:latest |
| 57 | |
| 58 | docker pull $NEXUS_DOCKER_REPO/onap/admportal-sdnc-image:$DOCKER_IMAGE_VERSION |
| 59 | docker tag $NEXUS_DOCKER_REPO/onap/admportal-sdnc-image:$DOCKER_IMAGE_VERSION onap/admportal-sdnc-image:latest |
| 60 | |
| 61 | docker pull $NEXUS_DOCKER_REPO/onap/sdnc-ueb-listener-image:$DOCKER_IMAGE_VERSION |
| 62 | docker tag $NEXUS_DOCKER_REPO/onap/sdnc-ueb-listener-image:$DOCKER_IMAGE_VERSION onap/sdnc-ueb-listener-image:latest |
| 63 | |
| 64 | docker pull $NEXUS_DOCKER_REPO/onap/sdnc-dmaap-listener-image:$DOCKER_IMAGE_VERSION |
| 65 | |
| 66 | docker tag $NEXUS_DOCKER_REPO/onap/sdnc-dmaap-listener-image:$DOCKER_IMAGE_VERSION onap/sdnc-dmaap-listener-image:latest |
| 67 | |
| 68 | |
| 69 | # start SDNC containers with docker compose and configuration from docker-compose.yml |
| 70 | docker-compose up -d |
| 71 | |
| 72 | # WAIT 10 minutes maximum and test every 5 seconds if SDNC is up using HealthCheck API |
| 73 | TIME_OUT=1000 |
| 74 | INTERVAL=30 |
| 75 | TIME=0 |
| 76 | while [ "$TIME" -lt "$TIME_OUT" ]; do |
| 77 | response=$(curl --write-out '%{http_code}' --silent --output /dev/null -H "Authorization: Basic YWRtaW46S3A4Yko0U1hzek0wV1hsaGFrM2VIbGNzZTJnQXc4NHZhb0dHbUp2VXkyVQ==" -X POST -H "X-FromAppId: csit-sdnc" -H "X-TransactionId: csit-sdnc" -H "Accept: application/json" -H "Content-Type: application/json" http://localhost:8282/restconf/operations/SLI-API:healthcheck ); echo $response |
| 78 | |
| 79 | if [ "$response" == "200" ]; then |
| 80 | echo SDNC started in $TIME seconds |
| 81 | break; |
| 82 | fi |
| 83 | |
| 84 | echo Sleep: $INTERVAL seconds before testing if SDNC is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds |
| 85 | sleep $INTERVAL |
| 86 | TIME=$(($TIME+$INTERVAL)) |
| 87 | done |
| 88 | |
| 89 | if [ "$TIME" -ge "$TIME_OUT" ]; then |
| 90 | echo TIME OUT: Docker containers not started in $TIME_OUT seconds... Could cause problems for testing activities... |
| 91 | fi |
| 92 | |
| 93 | #sleep 800 |
| 94 | |
| 95 | TIME_OUT=1500 |
| 96 | INTERVAL=60 |
| 97 | TIME=0 |
| 98 | while [ "$TIME" -lt "$TIME_OUT" ]; do |
| 99 | |
| 100 | docker exec sdnc_controller_container rm -f /opt/opendaylight/current/etc/host.key |
| 101 | response=$(docker exec sdnc_controller_container /opt/opendaylight/current/bin/client system:start-level) |
| 102 | docker exec sdnc_controller_container rm -f /opt/opendaylight/current/etc/host.key |
| 103 | num_bundles=$(docker exec sdnc_controller_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d\| -f1) |
| 104 | |
| 105 | if [ "$response" == "Level 100" ] && [ "$num_bundles" -ge 333 ]; then |
| 106 | echo SDNC karaf started in $TIME seconds |
| 107 | break; |
| 108 | fi |
| 109 | |
| 110 | echo Sleep: $INTERVAL seconds before testing if SDNC is up. Total wait time up now is: $TIME seconds. Timeout is: $TIME_OUT seconds |
| 111 | sleep $INTERVAL |
| 112 | TIME=$(($TIME+$INTERVAL)) |
| 113 | done |
| 114 | |
| 115 | if [ "$TIME" -ge "$TIME_OUT" ]; then |
| 116 | echo TIME OUT: karaf session not started in $TIME_OUT seconds... Could cause problems for testing activities... |
| 117 | fi |
| 118 | |
| 119 | response=$(docker exec sdnc_controller_container /opt/opendaylight/current/bin/client system:start-level) |
| 120 | num_bundles=$(docker exec sdnc_controller_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d\| -f1) |
| 121 | |
| 122 | if [ "$response" == "Level 100" ] && [ "$num_bundles" -ge 333 ]; then |
| 123 | num_bundles=$(docker exec sdnc_controller_container /opt/opendaylight/current/bin/client bundle:list | tail -1 | cut -d\| -f1) |
| 124 | num_failed_bundles=$(docker exec sdnc_controller_container /opt/opendaylight/current/bin/client bundle:list | grep Failure | wc -l) |
| 125 | failed_bundles=$(docker exec sdnc_controller_container /opt/opendaylight/current/bin/client bundle:list | grep Failure) |
| 126 | echo There is/are $num_failed_bundles failed bundles out of $num_bundles installed bundles. |
| 127 | fi |
| 128 | |
| 129 | if [ "$num_failed_bundles" -ge 1 ]; then |
| 130 | echo "The following bundle(s) are in a failed state: " |
| 131 | echo " $failed_bundles" |
| 132 | fi |
| 133 | |
| 134 | # Sleep additional 5 minutes (300 secs) to give application time to finish |
| 135 | sleep 300 |
| 136 | |
| 137 | # Pass any variables required by Robot test suites in ROBOT_VARIABLES |
| 138 | ROBOT_VARIABLES="-v SCRIPTS:${SCRIPTS}" |
| 139 | |