Fix HA test on Fabric

Re-add config files and update topo file name

Change-Id: Ic9ef77008fc4f83e9447a301c74466b765596575
diff --git a/TestON/drivers/common/cli/onosclidriver.py b/TestON/drivers/common/cli/onosclidriver.py
index c61bf84..09aa7a4 100755
--- a/TestON/drivers/common/cli/onosclidriver.py
+++ b/TestON/drivers/common/cli/onosclidriver.py
@@ -2886,6 +2886,7 @@
         """
         count = self.groupAddedCount( deviceId, core )
         count = int( count ) if count else 0
+        main.log.debug( "found {} groups".format( count ) )
         return count if ((count > expectedGroupCount) if (comparison == 0) else (count == expectedGroupCount)) else main.FALSE
 
     def checkFlowAddedCount( self, deviceId, expectedFlowCount=0, core=False, comparison=0):
@@ -2906,6 +2907,7 @@
         """
         count = self.flowAddedCount( deviceId, core )
         count = int( count ) if count else 0
+        main.log.debug( "found {} flows".format( count ) )
         return count if ((count > expectedFlowCount) if (comparison == 0) else (count == expectedFlowCount)) else main.FALSE
 
     def getAllDevicesId( self ):