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 | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 103 | class HandshakeAndKeepalive(BaseHandshake): |
| 104 | """ |
| 105 | Complete handshake and respond to echo request, but otherwise do nothing. |
| 106 | Good for manual testing. |
| 107 | """ |
Rich Lane | d1d9c28 | 2012-10-04 22:07:10 -0700 | [diff] [blame] | 108 | |
| 109 | priority = -1 |
| 110 | |
Ken Chiang | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 111 | def runTest(self): |
Ken Chiang | e875baf | 2012-10-09 15:24:40 -0700 | [diff] [blame] | 112 | self.num_controllers = test_param_get('num_controllers', default=1) |
Ken Chiang | 265fc49 | 2012-10-09 16:16:18 -0700 | [diff] [blame] | 113 | self.controller_timeout = test_param_get('controller_timeout', |
| 114 | default=-1) |
Ken Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 115 | self.hello_timeout = test_param_get('hello_timeout', |
| 116 | default=5) |
| 117 | self.features_req_timeout = test_param_get('features_req_timeout', |
| 118 | default=5) |
Ken Chiang | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 119 | |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 120 | for i in range(self.num_controllers): |
Ken Chiang | e875baf | 2012-10-09 15:24:40 -0700 | [diff] [blame] | 121 | self.controllerSetup(config["controller_host"], |
| 122 | config["controller_port"]+i) |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 123 | for i in range(self.num_controllers): |
Ken Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 124 | self.controllers[i].cstate = 0 |
| 125 | self.controllers[i].keep_alive = True |
| 126 | tick = 0.1 # time period in seconds at which controllers are handled |
Ken Chiang | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 127 | |
Ken Chiang | adc950f | 2012-10-05 13:50:03 -0700 | [diff] [blame] | 128 | while True: |
| 129 | for con in self.controllers: |
Ken Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 130 | condesc = con.host + ":" + str(con.port) + ": " |
| 131 | logging.debug("Checking " + condesc) |
Ken Chiang | 35a7437 | 2012-10-01 15:39:25 -0700 | [diff] [blame] | 132 | |
Ken Chiang | 7717399 | 2012-10-30 15:44:39 -0700 | [diff] [blame] | 133 | if con.switch_socket: |
| 134 | if con.cstate == 0: |
| 135 | logging.info(condesc + "Sending hello to " + |
| 136 | str(con.switch_addr)) |
| 137 | con.message_send(message.hello()) |
| 138 | con.cstate = 1 |
| 139 | con.count = 0 |
| 140 | elif con.cstate == 1: |
| 141 | reply, pkt = con.poll(exp_msg=ofp.OFPT_HELLO, |
| 142 | timeout=0) |
| 143 | if reply is not None: |
| 144 | logging.info(condesc + |
| 145 | "Hello received from " + |
| 146 | str(con.switch_addr)) |
| 147 | con.cstate = 2 |
| 148 | else: |
| 149 | con.count = con.count + 1 |
| 150 | # fall back to previous state on timeout |
| 151 | if con.count >= self.hello_timeout/tick: |
| 152 | logging.info(condesc + |
| 153 | "Timeout hello from " + |
| 154 | str(con.switch_addr)) |
| 155 | con.cstate = 0 |
| 156 | elif con.cstate == 2: |
| 157 | logging.info(condesc + "Sending features request to " + |
| 158 | str(con.switch_addr)) |
| 159 | con.message_send(message.features_request()) |
| 160 | con.cstate = 3 |
| 161 | con.count = 0 |
| 162 | elif con.cstate == 3: |
| 163 | reply, pkt = con.poll(exp_msg=ofp.OFPT_FEATURES_REPLY, |
| 164 | timeout=0) |
| 165 | if reply is not None: |
| 166 | logging.info(condesc + |
| 167 | "Features request received from " + |
| 168 | str(con.switch_addr)) |
| 169 | con.cstate = 4 |
| 170 | con.count = 0 |
| 171 | else: |
| 172 | con.count = con.count + 1 |
| 173 | # fall back to previous state on timeout |
| 174 | if con.count >= self.features_req_timeout/tick: |
| 175 | logging.info(condesc + |
| 176 | "Timeout features request from " + |
| 177 | str(con.switch_addr)) |
| 178 | con.cstate = 2 |
| 179 | elif con.cstate == 4: |
| 180 | if (self.controller_timeout < 0 or |
| 181 | con.count < self.controller_timeout/tick): |
| 182 | logging.debug(condesc + |
| 183 | "Maintaining connection to " + |
| 184 | str(con.switch_addr)) |
| 185 | con.count = con.count + 1 |
| 186 | else: |
| 187 | logging.info(condesc + |
| 188 | "Disconnecting from " + |
| 189 | str(con.switch_addr)) |
| 190 | con.disconnect() |
| 191 | con.cstate = 0 |
| 192 | else: |
| 193 | con.cstate = 0 |
| 194 | |
| 195 | time.sleep(tick) |