Add check of external network before running any test 17/6117/1
authorjose.lausuch <jose.lausuch@ericsson.com>
Mon, 11 Jan 2016 09:52:10 +0000 (10:52 +0100)
committerMorgan Richomme <morgan.richomme@orange.com>
Mon, 11 Jan 2016 09:55:30 +0000 (09:55 +0000)
Change-Id: I3ab58d924a8e53f2e6375c1c7fa77361d91b5efb
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
(cherry picked from commit a9c1ee74864e30ae7c4e09923460ac943da2be80)

testcases/VIM/OpenStack/CI/libraries/check_os.sh

index 3cc0ee1..88c7607 100755 (executable)
@@ -71,4 +71,21 @@ do
 done
 
 echo "OpenStack services are OK."
+
+echo "Checking External network..."
+networks=($(neutron net-list | tail -n +4 | head -n -1 | awk '{print $2}'))
+is_external=False
+for net in "${networks[@]}"
+do
+    is_external=$(neutron net-show $net|grep "router:external"|awk '{print $4}')
+    if [ $is_external == "True" ]; then
+        echo "External network found: $net"
+        break
+    fi
+done
+if [ $is_external == "False" ]; then
+    echo "ERROR: There are no external networks in the deployment."
+    exit 1
+fi
+
 exit 0