Add map register and rloc probe tests
[one.git] / tests / data_plane / vpp_lite_topo / odl_utils.sh
index 8a2b8bc..f6f9957 100644 (file)
@@ -13,4 +13,12 @@ function odl_clear_all {
   echo "Deleting all ODL mappings.."
   curl -X DELETE "http://${ODL_IP}:${ODL_PORT}/restconf/config/odl-mappingservice:mapping-database" \
        -u ${ODL_USER}:${ODL_PASSWD}
+  # TODO how to delete operational mappings?
+}
+
+function check_odl_running {
+  if [ -z  "`netstat -tunlp | grep 8181`" ] ; then
+  echo "ODL is not running!"
+    exit 1
+  fi
 }