Add SDN-IP test && update Quagga and ONOS-cli drivers
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")