Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | """ |
| 3 | @package oft |
| 4 | |
| 5 | OpenFlow test framework top level script |
| 6 | |
Rich Lane | ea5060d | 2013-01-06 13:59:00 -0800 | [diff] [blame] | 7 | This script is the entry point for running OpenFlow tests using the OFT |
| 8 | framework. For usage information, see --help or the README. |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 9 | |
Rich Lane | ea5060d | 2013-01-06 13:59:00 -0800 | [diff] [blame] | 10 | To add a new command line option, edit both the config_default dictionary and |
| 11 | the config_setup function. The option's result will end up in the global |
| 12 | oftest.config dictionary. |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 13 | """ |
| 14 | |
| 15 | import sys |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 16 | import optparse |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 17 | from subprocess import Popen,PIPE |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 18 | import logging |
| 19 | import unittest |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 20 | import time |
Brandon Heller | 446c143 | 2010-04-01 12:43:27 -0700 | [diff] [blame] | 21 | import os |
Rich Lane | 6b452bc | 2012-07-09 16:52:21 -0700 | [diff] [blame] | 22 | import imp |
Rich Lane | 8592bec | 2012-09-03 09:06:59 -0700 | [diff] [blame] | 23 | import random |
Rich Lane | 5bd6cf9 | 2012-10-04 17:57:24 -0700 | [diff] [blame] | 24 | import signal |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 25 | import fnmatch |
Rich Lane | 2d6d482 | 2013-01-08 10:49:16 -0800 | [diff] [blame] | 26 | import copy |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 27 | |
Rich Lane | fadf345 | 2012-10-03 16:23:37 -0700 | [diff] [blame] | 28 | root_dir = os.path.dirname(os.path.realpath(__file__)) |
| 29 | |
| 30 | pydir = os.path.join(root_dir, 'src', 'python') |
Rich Lane | 3987804 | 2012-07-09 14:45:35 -0700 | [diff] [blame] | 31 | if os.path.exists(os.path.join(pydir, 'oftest')): |
| 32 | # Running from source tree |
| 33 | sys.path.insert(0, pydir) |
| 34 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 35 | import oftest |
| 36 | from oftest import config |
Rich Lane | e55abf7 | 2012-07-26 20:11:42 -0700 | [diff] [blame] | 37 | import oftest.ofutils |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 38 | import oftest.help_formatter |
Rich Lane | 3f7098c | 2013-03-12 10:28:32 -0700 | [diff] [blame] | 39 | import loxi |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 40 | |
Dan Talayco | 02eca0b | 2010-04-15 16:09:43 -0700 | [diff] [blame] | 41 | try: |
| 42 | import scapy.all as scapy |
| 43 | except: |
| 44 | try: |
| 45 | import scapy as scapy |
| 46 | except: |
| 47 | sys.exit("Need to install scapy for packet parsing") |
| 48 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 49 | ##@var DEBUG_LEVELS |
| 50 | # Map from strings to debugging levels |
| 51 | DEBUG_LEVELS = { |
| 52 | 'debug' : logging.DEBUG, |
| 53 | 'verbose' : logging.DEBUG, |
| 54 | 'info' : logging.INFO, |
| 55 | 'warning' : logging.WARNING, |
| 56 | 'warn' : logging.WARNING, |
| 57 | 'error' : logging.ERROR, |
| 58 | 'critical' : logging.CRITICAL |
| 59 | } |
| 60 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 61 | ##@var config_default |
| 62 | # The default configuration dictionary for OFT |
| 63 | config_default = { |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 64 | # Miscellaneous options |
| 65 | "list" : False, |
| 66 | "list_test_names" : False, |
| 67 | "allow_user" : False, |
| 68 | |
| 69 | # Test selection options |
Rich Lane | c76b09a | 2013-01-02 16:53:22 -0800 | [diff] [blame] | 70 | "test_spec" : "", |
Rich Lane | 1a08d23 | 2013-01-04 16:03:50 -0800 | [diff] [blame] | 71 | "test_file" : None, |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 72 | "test_dir" : os.path.join(root_dir, "tests"), |
| 73 | |
| 74 | # Switch connection options |
| 75 | "controller_host" : "0.0.0.0", # For passive bind |
| 76 | "controller_port" : 6633, |
| 77 | "switch_ip" : None, # If not none, actively connect to switch |
Rich Lane | 15f2632 | 2013-01-08 11:23:24 -0800 | [diff] [blame] | 78 | "platform" : "eth", |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 79 | "platform_args" : None, |
| 80 | "platform_dir" : os.path.join(root_dir, "platforms"), |
Rich Lane | 2d6d482 | 2013-01-08 10:49:16 -0800 | [diff] [blame] | 81 | "interfaces" : [], |
Rich Lane | 9fd0568 | 2013-01-10 15:30:38 -0800 | [diff] [blame] | 82 | "openflow_version" : "1.0", |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 83 | |
| 84 | # Logging options |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 85 | "log_file" : "oft.log", |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 86 | "log_append" : False, |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 87 | "debug" : "verbose", |
| 88 | |
| 89 | # Test behavior options |
| 90 | "relax" : False, |
Dan Talayco | d7c80d1 | 2012-04-03 15:20:57 -0700 | [diff] [blame] | 91 | "test_params" : "None", |
Rich Lane | 9a84a4f | 2012-07-17 12:27:42 -0700 | [diff] [blame] | 92 | "fail_skipped" : False, |
Rich Lane | e55abf7 | 2012-07-26 20:11:42 -0700 | [diff] [blame] | 93 | "default_timeout" : 2, |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 94 | "minsize" : 0, |
Rich Lane | 8592bec | 2012-09-03 09:06:59 -0700 | [diff] [blame] | 95 | "random_seed" : None, |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 96 | |
| 97 | # Other configuration |
Rich Lane | 15f2632 | 2013-01-08 11:23:24 -0800 | [diff] [blame] | 98 | "port_map" : {}, |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 99 | } |
| 100 | |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 101 | def config_setup(): |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 102 | """ |
| 103 | Set up the configuration including parsing the arguments |
| 104 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 105 | @return A pair (config, args) where config is an config |
| 106 | object and args is any additional arguments from the command line |
| 107 | """ |
| 108 | |
Rich Lane | 4113a58 | 2013-01-03 10:13:02 -0800 | [diff] [blame] | 109 | usage = "usage: %prog [options] (test|group)..." |
| 110 | |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 111 | description = """\ |
Rich Lane | 4113a58 | 2013-01-03 10:13:02 -0800 | [diff] [blame] | 112 | OFTest is a framework and set of tests for validating OpenFlow switches. |
| 113 | |
| 114 | The default configuration assumes that an OpenFlow 1.0 switch is attempting to |
| 115 | connect to a controller on the machine running OFTest, port 6633. Additionally, |
| 116 | the interfaces veth1, veth3, veth5, and veth7 should be connected to the switch's |
| 117 | dataplane. |
| 118 | |
| 119 | If no positional arguments are given then OFTest will run all tests that |
| 120 | depend only on standard OpenFlow 1.0. Otherwise each positional argument |
| 121 | is interpreted as either a test name or a test group name. The union of |
| 122 | these will be executed. To see what groups each test belongs to use the |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 123 | --list option. Tests and groups can be subtracted from the result by |
| 124 | prefixing them with the '^' character. |
Rich Lane | 4113a58 | 2013-01-03 10:13:02 -0800 | [diff] [blame] | 125 | """ |
| 126 | |
Rich Lane | 2d6d482 | 2013-01-08 10:49:16 -0800 | [diff] [blame] | 127 | # Parse --interface |
| 128 | def check_interface(option, opt, value): |
| 129 | try: |
| 130 | ofport, interface = value.split('@', 1) |
| 131 | ofport = int(ofport) |
| 132 | except ValueError: |
| 133 | raise optparse.OptionValueError("incorrect interface syntax (got %s, expected 'ofport@interface')" % repr(value)) |
| 134 | return (ofport, interface) |
| 135 | |
| 136 | class Option(optparse.Option): |
| 137 | TYPES = optparse.Option.TYPES + ("interface",) |
| 138 | TYPE_CHECKER = copy.copy(optparse.Option.TYPE_CHECKER) |
| 139 | TYPE_CHECKER["interface"] = check_interface |
| 140 | |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 141 | parser = optparse.OptionParser(version="%prog 0.1", |
| 142 | usage=usage, |
| 143 | description=description, |
Rich Lane | 2d6d482 | 2013-01-08 10:49:16 -0800 | [diff] [blame] | 144 | formatter=oftest.help_formatter.HelpFormatter(), |
| 145 | option_class=Option) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 146 | |
| 147 | # Set up default values |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 148 | parser.set_defaults(**config_default) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 149 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 150 | parser.add_option("--list", action="store_true", |
Brandon Heller | 824504e | 2010-04-01 12:21:37 -0700 | [diff] [blame] | 151 | help="List all tests and exit") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 152 | parser.add_option("--list-test-names", action='store_true', |
| 153 | help="List test names matching the test spec and exit") |
Rich Lane | ee57ad0 | 2012-07-13 15:40:36 -0700 | [diff] [blame] | 154 | parser.add_option("--allow-user", action="store_true", |
| 155 | help="Proceed even if oftest is not run as root") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 156 | |
| 157 | group = optparse.OptionGroup(parser, "Test selection options") |
| 158 | group.add_option("-T", "--test-spec", "--test-list", help="Tests to run, separated by commas") |
| 159 | group.add_option("-f", "--test-file", help="File of tests to run, one per line") |
| 160 | group.add_option("--test-dir", type="string", help="Directory containing tests") |
| 161 | parser.add_option_group(group) |
| 162 | |
| 163 | group = optparse.OptionGroup(parser, "Switch connection options") |
| 164 | group.add_option("-H", "--host", dest="controller_host", |
| 165 | help="IP address to listen on (default %default)") |
| 166 | group.add_option("-p", "--port", dest="controller_port", |
| 167 | type="int", help="Port number to listen on (default %default)") |
| 168 | group.add_option("-S", "--switch-ip", dest="switch_ip", |
| 169 | help="If set, actively connect to this switch by IP") |
| 170 | group.add_option("-P", "--platform", help="Platform module name (default %default)") |
| 171 | group.add_option("-a", "--platform-args", help="Custom arguments for the platform") |
| 172 | group.add_option("--platform-dir", type="string", help="Directory containing platform modules") |
Rich Lane | 2d6d482 | 2013-01-08 10:49:16 -0800 | [diff] [blame] | 173 | group.add_option("--interface", "-i", type="interface", dest="interfaces", metavar="INTERFACE", action="append", |
| 174 | help="Specify a OpenFlow port number and the dataplane interface to use. May be given multiple times. Example: 1@eth1") |
Rich Lane | 9fd0568 | 2013-01-10 15:30:38 -0800 | [diff] [blame] | 175 | group.add_option("--of-version", "-V", dest="openflow_version", choices=["1.0", "1.1", "1.2"], |
| 176 | help="OpenFlow version to use") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 177 | parser.add_option_group(group) |
| 178 | |
| 179 | group = optparse.OptionGroup(parser, "Logging options") |
| 180 | group.add_option("--log-file", |
| 181 | help="Name of log file, empty string to log to console (default %default)") |
| 182 | group.add_option("--log-append", action="store_true", |
| 183 | help="Do not delete log file if specified") |
| 184 | dbg_lvl_names = sorted(DEBUG_LEVELS.keys(), key=lambda x: DEBUG_LEVELS[x]) |
| 185 | group.add_option("--debug", choices=dbg_lvl_names, |
| 186 | help="Debug lvl: debug, info, warning, error, critical (default %default)") |
| 187 | group.add_option("-v", "--verbose", action="store_const", dest="debug", |
| 188 | const="verbose", help="Shortcut for --debug=verbose") |
| 189 | group.add_option("-q", "--quiet", action="store_const", dest="debug", |
| 190 | const="warning", help="Shortcut for --debug=warning") |
| 191 | parser.add_option_group(group) |
| 192 | |
| 193 | group = optparse.OptionGroup(parser, "Test behavior options") |
| 194 | group.add_option("--relax", action="store_true", |
| 195 | help="Relax packet match checks allowing other packets") |
| 196 | test_params_help = """Set test parameters: key=val;... (see --list) |
| 197 | """ |
| 198 | group.add_option("-t", "--test-params", help=test_params_help) |
| 199 | group.add_option("--fail-skipped", action="store_true", |
Rich Lane | 9a84a4f | 2012-07-17 12:27:42 -0700 | [diff] [blame] | 200 | help="Return failure if any test was skipped") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 201 | group.add_option("--default-timeout", type="int", |
Rich Lane | e55abf7 | 2012-07-26 20:11:42 -0700 | [diff] [blame] | 202 | help="Timeout in seconds for most operations") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 203 | group.add_option("--minsize", type="int", |
| 204 | help="Minimum allowable packet size on the dataplane.") |
| 205 | group.add_option("--random-seed", type="int", |
| 206 | help="Random number generator seed") |
| 207 | parser.add_option_group(group) |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 208 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 209 | # Might need this if other parsers want command line |
| 210 | # parser.allow_interspersed_args = False |
| 211 | (options, args) = parser.parse_args() |
| 212 | |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 213 | # Convert options from a Namespace to a plain dictionary |
| 214 | config = config_default.copy() |
| 215 | for key in config.keys(): |
| 216 | config[key] = getattr(options, key) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 217 | |
| 218 | return (config, args) |
| 219 | |
| 220 | def logging_setup(config): |
| 221 | """ |
| 222 | Set up logging based on config |
| 223 | """ |
Rich Lane | 71d887d | 2012-12-22 17:05:13 -0800 | [diff] [blame] | 224 | _format = "%(asctime)s.%(msecs)d %(name)-10s: %(levelname)-8s: %(message)s" |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 225 | _datefmt = "%H:%M:%S" |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 226 | _mode = config["log_append"] and "a" or "w" |
Jeffrey Townsend | edb12d3 | 2013-02-06 14:52:30 -0800 | [diff] [blame] | 227 | if config['log_file'] in [ "-", "stderr" ]: |
| 228 | config['log_file'] = None |
| 229 | logging.basicConfig(filename=config['log_file'], |
Dan Talayco | 69ca4d6 | 2012-11-15 11:50:22 -0800 | [diff] [blame] | 230 | filemode=_mode, |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 231 | level=DEBUG_LEVELS[config["debug"]], |
Dan Talayco | 88fc880 | 2010-03-07 11:37:52 -0800 | [diff] [blame] | 232 | format=_format, datefmt=_datefmt) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 233 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 234 | def load_test_modules(config): |
| 235 | """ |
| 236 | Load tests from the test_dir directory. |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 237 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 238 | Test cases are subclasses of unittest.TestCase |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 239 | |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 240 | Also updates the _groups member to include "standard" and |
| 241 | module test groups if appropriate. |
| 242 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 243 | @param config The oft configuration dictionary |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 244 | @returns A dictionary from test module names to tuples of |
| 245 | (module, dictionary from test names to test classes). |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 246 | """ |
| 247 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 248 | result = {} |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 249 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 250 | for root, dirs, filenames in os.walk(config["test_dir"]): |
| 251 | # Iterate over each python file |
| 252 | for filename in fnmatch.filter(filenames, '[!.]*.py'): |
| 253 | modname = os.path.splitext(os.path.basename(filename))[0] |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 254 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 255 | try: |
| 256 | if sys.modules.has_key(modname): |
| 257 | mod = sys.modules[modname] |
| 258 | else: |
| 259 | mod = imp.load_module(modname, *imp.find_module(modname, [root])) |
| 260 | except: |
| 261 | logging.warning("Could not import file " + filename) |
| 262 | raise |
Rich Lane | 520e415 | 2012-07-09 16:18:16 -0700 | [diff] [blame] | 263 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 264 | # Find all testcases defined in the module |
| 265 | tests = dict((k, v) for (k, v) in mod.__dict__.items() if type(v) == type and |
| 266 | issubclass(v, unittest.TestCase)) |
| 267 | if tests: |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 268 | for (testname, test) in tests.items(): |
| 269 | # Set default annotation values |
| 270 | if not hasattr(test, "_groups"): |
| 271 | test._groups = [] |
| 272 | if not hasattr(test, "_nonstandard"): |
| 273 | test._nonstandard = False |
| 274 | if not hasattr(test, "_disabled"): |
| 275 | test._disabled = False |
| 276 | |
| 277 | # Put test in its module's test group |
| 278 | if not test._disabled: |
| 279 | test._groups.append(modname) |
| 280 | |
| 281 | # Put test in the standard test group |
| 282 | if not test._disabled and not test._nonstandard: |
| 283 | test._groups.append("standard") |
| 284 | test._groups.append("all") # backwards compatibility |
| 285 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 286 | result[modname] = (mod, tests) |
Rich Lane | 520e415 | 2012-07-09 16:18:16 -0700 | [diff] [blame] | 287 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 288 | return result |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 289 | |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 290 | def prune_tests(test_specs, test_modules, version): |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 291 | """ |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 292 | Return tests matching the given test-specs and OpenFlow version |
Rich Lane | c76b09a | 2013-01-02 16:53:22 -0800 | [diff] [blame] | 293 | @param test_specs A list of group names or test names. |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 294 | @param version An OpenFlow version (e.g. "1.0") |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 295 | @param test_modules Same format as the output of load_test_modules. |
| 296 | @returns Same format as the output of load_test_modules. |
| 297 | """ |
| 298 | result = {} |
Rich Lane | c76b09a | 2013-01-02 16:53:22 -0800 | [diff] [blame] | 299 | for e in test_specs: |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 300 | matched = False |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 301 | |
| 302 | if e.startswith('^'): |
| 303 | negated = True |
| 304 | e = e[1:] |
| 305 | else: |
| 306 | negated = False |
| 307 | |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 308 | for (modname, (mod, tests)) in test_modules.items(): |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 309 | for (testname, test) in tests.items(): |
| 310 | if e in test._groups or e == "%s.%s" % (modname, testname): |
| 311 | result.setdefault(modname, (mod, {})) |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 312 | if not negated: |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 313 | if not hasattr(test, "_versions") or version in test._versions: |
| 314 | result[modname][1][testname] = test |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 315 | else: |
| 316 | if modname in result and testname in result[modname][1]: |
| 317 | del result[modname][1][testname] |
| 318 | if not result[modname][1]: |
| 319 | del result[modname] |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 320 | matched = True |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 321 | |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 322 | if not matched: |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 323 | die("test-spec element %s did not match any tests" % e) |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 324 | |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 325 | return result |
| 326 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 327 | def die(msg, exit_val=1): |
| 328 | print msg |
| 329 | logging.critical(msg) |
| 330 | sys.exit(exit_val) |
| 331 | |
Dan Talayco | 79f3608 | 2010-03-11 16:53:53 -0800 | [diff] [blame] | 332 | def _space_to(n, str): |
| 333 | """ |
| 334 | Generate a string of spaces to achieve width n given string str |
| 335 | If length of str >= n, return one space |
| 336 | """ |
| 337 | spaces = n - len(str) |
| 338 | if spaces > 0: |
| 339 | return " " * spaces |
| 340 | return " " |
| 341 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 342 | # |
| 343 | # Main script |
| 344 | # |
| 345 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 346 | # Setup global configuration |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 347 | (new_config, args) = config_setup() |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 348 | oftest.config.update(new_config) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 349 | |
Rich Lane | d7a85c4 | 2012-09-28 15:38:45 -0700 | [diff] [blame] | 350 | logging_setup(config) |
| 351 | logging.info("++++++++ " + time.asctime() + " ++++++++") |
| 352 | |
Rich Lane | 9fd0568 | 2013-01-10 15:30:38 -0800 | [diff] [blame] | 353 | # Pick an OpenFlow protocol module based on the configured version |
Rich Lane | 3f7098c | 2013-03-12 10:28:32 -0700 | [diff] [blame] | 354 | wire_versions = { |
| 355 | "1.0": 1, |
| 356 | "1.1": 2, |
| 357 | "1.2": 3, |
| 358 | } |
| 359 | sys.modules["ofp"] = loxi.protocol(wire_versions[config["openflow_version"]]) |
Rich Lane | 9fd0568 | 2013-01-10 15:30:38 -0800 | [diff] [blame] | 360 | |
| 361 | # HACK: testutils.py imports controller.py, which needs the ofp module |
| 362 | import oftest.testutils |
| 363 | |
Rich Lane | e284b6b | 2012-10-03 09:19:58 -0700 | [diff] [blame] | 364 | # Allow tests to import each other |
| 365 | sys.path.append(config["test_dir"]) |
| 366 | |
Rich Lane | c76b09a | 2013-01-02 16:53:22 -0800 | [diff] [blame] | 367 | test_specs = args |
| 368 | if config["test_spec"] != "": |
| 369 | print >> sys.stderr, "WARNING: The --test-spec option is deprecated" |
| 370 | test_specs += config["test_spec"].split(',') |
Rich Lane | 1a08d23 | 2013-01-04 16:03:50 -0800 | [diff] [blame] | 371 | if config["test_file"] != None: |
| 372 | with open(config["test_file"], 'r') as f: |
| 373 | for line in f: |
| 374 | line, _, _ = line.partition('#') # remove comments |
| 375 | line = line.strip() |
| 376 | if line: |
| 377 | test_specs.append(line) |
Rich Lane | c76b09a | 2013-01-02 16:53:22 -0800 | [diff] [blame] | 378 | if test_specs == []: |
| 379 | test_specs = ["standard"] |
| 380 | |
Rich Lane | d8e4548 | 2013-01-02 17:36:21 -0800 | [diff] [blame] | 381 | test_modules = load_test_modules(config) |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 382 | |
| 383 | # Check if test list is requested; display and exit if so |
| 384 | if config["list"]: |
Dan Talayco | 7f8dba8 | 2012-04-12 12:58:52 -0700 | [diff] [blame] | 385 | mod_count = 0 |
| 386 | test_count = 0 |
Rich Lane | 37f4211 | 2013-01-03 13:41:49 -0800 | [diff] [blame] | 387 | all_groups = set() |
Rich Lane | e811e7b | 2013-01-03 13:36:54 -0800 | [diff] [blame] | 388 | print """\ |
| 389 | Tests are shown grouped by module. If a test is in any groups beyond "standard" |
| 390 | and its module's group then they are shown in parentheses.""" |
| 391 | print |
| 392 | print """\ |
| 393 | Tests marked with '*' are non-standard and may require vendor extensions or |
| 394 | special switch configuration. These are not part of the "standard" test group.""" |
| 395 | print |
| 396 | print """\ |
| 397 | Tests marked with '!' are disabled because they are experimental, special-purpose, |
| 398 | or are too long to be run normally. These are not part of the "standard" test |
| 399 | group or their module's test group.""" |
| 400 | print |
| 401 | print "Tests marked (TP1) after name take --test-params including:" |
| 402 | print " 'vid=N;strip_vlan=bool;add_vlan=bool'" |
Rich Lane | e811e7b | 2013-01-03 13:36:54 -0800 | [diff] [blame] | 403 | print |
| 404 | print "Test List:" |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 405 | for (modname, (mod, tests)) in test_modules.items(): |
Dan Talayco | 7f8dba8 | 2012-04-12 12:58:52 -0700 | [diff] [blame] | 406 | mod_count += 1 |
Rich Lane | 80efd65 | 2013-01-02 14:05:20 -0800 | [diff] [blame] | 407 | desc = (mod.__doc__ or "No description").strip().split('\n')[0] |
Dan Talayco | 79f3608 | 2010-03-11 16:53:53 -0800 | [diff] [blame] | 408 | start_str = " Module " + mod.__name__ + ": " |
| 409 | print start_str + _space_to(22, start_str) + desc |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 410 | for (testname, test) in tests.items(): |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 411 | try: |
Rich Lane | 0f5b9c7 | 2013-01-02 14:05:20 -0800 | [diff] [blame] | 412 | desc = (test.__doc__ or "").strip() |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 413 | desc = desc.split('\n')[0] |
| 414 | except: |
| 415 | desc = "No description" |
Rich Lane | e811e7b | 2013-01-03 13:36:54 -0800 | [diff] [blame] | 416 | groups = set(test._groups) - set(["all", "standard", modname]) |
Rich Lane | 37f4211 | 2013-01-03 13:41:49 -0800 | [diff] [blame] | 417 | all_groups.update(test._groups) |
Rich Lane | e811e7b | 2013-01-03 13:36:54 -0800 | [diff] [blame] | 418 | if groups: |
| 419 | desc = "(%s) %s" % (",".join(groups), desc) |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 420 | if hasattr(test, "_versions"): |
| 421 | desc = "(%s) %s" % (",".join(sorted(test._versions)), desc) |
Rich Lane | e811e7b | 2013-01-03 13:36:54 -0800 | [diff] [blame] | 422 | start_str = " %s%s %s:" % (test._nonstandard and "*" or " ", |
| 423 | test._disabled and "!" or " ", |
| 424 | testname) |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 425 | if len(start_str) > 22: |
| 426 | desc = "\n" + _space_to(22, "") + desc |
Dan Talayco | 79f3608 | 2010-03-11 16:53:53 -0800 | [diff] [blame] | 427 | print start_str + _space_to(22, start_str) + desc |
Dan Talayco | 7f8dba8 | 2012-04-12 12:58:52 -0700 | [diff] [blame] | 428 | test_count += 1 |
Dan Talayco | 79f3608 | 2010-03-11 16:53:53 -0800 | [diff] [blame] | 429 | print |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 430 | print "%d modules shown with a total of %d tests" % \ |
| 431 | (mod_count, test_count) |
| 432 | print |
Rich Lane | 37f4211 | 2013-01-03 13:41:49 -0800 | [diff] [blame] | 433 | print "Test groups: %s" % (', '.join(sorted(all_groups))) |
| 434 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 435 | sys.exit(0) |
| 436 | |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 437 | test_modules = prune_tests(test_specs, test_modules, config["openflow_version"]) |
Rich Lane | d8e4548 | 2013-01-02 17:36:21 -0800 | [diff] [blame] | 438 | |
Jeffrey Townsend | 6614f97 | 2012-08-16 13:27:18 -0700 | [diff] [blame] | 439 | # Check if test list is requested; display and exit if so |
| 440 | if config["list_test_names"]: |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 441 | for (modname, (mod, tests)) in test_modules.items(): |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 442 | for (testname, test) in tests.items(): |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 443 | print "%s.%s" % (modname, testname) |
Jeffrey Townsend | 6614f97 | 2012-08-16 13:27:18 -0700 | [diff] [blame] | 444 | sys.exit(0) |
| 445 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 446 | # Generate the test suite |
| 447 | #@todo Decide if multiple suites are ever needed |
| 448 | suite = unittest.TestSuite() |
| 449 | |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 450 | for (modname, (mod, tests)) in test_modules.items(): |
| 451 | for (testname, test) in tests.items(): |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 452 | suite.addTest(test()) |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 453 | |
Rich Lane | 51590f6 | 2012-10-09 15:06:29 -0700 | [diff] [blame] | 454 | # Allow platforms to import each other |
| 455 | sys.path.append(config["platform_dir"]) |
| 456 | |
Rich Lane | 8aebc5e | 2012-09-25 17:57:53 -0700 | [diff] [blame] | 457 | # Load the platform module |
| 458 | platform_name = config["platform"] |
| 459 | logging.info("Importing platform: " + platform_name) |
| 460 | platform_mod = None |
| 461 | try: |
Rich Lane | 483e154 | 2012-10-05 09:29:39 -0700 | [diff] [blame] | 462 | platform_mod = imp.load_module(platform_name, *imp.find_module(platform_name, [config["platform_dir"]])) |
Rich Lane | 8aebc5e | 2012-09-25 17:57:53 -0700 | [diff] [blame] | 463 | except: |
| 464 | logging.warn("Failed to import " + platform_name + " platform module") |
| 465 | raise |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 466 | |
| 467 | try: |
Rich Lane | 8aebc5e | 2012-09-25 17:57:53 -0700 | [diff] [blame] | 468 | platform_mod.platform_config_update(config) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 469 | except: |
| 470 | logging.warn("Could not run platform host configuration") |
Rich Lane | ef403e5 | 2012-07-09 14:59:43 -0700 | [diff] [blame] | 471 | raise |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 472 | |
| 473 | if not config["port_map"]: |
Rich Lane | 8aebc5e | 2012-09-25 17:57:53 -0700 | [diff] [blame] | 474 | die("Interface port map was not defined by the platform. Exiting.") |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 475 | |
| 476 | logging.debug("Configuration: " + str(config)) |
| 477 | logging.info("OF port map: " + str(config["port_map"])) |
| 478 | |
Rich Lane | e55abf7 | 2012-07-26 20:11:42 -0700 | [diff] [blame] | 479 | oftest.ofutils.default_timeout = config["default_timeout"] |
Rich Lane | da3b5ad | 2012-10-03 09:05:32 -0700 | [diff] [blame] | 480 | oftest.testutils.MINSIZE = config['minsize'] |
Rich Lane | e55abf7 | 2012-07-26 20:11:42 -0700 | [diff] [blame] | 481 | |
Rich Lane | ee57ad0 | 2012-07-13 15:40:36 -0700 | [diff] [blame] | 482 | if os.getuid() != 0 and not config["allow_user"]: |
Brandon Heller | 446c143 | 2010-04-01 12:43:27 -0700 | [diff] [blame] | 483 | print "ERROR: Super-user privileges required. Please re-run with " \ |
| 484 | "sudo or as root." |
Rich Lane | d1d9c28 | 2012-10-04 22:07:10 -0700 | [diff] [blame] | 485 | sys.exit(1) |
Brandon Heller | 446c143 | 2010-04-01 12:43:27 -0700 | [diff] [blame] | 486 | |
Rich Lane | 8592bec | 2012-09-03 09:06:59 -0700 | [diff] [blame] | 487 | if config["random_seed"] is not None: |
| 488 | logging.info("Random seed: %d" % config["random_seed"]) |
| 489 | random.seed(config["random_seed"]) |
| 490 | |
Rich Lane | 5bd6cf9 | 2012-10-04 17:57:24 -0700 | [diff] [blame] | 491 | # Remove python's signal handler which raises KeyboardError. Exiting from an |
| 492 | # exception waits for all threads to terminate which might not happen. |
| 493 | signal.signal(signal.SIGINT, signal.SIG_DFL) |
Dan Talayco | ac25cf3 | 2010-07-20 14:08:28 -0700 | [diff] [blame] | 494 | |
| 495 | if __name__ == "__main__": |
Rich Lane | 2c7812c | 2012-12-27 17:52:23 -0800 | [diff] [blame] | 496 | # Set up the dataplane |
| 497 | oftest.dataplane_instance = oftest.dataplane.DataPlane(config) |
| 498 | for of_port, ifname in config["port_map"].items(): |
| 499 | oftest.dataplane_instance.port_add(ifname, of_port) |
| 500 | |
Dan Talayco | ac25cf3 | 2010-07-20 14:08:28 -0700 | [diff] [blame] | 501 | logging.info("*** TEST RUN START: " + time.asctime()) |
Rich Lane | 68edb3d | 2013-01-04 17:00:26 -0800 | [diff] [blame] | 502 | result = unittest.TextTestRunner(verbosity=2).run(suite) |
Rich Lane | da3b5ad | 2012-10-03 09:05:32 -0700 | [diff] [blame] | 503 | if oftest.testutils.skipped_test_count > 0: |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 504 | ts = " tests" |
Rich Lane | da3b5ad | 2012-10-03 09:05:32 -0700 | [diff] [blame] | 505 | if oftest.testutils.skipped_test_count == 1: ts = " test" |
| 506 | logging.info("Skipped " + str(oftest.testutils.skipped_test_count) + ts) |
| 507 | print("Skipped " + str(oftest.testutils.skipped_test_count) + ts) |
Dan Talayco | ac25cf3 | 2010-07-20 14:08:28 -0700 | [diff] [blame] | 508 | logging.info("*** TEST RUN END : " + time.asctime()) |
Rich Lane | 2c7812c | 2012-12-27 17:52:23 -0800 | [diff] [blame] | 509 | |
| 510 | # Shutdown the dataplane |
| 511 | oftest.dataplane_instance.kill() |
| 512 | oftest.dataplane_instance = None |
| 513 | |
Rich Lane | 50d42eb | 2012-07-16 11:57:03 -0700 | [diff] [blame] | 514 | if result.failures or result.errors: |
Shudong Zhou | d895fcb | 2012-08-01 19:09:55 -0700 | [diff] [blame] | 515 | # exit(1) hangs sometimes |
| 516 | os._exit(1) |
Rich Lane | da3b5ad | 2012-10-03 09:05:32 -0700 | [diff] [blame] | 517 | if oftest.testutils.skipped_test_count > 0 and config["fail_skipped"]: |
Shudong Zhou | d895fcb | 2012-08-01 19:09:55 -0700 | [diff] [blame] | 518 | os._exit(1) |