new testcase numbers
diff --git a/TestON/tests/ProdFunc13/ProdFunc13.params b/TestON/tests/ProdFunc13/ProdFunc13.params
index 4551087..f28d620 100755
--- a/TestON/tests/ProdFunc13/ProdFunc13.params
+++ b/TestON/tests/ProdFunc13/ProdFunc13.params
@@ -1,6 +1,6 @@
<PARAMS>
- <testcases>1,4,11,8,12,10,5,6,7,8,9,2,20,21,22,10,23,24</testcases>
+ <testcases>1,4,11,10,5,6,7,8,12,9,2,20,21,22,10,23,24</testcases>
#Environment variables
<ENV>
diff --git a/TestON/tests/ProdFunc13/ProdFunc13.py b/TestON/tests/ProdFunc13/ProdFunc13.py
index e1a0a3f..afa538f 100644
--- a/TestON/tests/ProdFunc13/ProdFunc13.py
+++ b/TestON/tests/ProdFunc13/ProdFunc13.py
@@ -758,12 +758,33 @@
case11Result = ping and pingResult
utilities.assert_equals(
- expect=main.TRUE,
- actual=case11Result,
- onpass= "Point intents for hosts on same devices" +
+ expect = main.TRUE,
+ actual = case11Result,
+ onpass = "Point intents for hosts on same devices" +
"Ping Test successful",
- onfail= "Point intents for hosts on same devices" +
+ onfail = "Point intents for hosts on same devices" +
"Ping Test NOT successful" )
+
+
+ def CASE12( self ):
+ """
+ Verify the default flows on each switch
+ """
+ case12Result = main.TRUE
+ idList = main.ONOS2.getAllDevicesId()
+ for id in idList:
+ count = main.ONOS2.FlowStateCount( id )
+ print "count = ", count
+ if count != 5:
+ case12Result = main.FALSE
+
+ utilities.assert_equals(
+ expect=main.TRUE,
+ actual=case12Result,
+ onpass = "Expected default num of flows exist",
+ onfail = "Expected default num of flows do not exist")
+
+
def CASE6( self ):