Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 1 | """ |
| 2 | Connection test cases |
| 3 | |
| 4 | """ |
| 5 | |
| 6 | import time |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 7 | import sys |
| 8 | import logging |
| 9 | |
| 10 | import unittest |
| 11 | import random |
| 12 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 13 | from oftest import config |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 14 | import oftest.controller as controller |
| 15 | import oftest.cstruct as ofp |
| 16 | import oftest.message as message |
| 17 | import oftest.dataplane as dataplane |
| 18 | import oftest.action as action |
| 19 | |
Rich Lane | da3b5ad | 2012-10-03 09:05:32 -0700 | [diff] [blame] | 20 | from oftest.testutils import * |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 21 | |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 22 | class BaseHandshake(unittest.TestCase): |
| 23 | """ |
| 24 | Base handshake case to set up controller, but do not send hello. |
| 25 | """ |
| 26 | |
Rich Lane | d1d9c28 | 2012-10-04 22:07:10 -0700 | [diff] [blame] | 27 | priority = -1 |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 28 | controllers = [] |
| 29 | default_timeout = 2 |
| 30 | |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 31 | def controllerSetup(self, host, port): |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 32 | con = controller.Controller(host=host,port=port) |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 33 | |
| 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 Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 37 | con.initial_hello = False |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 38 | |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 39 | con.start() |
| 40 | self.controllers.append(con) |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 41 | |
| 42 | def setUp(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 43 | logging.info("** START TEST CASE " + str(self)) |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 44 | |
Ken Chiang | e875baf | 2012-10-09 15:24:40 -0700 | [diff] [blame] | 45 | self.default_timeout = test_param_get('default_timeout', |
| 46 | default=2) |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 47 | |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 48 | def tearDown(self): |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 49 | logging.info("** END TEST CASE " + str(self)) |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 50 | for con in self.controllers: |
| 51 | con.shutdown() |
| 52 | if self.clean_shutdown: |
| 53 | con.join() |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 54 | |
| 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 Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 61 | logging.error("** FAILED ASSERTION: " + msg) |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 62 | unittest.TestCase.assertTrue(self, cond, msg) |
| 63 | |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 64 | class HandshakeNoHello(BaseHandshake): |
Ken Chiang | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 65 | """ |
| 66 | TCP connect to switch, but do not sent hello, |
| 67 | and wait for disconnect. |
| 68 | """ |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 69 | def runTest(self): |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 70 | self.controllerSetup(config["controller_host"], |
| 71 | config["controller_port"]) |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 72 | self.controllers[0].connect(self.default_timeout) |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 73 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 74 | logging.info("TCP Connected " + |
Ken Chiang | e875baf | 2012-10-09 15:24:40 -0700 | [diff] [blame] | 75 | str(self.controllers[0].switch_addr)) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 76 | logging.info("Hello not sent, waiting for timeout") |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 77 | |
| 78 | # wait for controller to die |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 79 | self.assertTrue(self.controllers[0].wait_disconnected(timeout=10), |
| 80 | "Not notified of controller disconnect") |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 81 | |
| 82 | class HandshakeNoFeaturesRequest(BaseHandshake): |
Ken Chiang | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 83 | """ |
| 84 | TCP connect to switch, send hello, but do not send features request, |
| 85 | and wait for disconnect. |
| 86 | """ |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 87 | def runTest(self): |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 88 | self.controllerSetup(config["controller_host"], |
| 89 | config["controller_port"]) |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 90 | self.controllers[0].connect(self.default_timeout) |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 91 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 92 | logging.info("TCP Connected " + |
Ken Chiang | e875baf | 2012-10-09 15:24:40 -0700 | [diff] [blame] | 93 | str(self.controllers[0].switch_addr)) |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 94 | logging.info("Sending hello") |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 95 | self.controllers[0].message_send(message.hello()) |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 96 | |
Rich Lane | 9a00381 | 2012-10-04 17:17:59 -0700 | [diff] [blame] | 97 | logging.info("Features request not sent, waiting for timeout") |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 98 | |
| 99 | # wait for controller to die |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 100 | self.assertTrue(self.controllers[0].wait_disconnected(timeout=10), |
| 101 | "Not notified of controller disconnect") |
Ken Chiang | d6f5f86 | 2012-09-28 15:40:33 -0700 | [diff] [blame] | 102 | |
Ken Chiang | 9c93e67 | 2012-12-18 12:00:14 -0800 | [diff] [blame] | 103 | class CompleteHandshake(BaseHandshake): |
Ken Chiang | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 104 | """ |
Ken Chiang | 9c93e67 | 2012-12-18 12:00:14 -0800 | [diff] [blame] | 105 | Set up multiple controllers and complete handshake, but otherwise do nothing. |
Ken Chiang | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 106 | """ |
Rich Lane | d1d9c28 | 2012-10-04 22:07:10 -0700 | [diff] [blame] | 107 | |
| 108 | priority = -1 |
| 109 | |
Ken Chiang | 9c93e67 | 2012-12-18 12:00:14 -0800 | [diff] [blame] | 110 | 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 Chiang | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 126 | |
Ken Chiang | 9c93e67 | 2012-12-18 12:00:14 -0800 | [diff] [blame] | 127 | 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 Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 148 | self.controllers[i].cstate = 0 |
Ken Chiang | 9c93e67 | 2012-12-18 12:00:14 -0800 | [diff] [blame] | 149 | self.controllers[i].keep_alive = self.keep_alive |
Ken Chiang | 74be472 | 2012-12-21 13:07:03 -0800 | [diff] [blame] | 150 | self.controllers[i].saved_switch_addr = None |
Ken Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 151 | tick = 0.1 # time period in seconds at which controllers are handled |
Ken Chiang | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 152 | |
Ken Chiang | 9c93e67 | 2012-12-18 12:00:14 -0800 | [diff] [blame] | 153 | disconnected_count = 0 |
| 154 | cycle = 0 |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 155 | while True: |
Ken Chiang | 9c93e67 | 2012-12-18 12:00:14 -0800 | [diff] [blame] | 156 | states = [] |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 157 | for con in self.controllers: |
Ken Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 158 | condesc = con.host + ":" + str(con.port) + ": " |
| 159 | logging.debug("Checking " + condesc) |
Ken Chiang | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 160 | |
Ken Chiang | 74be472 | 2012-12-21 13:07:03 -0800 | [diff] [blame] | 161 | 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 Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 166 | 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 Chiang | 9c93e67 | 2012-12-18 12:00:14 -0800 | [diff] [blame] | 203 | cycle = cycle + 1 |
Ken Chiang | 74be472 | 2012-12-21 13:07:03 -0800 | [diff] [blame] | 204 | logging.info("Cycle " + str(cycle)) |
Ken Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 205 | 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 Chiang | 9c93e67 | 2012-12-18 12:00:14 -0800 | [diff] [blame] | 228 | |
| 229 | states.append(con.cstate) |
Ken Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 230 | |
Ken Chiang | 9c93e67 | 2012-12-18 12:00:14 -0800 | [diff] [blame] | 231 | 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 Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 248 | time.sleep(tick) |
Ken Chiang | 9c93e67 | 2012-12-18 12:00:14 -0800 | [diff] [blame] | 249 | |
| 250 | class 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 | |
| 261 | class 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 | |
| 271 | class 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 | |