blob: 5718c665e82eac64646feb2b621f5f95061e3696 [file] [log] [blame]
Ken Chiangd6f5f862012-09-28 15:40:33 -07001"""
2Connection test cases
3
4"""
5
6import time
Ken Chiangd6f5f862012-09-28 15:40:33 -07007import sys
8import logging
9
10import unittest
11import random
12
Rich Lane477f4812012-10-04 22:49:00 -070013from oftest import config
Ken Chiangd6f5f862012-09-28 15:40:33 -070014import oftest.controller as controller
15import oftest.cstruct as ofp
16import oftest.message as message
17import oftest.dataplane as dataplane
18import oftest.action as action
19
Rich Laneda3b5ad2012-10-03 09:05:32 -070020from oftest.testutils import *
Ken Chiangd6f5f862012-09-28 15:40:33 -070021
Ken Chiangd6f5f862012-09-28 15:40:33 -070022class BaseHandshake(unittest.TestCase):
23 """
24 Base handshake case to set up controller, but do not send hello.
25 """
26
Rich Laned1d9c282012-10-04 22:07:10 -070027 priority = -1
Ken Chiangadc950f2012-10-05 13:50:03 -070028 controllers = []
29 default_timeout = 2
30
Ken Chiangd6f5f862012-09-28 15:40:33 -070031 def controllerSetup(self, host, port):
Ken Chiangadc950f2012-10-05 13:50:03 -070032 con = controller.Controller(host=host,port=port)
Ken Chiangd6f5f862012-09-28 15:40:33 -070033
34 # clean_shutdown should be set to False to force quit app
35 self.clean_shutdown = True
36 # disable initial hello so hello is under control of test
Ken Chiangadc950f2012-10-05 13:50:03 -070037 con.initial_hello = False
Ken Chiangd6f5f862012-09-28 15:40:33 -070038
Ken Chiangadc950f2012-10-05 13:50:03 -070039 con.start()
40 self.controllers.append(con)
Ken Chiangd6f5f862012-09-28 15:40:33 -070041
42 def setUp(self):
Rich Lane9a003812012-10-04 17:17:59 -070043 logging.info("** START TEST CASE " + str(self))
Ken Chiangd6f5f862012-09-28 15:40:33 -070044
Ken Chiange875baf2012-10-09 15:24:40 -070045 self.default_timeout = test_param_get('default_timeout',
46 default=2)
Ken Chiangd6f5f862012-09-28 15:40:33 -070047
Ken Chiangd6f5f862012-09-28 15:40:33 -070048 def tearDown(self):
Rich Lane9a003812012-10-04 17:17:59 -070049 logging.info("** END TEST CASE " + str(self))
Ken Chiangadc950f2012-10-05 13:50:03 -070050 for con in self.controllers:
51 con.shutdown()
52 if self.clean_shutdown:
53 con.join()
Ken Chiangd6f5f862012-09-28 15:40:33 -070054
55 def runTest(self):
56 # do nothing in the base case
57 pass
58
59 def assertTrue(self, cond, msg):
60 if not cond:
Rich Lane9a003812012-10-04 17:17:59 -070061 logging.error("** FAILED ASSERTION: " + msg)
Ken Chiangd6f5f862012-09-28 15:40:33 -070062 unittest.TestCase.assertTrue(self, cond, msg)
63
Ken Chiangd6f5f862012-09-28 15:40:33 -070064class HandshakeNoHello(BaseHandshake):
Ken Chiang35a74372012-10-01 15:39:25 -070065 """
66 TCP connect to switch, but do not sent hello,
67 and wait for disconnect.
68 """
Ken Chiangd6f5f862012-09-28 15:40:33 -070069 def runTest(self):
Rich Lane477f4812012-10-04 22:49:00 -070070 self.controllerSetup(config["controller_host"],
71 config["controller_port"])
Ken Chiangadc950f2012-10-05 13:50:03 -070072 self.controllers[0].connect(self.default_timeout)
Ken Chiangd6f5f862012-09-28 15:40:33 -070073
Rich Lane9a003812012-10-04 17:17:59 -070074 logging.info("TCP Connected " +
Ken Chiange875baf2012-10-09 15:24:40 -070075 str(self.controllers[0].switch_addr))
Rich Lane9a003812012-10-04 17:17:59 -070076 logging.info("Hello not sent, waiting for timeout")
Ken Chiangd6f5f862012-09-28 15:40:33 -070077
78 # wait for controller to die
Ken Chiangadc950f2012-10-05 13:50:03 -070079 self.assertTrue(self.controllers[0].wait_disconnected(timeout=10),
80 "Not notified of controller disconnect")
Ken Chiangd6f5f862012-09-28 15:40:33 -070081
82class HandshakeNoFeaturesRequest(BaseHandshake):
Ken Chiang35a74372012-10-01 15:39:25 -070083 """
84 TCP connect to switch, send hello, but do not send features request,
85 and wait for disconnect.
86 """
Ken Chiangd6f5f862012-09-28 15:40:33 -070087 def runTest(self):
Rich Lane477f4812012-10-04 22:49:00 -070088 self.controllerSetup(config["controller_host"],
89 config["controller_port"])
Ken Chiangadc950f2012-10-05 13:50:03 -070090 self.controllers[0].connect(self.default_timeout)
Ken Chiangd6f5f862012-09-28 15:40:33 -070091
Rich Lane9a003812012-10-04 17:17:59 -070092 logging.info("TCP Connected " +
Ken Chiange875baf2012-10-09 15:24:40 -070093 str(self.controllers[0].switch_addr))
Rich Lane9a003812012-10-04 17:17:59 -070094 logging.info("Sending hello")
Ken Chiangadc950f2012-10-05 13:50:03 -070095 self.controllers[0].message_send(message.hello())
Ken Chiangd6f5f862012-09-28 15:40:33 -070096
Rich Lane9a003812012-10-04 17:17:59 -070097 logging.info("Features request not sent, waiting for timeout")
Ken Chiangd6f5f862012-09-28 15:40:33 -070098
99 # wait for controller to die
Ken Chiangadc950f2012-10-05 13:50:03 -0700100 self.assertTrue(self.controllers[0].wait_disconnected(timeout=10),
101 "Not notified of controller disconnect")
Ken Chiangd6f5f862012-09-28 15:40:33 -0700102
Ken Chiang9c93e672012-12-18 12:00:14 -0800103class CompleteHandshake(BaseHandshake):
Ken Chiang35a74372012-10-01 15:39:25 -0700104 """
Ken Chiang9c93e672012-12-18 12:00:14 -0800105 Set up multiple controllers and complete handshake, but otherwise do nothing.
Ken Chiang35a74372012-10-01 15:39:25 -0700106 """
Rich Laned1d9c282012-10-04 22:07:10 -0700107
108 priority = -1
109
Ken Chiang9c93e672012-12-18 12:00:14 -0800110 def buildControllerList(self):
111 # controller_list is a list of IP:port tuples
112 con_list = test_param_get('controller_list')
113 if con_list is not None:
114 self.controller_list = []
115 for controller in con_list:
116 ip,portstr = controller.split(':')
117 try:
118 port = int(portstr)
119 except:
120 self.assertTrue(0, "failure converting port " +
121 portstr + " to integer")
122 self.controller_list.append( (ip, int(port)) )
123 else:
124 self.controller_list = [(config["controller_host"],
125 config["controller_port"])]
Ken Chiang35a74372012-10-01 15:39:25 -0700126
Ken Chiang9c93e672012-12-18 12:00:14 -0800127 def __init__(self, keep_alive=True, cxn_cycles=5,
128 controller_timeout=-1, hello_timeout=5,
129 features_req_timeout=5, disconnected_timeout=3):
130 BaseHandshake.__init__(self)
131 self.buildControllerList()
132 self.keep_alive = keep_alive
133 self.cxn_cycles = test_param_get('cxn_cycles') \
134 or cxn_cycles
135 self.controller_timeout = test_param_get('controller_timeout') \
136 or controller_timeout
137 self.hello_timeout = test_param_get('hello_timeout') \
138 or hello_timeout
139 self.features_req_timeout = test_param_get('features_req_timeout') \
140 or features_req_timeout
141 self.disconnected_timeout = test_param_get('disconnected_timeout') \
142 or disconnected_timeout
143
144 def runTest(self):
145 for conspec in self.controller_list:
146 self.controllerSetup(conspec[0], conspec[1])
147 for i in range(len(self.controller_list)):
Ken Chiang77173992012-10-30 15:44:39 -0700148 self.controllers[i].cstate = 0
Ken Chiang9c93e672012-12-18 12:00:14 -0800149 self.controllers[i].keep_alive = self.keep_alive
Ken Chiang74be4722012-12-21 13:07:03 -0800150 self.controllers[i].saved_switch_addr = None
Ken Chiang77173992012-10-30 15:44:39 -0700151 tick = 0.1 # time period in seconds at which controllers are handled
Ken Chiang35a74372012-10-01 15:39:25 -0700152
Ken Chiang9c93e672012-12-18 12:00:14 -0800153 disconnected_count = 0
154 cycle = 0
Ken Chiangadc950f2012-10-05 13:50:03 -0700155 while True:
Ken Chiang9c93e672012-12-18 12:00:14 -0800156 states = []
Ken Chiangadc950f2012-10-05 13:50:03 -0700157 for con in self.controllers:
Ken Chiang77173992012-10-30 15:44:39 -0700158 condesc = con.host + ":" + str(con.port) + ": "
159 logging.debug("Checking " + condesc)
Ken Chiang35a74372012-10-01 15:39:25 -0700160
Ken Chiang74be4722012-12-21 13:07:03 -0800161 if con.switch_socket:
162 if con.switch_addr != con.saved_switch_addr:
163 con.saved_switch_addr = con.switch_addr
164 con.cstate = 0
165
Ken Chiang77173992012-10-30 15:44:39 -0700166 if con.cstate == 0:
167 logging.info(condesc + "Sending hello to " +
168 str(con.switch_addr))
169 con.message_send(message.hello())
170 con.cstate = 1
171 con.count = 0
172 elif con.cstate == 1:
173 reply, pkt = con.poll(exp_msg=ofp.OFPT_HELLO,
174 timeout=0)
175 if reply is not None:
176 logging.info(condesc +
177 "Hello received from " +
178 str(con.switch_addr))
179 con.cstate = 2
180 else:
181 con.count = con.count + 1
182 # fall back to previous state on timeout
183 if con.count >= self.hello_timeout/tick:
184 logging.info(condesc +
185 "Timeout hello from " +
186 str(con.switch_addr))
187 con.cstate = 0
188 elif con.cstate == 2:
189 logging.info(condesc + "Sending features request to " +
190 str(con.switch_addr))
191 con.message_send(message.features_request())
192 con.cstate = 3
193 con.count = 0
194 elif con.cstate == 3:
195 reply, pkt = con.poll(exp_msg=ofp.OFPT_FEATURES_REPLY,
196 timeout=0)
197 if reply is not None:
198 logging.info(condesc +
199 "Features request received from " +
200 str(con.switch_addr))
201 con.cstate = 4
202 con.count = 0
Ken Chiang9c93e672012-12-18 12:00:14 -0800203 cycle = cycle + 1
Ken Chiang74be4722012-12-21 13:07:03 -0800204 logging.info("Cycle " + str(cycle))
Ken Chiang77173992012-10-30 15:44:39 -0700205 else:
206 con.count = con.count + 1
207 # fall back to previous state on timeout
208 if con.count >= self.features_req_timeout/tick:
209 logging.info(condesc +
210 "Timeout features request from " +
211 str(con.switch_addr))
212 con.cstate = 2
213 elif con.cstate == 4:
214 if (self.controller_timeout < 0 or
215 con.count < self.controller_timeout/tick):
216 logging.debug(condesc +
217 "Maintaining connection to " +
218 str(con.switch_addr))
219 con.count = con.count + 1
220 else:
221 logging.info(condesc +
222 "Disconnecting from " +
223 str(con.switch_addr))
224 con.disconnect()
225 con.cstate = 0
226 else:
227 con.cstate = 0
Ken Chiang9c93e672012-12-18 12:00:14 -0800228
229 states.append(con.cstate)
Ken Chiang77173992012-10-30 15:44:39 -0700230
Ken Chiang9c93e672012-12-18 12:00:14 -0800231 logging.debug("Cycle " + str(cycle) +
232 ", states " + str(states) +
233 ", disconnected_count " + str(disconnected_count))
234 if 4 in states:
235 disconnected_count = 0
236 else:
237 disconnected_count = disconnected_count + 1
238 if cycle != 0:
239 self.assertTrue(disconnected_count < self.disconnected_timeout/tick,
240 "Timeout expired connecting to controller")
241 else:
242 # on first cycle, allow more time for initial connect
243 self.assertTrue(disconnected_count < 2*self.disconnected_timeout/tick,
244 "Timeout expired connecting to controller on init")
245
246 if cycle > self.cxn_cycles:
247 break
Ken Chiang77173992012-10-30 15:44:39 -0700248 time.sleep(tick)
Ken Chiang9c93e672012-12-18 12:00:14 -0800249
250class HandshakeAndKeepalive(CompleteHandshake):
251 """
252 Complete handshake and respond to echo request, but otherwise do nothing.
253 Good for manual testing.
254 """
255
256 priority = -1
257
258 def __init__(self):
259 CompleteHandshake.__init__(self, keep_alive=True)
260
261class HandshakeNoEcho(CompleteHandshake):
262 """
263 Complete handshake, but otherwise do nothing, and do not respond to echo.
264 """
265
266 priority = -1
267
268 def __init__(self):
269 CompleteHandshake.__init__(self, keep_alive=False)
270
271class HandshakeAndDrop(CompleteHandshake):
272 """
273 Complete handshake, but otherwise do nothing, and drop connection after a while.
274 """
275
276 priority = -1
277
278 def __init__(self):
279 CompleteHandshake.__init__(self, keep_alive=True, controller_timeout=10)
280