Changes made to work on the intentCases
diff --git a/TestON/drivers/common/cli/emulator/mininetclidriver.py b/TestON/drivers/common/cli/emulator/mininetclidriver.py
index 9d774b3..f58c8f3 100644
--- a/TestON/drivers/common/cli/emulator/mininetclidriver.py
+++ b/TestON/drivers/common/cli/emulator/mininetclidriver.py
@@ -192,11 +192,6 @@
if self.handle :
try:
response = self.execute(cmd=host+" ifconfig",prompt="mininet>",timeout=10)
- print("response 2"+ response)
- self.handle.sendline(host+" ifconfig")
- self.handle.expect(["mininet>",pexpect.TIMEOUT])
- response = self.handle.before + self.handle.after
- print(response)
except pexpect.EOF:
main.log.error(self.name + ": EOF exception found")
main.log.error(self.name + ": " + self.handle.before)
@@ -538,6 +533,7 @@
response = self.execute(cmd=command,prompt="mininet>",timeout=10)
print(response)
if response:
+ print("**********************")
return response
else:
return main.FALSE
diff --git a/TestON/drivers/common/cli/onosclidriver.py b/TestON/drivers/common/cli/onosclidriver.py
index b3186b0..0a620f2 100644
--- a/TestON/drivers/common/cli/onosclidriver.py
+++ b/TestON/drivers/common/cli/onosclidriver.py
@@ -430,7 +430,148 @@
main.exit()
- def add_intent(self, intent_id,src_dpid,dst_dpid,src_mac,dst_mac,intentIP,intentPort=8080,intentURL="wm/onos/intent/high" , intent_type = 'SHORTEST_PATH', static_path=False, src_port=1,dst_port=1):
+
+#*********************************************************************
+#*********************************************************************
+# shortest_path is a command to find the shortest path between two
+# switches. It is called using the IP, port, and source and
+# destination dpids
+#*********************************************************************
+#*********************************************************************
+
+ def shortest_path(self,ONOSIP,ONOSPort,srcDPID,dstDPID):
+ main.log.report("Finding the shortest Path between "+str(srcDPID) + " to " + str(dstDPID))
+ url = "http://%s:%s/wm/onos/intent/path/switch/%s/shortest-path/%s"%(ONOSIP,ONOSPort,srcDPID,dstDPID)
+ parsed_result = []
+ try:
+ response = urllib2.urlopen(url)
+ result = response.read()
+ response.close()
+ if len(result) != 0:
+ parsed_result = json.loads(result)
+ except HTTPError as exc:
+ print "ERROR:"
+ print " REST GET URL: %s" % url
+ # NOTE: exc.fp contains the object with the response payload
+ error_payload = json.loads(exc.fp.read())
+ print " REST Error Code: %s" % (error_payload['code'])
+ print " REST Error Summary: %s" % (error_payload['summary'])
+ print " REST Error Description: %s" % (error_payload['formattedDescription'])
+ print " HTTP Error Code: %s" % exc.code
+ print " HTTP Error Reason: %s" % exc.reason
+ except URLError as exc:
+ print "ERROR:"
+ print " REST GET URL: %s" % url
+ print " URL Error Reason: %s" % exc.reason
+
+ if len(parsed_result)==0:
+ return
+ result = json.dumps(parsed_result,indent=4)
+ print(str(result))
+ return result
+
+
+#*********************************************************************
+#*********************************************************************
+# show_intent is a command to show intents.
+# Parameters include intentIP, intentPort, intentURL, and intent_id
+# Based on the url, it will show either high or low intents
+# If intent_id is left blank, it will show all high or all low intents
+# Else it will show the intent with the id
+#*********************************************************************
+#*********************************************************************
+
+
+
+ def show_intent(self,intentIP,intentPort=8080,intentURL="wm/onos/intent",intent_type="high",intent_id="all"):
+ main.log.report("Getting (an) intent(s)")
+ if intent_id=="all":
+ url = "http://%s:%s/%s/%s"%(intentIP,intentPort,intentURL,intent_type)
+ else:
+ url = "http://%s:%s/%s/%s/%s"%(intentIP,intentPort,intentURL,intent_type,intent_id)
+ print(url)
+ parsed_result = []
+ try:
+ response = urllib2.urlopen(url)
+ result = response.read()
+ response.close()
+ if len(result) != 0:
+ parsed_result = json.loads(result)
+ except HTTPError as exc:
+ print "ERROR:"
+ print " REST GET URL: %s" % url
+ # NOTE: exc.fp contains the object with the response payload
+ error_payload = json.loads(exc.fp.read())
+ print " REST Error Code: %s" % (error_payload['code'])
+ print " REST Error Summary: %s" % (error_payload['summary'])
+ print " REST Error Description: %s" % (error_payload['formattedDescription'])
+ print " HTTP Error Code: %s" % exc.code
+ print " HTTP Error Reason: %s" % exc.reason
+ return str(error_payload['code'])
+ except URLError as exc:
+ print "ERROR:"
+ print " REST GET URL: %s" % url
+ print " URL Error Reason: %s" % exc.reason
+ return str(error_payload['code'])
+
+ if len(parsed_result)==0:
+ return
+ result = json.dumps(parsed_result,indent=4)
+ print(str(result))
+ return result
+
+
+#*********************************************************************
+#*********************************************************************
+# del_intent is to delete either all or some or one intents
+# if intent_id is left blank, it will delete all intents
+# else, intent_id should be of the form "intent_id=1,2,3"
+#*********************************************************************
+#*********************************************************************
+
+ def del_intent(self,intentIP,intentPort=8080,intentURL="wm/onos/intent",intent_id="all"):
+ main.log.report("Deleting (an) intent(s)")
+ if intent_id=="all":
+ url = "http://%s:%s/%s/high"%(intentIP,intentPort,intentURL)
+ else:
+ url = "http://%s:%s/%s/high?%s"%(intentIP,intentPort,intentURL,intent_id)
+
+ print(url)
+
+ parsed_result = []
+ try:
+ request = urllib2.Request(url)
+ request.get_method = lambda: 'DELETE'
+ response = urllib2.urlopen(request)
+ result = response.read()
+ response.close()
+ if len(result) != 0:
+ parsed_result = json.loads(result)
+ print(parsed_result)
+ except HTTPError as exc:
+ print "ERROR:"
+ print " REST DELETE URL: %s" % url
+ # NOTE: exc.fp contains the object with the response payload
+ error_payload = json.loads(exc.fp.read())
+ print " REST Error Code: %s" % (error_payload['code'])
+ print " REST Error Summary: %s" % (error_payload['summary'])
+ print " REST Error Description: %s" % (error_payload['formattedDescription'])
+ print " HTTP Error Code: %s" % exc.code
+ print " HTTP Error Reason: %s" % exc.reason
+ except URLError as exc:
+ print "ERROR:"
+ print " REST DELETE URL: %s" % url
+ print " URL Error Reason: %s" % exc.reason
+ return result
+
+#*********************************************************************
+#*********************************************************************
+# add_intent will add a single intent by using dpids and macs.
+#*********************************************************************
+#*********************************************************************
+
+
+ def add_intent(self, intent_id,src_dpid,dst_dpid,src_mac,dst_mac,intentIP,intentPort=8080,intentURL="wm/onos/intent" , intent_type = 'SHORTEST_PATH', static_path=False, src_port=1,dst_port=1):
"CLI command callback: set intent"
intents = []
@@ -446,7 +587,7 @@
oper['matchSrcMac'] = src_mac
oper['matchDstMac'] = dst_mac
intents.append(oper)
- url = "http://%s:%s/%s"%(intentIP,intentPort,intentURL)
+ url = "http://%s:%s/%s/high"%(intentIP,intentPort,intentURL)
parsed_result = []
data_json = json.dumps(intents)
try:
@@ -471,7 +612,7 @@
print "ERROR:"
print " REST GET URL: %s" % url
print " URL Error Reason: %s" % exc.reason
- return parsed_result
+ return result
diff --git a/TestON/tests/JamesTest/JamesTest.params b/TestON/tests/JamesTest/JamesTest.params
index 8cd0cbe..f9540c3 100644
--- a/TestON/tests/JamesTest/JamesTest.params
+++ b/TestON/tests/JamesTest/JamesTest.params
@@ -1,12 +1,17 @@
<PARAMS>
- <testcases>1,2,21,31,3,4,5,6,7</testcases>
- <FLOWDEF>~/flowdef_files/Center_Triangle/flowdef_20.txt</FLOWDEF>
+ <testcases>101,66,10</testcases>
+ <tcpdump>
+ <intf>eth0</intf>
+ <port>port 6633</port>
+ <filename>~/packet_captures/Sanity.pcap</filename>
+ </tcpdump>
<CASE1>
<destination>h6</destination>
+ <target>h40</target>
</CASE1>
<PING>
- <source1>h6</source1>
- <target1>h31</target1>
+ <source1>h7</source1>
+ <target1>h32</target1>
<source2>h8</source2>
<target2>h33</target2>
</PING>
@@ -37,13 +42,21 @@
<ip4>10.128.4.154</ip4>
<port4>6633</port4>
</CTRL>
+ <INTENTREST>
+ <intentIP>10.128.4.151</intentIP>
+ <intentPort>8080</intentPort>
+ <intentURL>wm/onos/intent</intentURL>
+ </INTENTREST>
<RestIP>10.128.4.151</RestIP>
+ <RestIP2>10.128.4.152</RestIP2>
+ <RestIP3>10.128.4.153</RestIP3>
+ <RestIP4>10.128.4.154</RestIP4>
<NR_Switches>25</NR_Switches>
<NR_Links>50</NR_Links>
<RESTCALL>
<restIP1>10.128.4.151</restIP1>
<restIP2>10.128.4.152</restIP2>
<restPort>8080</restPort>
- <restURL>/wm/onos/topology/switches</restURL>
+ <restURL>/wm/onos/topology/hosts</restURL>
</RESTCALL>
</PARAMS>
diff --git a/TestON/tests/JamesTest/JamesTest.topo b/TestON/tests/JamesTest/JamesTest.topo
index 0819d37..3bfaa2f 100644
--- a/TestON/tests/JamesTest/JamesTest.topo
+++ b/TestON/tests/JamesTest/JamesTest.topo
@@ -130,10 +130,24 @@
<COMPONENTS>
# Specify the Option for mininet
<arg1> --custom ~/mininet/custom/topo-onos4node.py </arg1>
- <arg2> --topo mytopo </arg2>
+ <arg2> --topo mytopo --arp</arg2>
<controller> remote </controller>
</COMPONENTS>
</Mininet1>
+ <Mininet2>
+ <host>10.128.4.159</host>
+ <user>admin</user>
+ <password></password>
+ <type>RemoteMininetDriver</type>
+ <connect_order>14</connect_order>
+ <COMPONENTS>
+ # Specify the Option for mininet
+ <arg1> --custom ~/mininet/custom/topo-onos4node.py </arg1>
+ <arg2> --topo mytopo --arp</arg2>
+ <controller> remote </controller>
+ </COMPONENTS>
+ </Mininet2>
+
</COMPONENT>
</TOPOLOGY>
diff --git a/TestON/tests/JamesTest/RCOnosSanity4nodesJ.params.normal b/TestON/tests/JamesTest/RCOnosSanity4nodesJ.params.normal
new file mode 100644
index 0000000..f644d9f
--- /dev/null
+++ b/TestON/tests/JamesTest/RCOnosSanity4nodesJ.params.normal
@@ -0,0 +1,62 @@
+<PARAMS>
+ <testcases>1,2,3,31,6,7,6,7,4,6,7,6,7,5,6,7,6,7,41,6,7,6,7,5,6,7,6,7,66</testcases>
+ <tcpdump>
+ <intf>eth0</intf>
+ <port>port 6633</port>
+ <filename>~/packet_captures/Sanity.pcap</filename>
+ </tcpdump>
+ <CASE1>
+ <destination>h6</destination>
+ <target>h40</target>
+ </CASE1>
+ <PING>
+ <source1>h7</source1>
+ <target1>h32</target1>
+ <source2>h8</source2>
+ <target2>h33</target2>
+ </PING>
+ <LINK>
+ <begin>s1</begin>
+ <end>s2</end>
+ </LINK>
+ <YANK>
+ <hostname>h1</hostname>
+ <hostip>10.0.0.1</hostip>
+ <hostmac>00:00:00:00:00:01</hostmac>
+ <sw1>s1</sw1>
+ <sw6>s6</sw6>
+ <intf>s1-eth1</intf>
+ </YANK>
+ <PLUG>
+ <intf>s1-eth1</intf>
+ <sw6>s6</sw6>
+ <sw1>s1</sw1>
+ </PLUG>
+ <CTRL>
+ <ip1>10.128.4.151</ip1>
+ <port1>6633</port1>
+ <ip2>10.128.4.152</ip2>
+ <port2>6633</port2>
+ <ip3>10.128.4.153</ip3>
+ <port3>6633</port3>
+ <ip4>10.128.4.154</ip4>
+ <port4>6633</port4>
+ </CTRL>
+ <INTENTREST>
+ <intentIP>10.128.4.151</intentIP>
+ <intentPort>8080</intentPort>
+ <intentURL>wm/onos/intent/high</intentURL>
+ </INTENTREST>
+ <RestIP>10.128.4.151</RestIP>
+ <RestIP2>10.128.4.152</RestIP2>
+ <RestIP3>10.128.4.153</RestIP3>
+ <RestIP4>10.128.4.154</RestIP4>
+ <NR_Switches>25</NR_Switches>
+ <NR_Links>50</NR_Links>
+ <RESTCALL>
+ <restIP1>10.128.4.151</restIP1>
+ <restIP2>10.128.4.152</restIP2>
+ <restPort>8080</restPort>
+ <restURL>/wm/onos/topology/hosts</restURL>
+ </RESTCALL>
+</PARAMS>
diff --git a/TestON/tests/RCOnosSanity4nodesJ/RCOnosSanity4nodesJ.params b/TestON/tests/RCOnosSanity4nodesJ/RCOnosSanity4nodesJ.params
index 7fdbf88..f644d9f 100644
--- a/TestON/tests/RCOnosSanity4nodesJ/RCOnosSanity4nodesJ.params
+++ b/TestON/tests/RCOnosSanity4nodesJ/RCOnosSanity4nodesJ.params
@@ -1,5 +1,5 @@
<PARAMS>
- <testcases>1,2,3,31,67,6,7,6,7,4,6,7,5,6,7,41,6,7,5,6,7,66</testcases>
+ <testcases>1,2,3,31,6,7,6,7,4,6,7,6,7,5,6,7,6,7,41,6,7,6,7,5,6,7,6,7,66</testcases>
<tcpdump>
<intf>eth0</intf>
<port>port 6633</port>
diff --git a/TestON/tests/RCOnosSanity4nodesJ/RCOnosSanity4nodesJ.py b/TestON/tests/RCOnosSanity4nodesJ/RCOnosSanity4nodesJ.py
index a680ab4..f8cfca1 100644
--- a/TestON/tests/RCOnosSanity4nodesJ/RCOnosSanity4nodesJ.py
+++ b/TestON/tests/RCOnosSanity4nodesJ/RCOnosSanity4nodesJ.py
@@ -369,7 +369,7 @@
main.case("Bringing Link down... ")
result = main.Mininet1.link(END1=main.params['LINK']['begin'],END2=main.params['LINK']['end'],OPTION="down")
utilities.assert_equals(expect=main.TRUE,actual=result,onpass="Link DOWN!",onfail="Link not brought down...")
-
+ time.sleep(10)
strtTime = time.time()
result = main.ONOS1.check_status_report(main.params['RestIP'],main.params['NR_Switches'],str(int(main.params['NR_Links'])-2))
for i in range(10):