Correct Robot script for ExternalAPI-NBI CSIT 19/43619/4
authorEric Debeau <eric.debeau@orange.com>
Wed, 18 Apr 2018 20:53:01 +0000 (20:53 +0000)
committerGary Wu <gary.i.wu@huawei.com>
Thu, 19 Apr 2018 16:03:51 +0000 (09:03 -0700)
Add Testcases (thanks to Gary Wu)

Change-Id: Ide10a8fabd1b8bce1584ee03ccbc29f11e949141
Issue-ID: EXTAPI-76
Signed-off-by: Eric Debeau <eric.debeau@orange.com>
Signed-off-by: Sylvain Desbureaux <sylvain.desbureaux@orange.com>
Signed-off-by: Quoc Nghia Nguyen <quocnghia.nguyen@orange.com>
Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
test/csit/scripts/externalapi-nbi/start_nbi_containers.sh
test/csit/tests/externalapi-nbi/healthcheck/healthcheck.robot

index d1a026a..7237a1f 100644 (file)
@@ -36,3 +36,16 @@ docker pull $NEXUS_DOCKER_REPO/onap/externalapi/nbi:$DOCKER_IMAGE_VERSION
 # Start nbi, MariaDB and MongoDB containers with docker compose and nbi/docker-compose.yml
 docker-compose up -d mariadb mongo && sleep 5 # to ensure that these services are ready for connections
 docker-compose up -d nbi
+
+NBI_CONTAINER_NAME=$(docker-compose ps 2> /dev/null | tail -n+3 | tr -s ' ' | cut -d' ' -f1 | grep _nbi_)
+NBI_IP=$(docker inspect $NBI_CONTAINER_NAME --format='{{ range .NetworkSettings.Networks }}{{ .IPAddress }}{{ end }}')
+
+echo "IP address for NBI main container ($NBI_CONTAINER_NAME) is set to ${NBI_IP}."
+
+# Wait for initialization
+for i in {1..30}; do
+    curl -sS ${NBI_IP}:8080 > /dev/null 2>&1 && break
+    echo sleep $i
+    sleep $i
+done
+
index eb5a5bb..21c0848 100644 (file)
@@ -1,6 +1,7 @@
 *** Settings ***
 Documentation     The main interface for interacting with External API/NBI
 Library           RequestsLibrary
+Library           Collections
 
 *** Variables ***
 ${GLOBAL_NBI_SERVER_PROTOCOL}   http
@@ -9,6 +10,9 @@ ${GLOBAL_NBI_SERVER_PORT}       8080
 ${NBI_HEALTH_CHECK_PATH}        /nbi/api/v1/status
 ${NBI_ENDPOINT}                 ${GLOBAL_NBI_SERVER_PROTOCOL}://${GLOBAL_INJECTED_NBI_IP_ADDR}:${GLOBAL_NBI_SERVER_PORT}
 
+*** Test Cases ***
+NBI Health Check
+    Run NBI Health Check
 
 *** Keywords ***
 Run NBI Health Check
@@ -26,4 +30,4 @@ Run NBI Get Request
      ${json}=    Set Variable    ${resp.json()}
      ${status}=    Get From Dictionary    ${json}   status
      Should Be Equal  ${status}    ok
-     [Return]    ${resp}
\ No newline at end of file
+     [Return]    ${resp}