Add SDN-IP test && update Quagga and ONOS-cli drivers
diff --git a/TestON/drivers/common/cli/onosclidriver.py b/TestON/drivers/common/cli/onosclidriver.py
index 4571387..282200d 100644
--- a/TestON/drivers/common/cli/onosclidriver.py
+++ b/TestON/drivers/common/cli/onosclidriver.py
@@ -1109,6 +1109,7 @@
             main.cleanup()
             main.exit()
 
+    # This method should be used after installing application: onos-app-sdnip
     def routes(self, json_format=False):
         '''
         Optional:
diff --git a/TestON/tests/SdnIpTest/SdnIpTest.py b/TestON/tests/SdnIpTest/SdnIpTest.py
index 369f2cd..18b23af 100755
--- a/TestON/tests/SdnIpTest/SdnIpTest.py
+++ b/TestON/tests/SdnIpTest/SdnIpTest.py
@@ -74,11 +74,9 @@
         main.log.info(sorted(allRoutes))
         main.log.info("Routes get from ONOS CLI:")
         main.log.info(sorted(routes_list))
-
-        if eq(sorted(allRoutes), sorted(routes_list)): 
-            main.log.report("***Routes in SDN-IP are correct!***")
-        else:
-            main.log.report("***Routes in SDN-IP are wrong!***")
+        utilities.assert_equals(expect=sorted(allRoutes), actual=sorted(routes_list),
+                onpass="***Routes in SDN-IP are correct!***",
+                onfail="***Routes in SDN-IP are wrong!***")
         
         time.sleep(2)
         main.step("Get intents installed on ONOS")