adding TestON
diff --git a/TestON/examples/ExperimentTest/.svn/text-base/ExperimentTest.params.svn-base b/TestON/examples/ExperimentTest/.svn/text-base/ExperimentTest.params.svn-base
new file mode 100644
index 0000000..3b97252
--- /dev/null
+++ b/TestON/examples/ExperimentTest/.svn/text-base/ExperimentTest.params.svn-base
@@ -0,0 +1,9 @@
+[PARAMS]
+ 'testcases' = '[1,2]'
+ 'mail' = 'anilkumar.s@paxterrasolutions.com,paxweb@paxterrasolutions.com'
+ #'log_dir' = '/home/user/Desktop/openflow_logs/'
+ [[CASE1]]
+ 'destination' = 'h2'
+ [[[STEP1]]]
+ 'host' = 'h2'
+
diff --git a/TestON/examples/ExperimentTest/.svn/text-base/ExperimentTest.py.svn-base b/TestON/examples/ExperimentTest/.svn/text-base/ExperimentTest.py.svn-base
new file mode 100644
index 0000000..1d87e3e
--- /dev/null
+++ b/TestON/examples/ExperimentTest/.svn/text-base/ExperimentTest.py.svn-base
@@ -0,0 +1,36 @@
+class ExperimentTest:
+ '''
+ Testing of the Experimental Mode
+ '''
+
+ def __init__(self):
+ self.default = ""
+
+ def CASE1(self,main):
+ '''
+ Testing the configuration of the host by using checkIP functionof Mininet driver
+ '''
+ main.EXPERIMENTAL_MODE = main.TRUE
+ main.case("Testing the configuration of the host")
+ main.step("Host IP Checking using checkIP")
+ result = main.Mininet1.checkIP(main.params['CASE1']['destination'])
+ main.step("Verifying the result")
+ utilities.assert_equals(expect=main.TRUE,actual=result,onpass="Host h2 IP address configured",onfail="Host h2 IP address didn't configured")
+ main.step("Calling Non Existing API for Experimental Mode")
+ testReturn = main.POX2.verify_flow(returns=main.TRUE)
+ utilities.assert_equals(expect=main.TRUE,actual=testReturn,onpass="Host h2 IP address configured",onfail="Host h2 IP address didn't configured")
+
+ def CASE2(self,main):
+ '''
+ Testing of the reachability of the hosts by using pingall of Mininet driver
+ '''
+ main.EXPERIMENTAL_MODE = main.TRUE
+ main.case("Testing Reachabilty of all the hosts")
+ main.step("Checking Hosts reachability by using pingall")
+ result = main.Mininet1.pingall()
+ main.step("Verifying the result")
+ utilities.assert_equals(expect=main.TRUE,actual=result,onpass="All hosts are reacchable",onfail="Hosts are not reachable")
+ main.step("Calling Non Existing API for Experimental Mode")
+ testReturn = main.Mininet1.verify_flow(returns=main.TRUE)
+ utilities.assert_equals(expect=main.TRUE,actual=testReturn,onpass="Host h2 IP address configured",onfail="Host h2 IP address didn't configured")
+
diff --git a/TestON/examples/ExperimentTest/.svn/text-base/ExperimentTest.topo.svn-base b/TestON/examples/ExperimentTest/.svn/text-base/ExperimentTest.topo.svn-base
new file mode 100644
index 0000000..74c0db9
--- /dev/null
+++ b/TestON/examples/ExperimentTest/.svn/text-base/ExperimentTest.topo.svn-base
@@ -0,0 +1,23 @@
+[TOPOLOGY]
+
+ [[COMPONENT]]
+ [[["Mininet1"]]]
+ 'host' = '192.168.56.101'
+ 'user' = 'openflow'
+ 'password' = 'openflow'
+ 'type' = "Mininet"
+ [[[["COMPONENTS"]]]]
+ # Specify the Option for mininet
+ 'topo' = 'single'
+ 'topocount' = '3'
+ 'switch' = 'ovsk'
+ 'controller' = 'remote'
+ [[["POX2"]]]
+ 'host' = '192.168.56.101'
+ 'user' = 'openflow'
+ 'password' = 'openflow'
+ 'type' = 'POX'
+ 'no-cli' = '1' #or '0' if want to run in cli mode
+ [[[["COMPONENTS"]]]]
+ 'pox_lib_location' = "/home/openflow/pox/"
+ [[[[["samples.of_tutorial"]]]]]
diff --git a/TestON/examples/ExperimentTest/.svn/text-base/__init__.py.svn-base b/TestON/examples/ExperimentTest/.svn/text-base/__init__.py.svn-base
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/TestON/examples/ExperimentTest/.svn/text-base/__init__.py.svn-base