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 | |
| 7 | This script is the entry point for running OpenFlow tests |
| 8 | using the OFT framework. |
| 9 | |
| 10 | The global configuration is passed around in a dictionary |
Brandon Heller | 88f709d | 2010-04-01 12:29:56 -0700 | [diff] [blame] | 11 | generally called config. The keys have the following |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 12 | significance. |
| 13 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 14 | <pre> |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 15 | platform : String identifying the target platform |
| 16 | controller_host : Host on which test controller is running (for sockets) |
| 17 | controller_port : Port on which test controller listens for switch cxn |
| 18 | port_count : (Optional) Number of ports in dataplane |
| 19 | base_of_port : (Optional) Base OpenFlow port number in dataplane |
| 20 | base_if_index : (Optional) Base OS network interface for dataplane |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 21 | test_dir : (TBD) Directory to search for test files (default .) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 22 | test_spec : (TBD) Specification of test(s) to run |
| 23 | log_file : Filename for test logging |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 24 | list : Boolean: List all tests and exit |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 25 | debug : String giving debug level (info, warning, error...) |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 26 | </pre> |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 27 | |
| 28 | See config_defaults below for the default values. |
| 29 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 30 | The following are stored in the config dictionary, but are not currently |
| 31 | configurable through the command line. |
| 32 | |
| 33 | <pre> |
| 34 | dbg_level : logging module value of debug level |
| 35 | port_map : Map of dataplane OpenFlow port to OS interface names |
| 36 | test_mod_map : Dictionary indexed by module names and whose value |
| 37 | is the module reference |
| 38 | all_tests : Dictionary indexed by module reference and whose |
| 39 | value is a list of functions in that module |
| 40 | </pre> |
| 41 | |
Dan Talayco | c24aaae | 2010-07-08 14:05:24 -0700 | [diff] [blame] | 42 | Each test may be assigned a priority by setting test_prio["TestName"] in |
| 43 | the respective module. For now, the only use of this is to avoid |
| 44 | automatic inclusion of tests into the default list. This is done by |
| 45 | setting the test_prio value less than 0. Eventually we may add ordering |
| 46 | of test execution by test priority. |
| 47 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 48 | To add a test to the system, either: edit an existing test case file (like |
| 49 | basic.py) to add a test class which inherits from unittest.TestCase (directly |
| 50 | or indirectly); or add a new file which includes a function definition |
| 51 | test_set_init(config). Preferably the file is in the same directory as existing |
| 52 | tests, though you can specify the directory on the command line. The file |
| 53 | should not be called "all" as that's reserved for the test-spec. |
| 54 | |
| 55 | If you add a new file, the test_set_init function should record the port |
| 56 | map object from the configuration along with whatever other configuration |
| 57 | information it may need. |
| 58 | |
| 59 | TBD: To add configuration to the system, first add an entry to config_default |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 60 | below. If you want this to be a command line parameter, edit config_setup |
| 61 | to add the option and default value to the parser. Then edit config_get |
| 62 | to make sure the option value gets copied into the configuration |
| 63 | structure (which then gets passed to everyone else). |
| 64 | |
| 65 | By convention, oft attempts to import the contents of a file by the |
| 66 | name of $platform.py into the local namespace. |
| 67 | |
| 68 | IMPORTANT: That file should define a function platform_config_update which |
| 69 | takes a configuration dictionary as an argument and updates it for the |
| 70 | current run. In particular, it should set up config["port_map"] with |
| 71 | the proper map from OF port numbers to OF interface names. |
| 72 | |
| 73 | You can add your own platform, say gp104, by adding a file gp104.py |
| 74 | that defines the function platform_config_update and then use the |
| 75 | parameter --platform=gp104 on the command line. |
| 76 | |
| 77 | If platform_config_update does not set config["port_map"], an attempt |
| 78 | is made to generate a default map via the function default_port_map_setup. |
| 79 | This will use "local" and "remote" for platform names if available |
| 80 | and generate a sequential map based on the values of base_of_port and |
| 81 | base_if_index in the configuration structure. |
| 82 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 83 | The current model for test sets is basic.py. The current convention is |
| 84 | that the test set should implement a function test_set_init which takes |
| 85 | an oft configuration dictionary and returns a unittest.TestSuite object. |
| 86 | Future test sets should do the same thing. |
| 87 | |
Dan Talayco | 52f6444 | 2010-03-03 15:32:41 -0800 | [diff] [blame] | 88 | Default setup: |
| 89 | |
| 90 | The default setup runs locally using veth pairs. To exercise this, |
| 91 | checkout and build an openflow userspace datapath. Then start it on |
| 92 | the local host: |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 93 | <pre> |
Dan Talayco | 52f6444 | 2010-03-03 15:32:41 -0800 | [diff] [blame] | 94 | sudo ~/openflow/regress/bin/veth_setup.pl |
| 95 | sudo ofdatapath -i veth0,veth2,veth4,veth6 punix:/tmp/ofd & |
| 96 | sudo ofprotocol unix:/tmp/ofd tcp:127.0.0.1 --fail=closed --max-backoff=1 & |
| 97 | |
| 98 | Next, run oft: |
| 99 | sudo ./oft --debug=info |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 100 | </pre> |
Dan Talayco | 52f6444 | 2010-03-03 15:32:41 -0800 | [diff] [blame] | 101 | |
| 102 | Examine oft.log if things don't work. |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 103 | |
Dan Talayco | 1a88c12 | 2010-03-07 22:00:20 -0800 | [diff] [blame] | 104 | @todo Support per-component debug levels (esp controller vs dataplane) |
| 105 | @todo Consider moving oft up a level |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 106 | |
Dan Talayco | 1a88c12 | 2010-03-07 22:00:20 -0800 | [diff] [blame] | 107 | Current test case setup: |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 108 | Files in this or sub directories (or later, directory specified on |
| 109 | command line) that contain a function test_set_init are considered test |
| 110 | files. |
| 111 | The function test_set_init examines the test_spec config variable |
| 112 | and generates a suite of tests. |
| 113 | Support a command line option --test_mod so that all tests in that |
| 114 | module will be run. |
| 115 | Support all to specify all tests from the module. |
| 116 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 117 | """ |
| 118 | |
| 119 | import sys |
| 120 | from optparse import OptionParser |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 121 | from subprocess import Popen,PIPE |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 122 | import logging |
| 123 | import unittest |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 124 | import time |
Brandon Heller | 446c143 | 2010-04-01 12:43:27 -0700 | [diff] [blame] | 125 | import os |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 126 | |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 127 | import testutils |
| 128 | |
Dan Talayco | 02eca0b | 2010-04-15 16:09:43 -0700 | [diff] [blame] | 129 | try: |
| 130 | import scapy.all as scapy |
| 131 | except: |
| 132 | try: |
| 133 | import scapy as scapy |
| 134 | except: |
| 135 | sys.exit("Need to install scapy for packet parsing") |
| 136 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 137 | ##@var DEBUG_LEVELS |
| 138 | # Map from strings to debugging levels |
| 139 | DEBUG_LEVELS = { |
| 140 | 'debug' : logging.DEBUG, |
| 141 | 'verbose' : logging.DEBUG, |
| 142 | 'info' : logging.INFO, |
| 143 | 'warning' : logging.WARNING, |
| 144 | 'warn' : logging.WARNING, |
| 145 | 'error' : logging.ERROR, |
| 146 | 'critical' : logging.CRITICAL |
| 147 | } |
| 148 | |
| 149 | _debug_default = "warning" |
| 150 | _debug_level_default = DEBUG_LEVELS[_debug_default] |
| 151 | |
| 152 | ##@var config_default |
| 153 | # The default configuration dictionary for OFT |
| 154 | config_default = { |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 155 | "param" : None, |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 156 | "platform" : "local", |
| 157 | "controller_host" : "127.0.0.1", |
| 158 | "controller_port" : 6633, |
| 159 | "port_count" : 4, |
| 160 | "base_of_port" : 1, |
| 161 | "base_if_index" : 1, |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 162 | "relax" : False, |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 163 | "test_spec" : "all", |
| 164 | "test_dir" : ".", |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 165 | "log_file" : "oft.log", |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 166 | "list" : False, |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 167 | "debug" : _debug_default, |
| 168 | "dbg_level" : _debug_level_default, |
Dan Talayco | ac25cf3 | 2010-07-20 14:08:28 -0700 | [diff] [blame] | 169 | "port_map" : {}, |
| 170 | "test_params" : "None" |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 171 | } |
| 172 | |
Dan Talayco | c24aaae | 2010-07-08 14:05:24 -0700 | [diff] [blame] | 173 | # Default test priority |
| 174 | TEST_PRIO_DEFAULT=100 |
| 175 | |
Dan Talayco | 1a88c12 | 2010-03-07 22:00:20 -0800 | [diff] [blame] | 176 | #@todo Set up a dict of config params so easier to manage: |
| 177 | # <param> <cmdline flags> <default value> <help> <optional parser> |
| 178 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 179 | # Map options to config structure |
| 180 | def config_get(opts): |
| 181 | "Convert options class to OFT configuration dictionary" |
| 182 | cfg = config_default.copy() |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 183 | for key in cfg.keys(): |
| 184 | cfg[key] = eval("opts." + key) |
| 185 | |
| 186 | # Special case checks |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 187 | if opts.debug not in DEBUG_LEVELS.keys(): |
| 188 | print "Warning: Bad value specified for debug level; using default" |
| 189 | opts.debug = _debug_default |
Dan Talayco | 02eca0b | 2010-04-15 16:09:43 -0700 | [diff] [blame] | 190 | if opts.verbose: |
| 191 | cfg["debug"] = "verbose" |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 192 | cfg["dbg_level"] = DEBUG_LEVELS[cfg["debug"]] |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 193 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 194 | return cfg |
| 195 | |
| 196 | def config_setup(cfg_dflt): |
| 197 | """ |
| 198 | Set up the configuration including parsing the arguments |
| 199 | |
| 200 | @param cfg_dflt The default configuration dictionary |
| 201 | @return A pair (config, args) where config is an config |
| 202 | object and args is any additional arguments from the command line |
| 203 | """ |
| 204 | |
| 205 | parser = OptionParser(version="%prog 0.1") |
| 206 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 207 | #@todo parse port map as option? |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 208 | # Set up default values |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 209 | for key in cfg_dflt.keys(): |
| 210 | eval("parser.set_defaults("+key+"=cfg_dflt['"+key+"'])") |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 211 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 212 | #@todo Add options via dictionary |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 213 | plat_help = """Set the platform type. Valid values include: |
| 214 | local: User space virtual ethernet pair setup |
| 215 | remote: Remote embedded Broadcom based switch |
Dan Talayco | 673e085 | 2010-03-06 23:09:23 -0800 | [diff] [blame] | 216 | Create a new_plat.py file and use --platform=new_plat on the command line |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 217 | """ |
| 218 | parser.add_option("-P", "--platform", help=plat_help) |
| 219 | parser.add_option("-H", "--host", dest="controller_host", |
| 220 | help="The IP/name of the test controller host") |
| 221 | parser.add_option("-p", "--port", dest="controller_port", |
| 222 | type="int", help="Port number of the test controller") |
Dan Talayco | 673e085 | 2010-03-06 23:09:23 -0800 | [diff] [blame] | 223 | test_list_help = """Indicate tests to run. Valid entries are "all" (the |
Dan Talayco | cfa172f | 2012-03-23 12:03:00 -0700 | [diff] [blame] | 224 | default) or a comma separated list of: |
| 225 | module Run all tests in the named module |
Dan Talayco | 673e085 | 2010-03-06 23:09:23 -0800 | [diff] [blame] | 226 | testcase Run tests in all modules with the name testcase |
| 227 | module.testcase Run the specific test case |
| 228 | """ |
| 229 | parser.add_option("--test-spec", "--test-list", help=test_list_help) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 230 | parser.add_option("--log-file", |
| 231 | help="Name of log file, empty string to log to console") |
| 232 | parser.add_option("--debug", |
| 233 | help="Debug lvl: debug, info, warning, error, critical") |
Dan Talayco | 02eca0b | 2010-04-15 16:09:43 -0700 | [diff] [blame] | 234 | parser.add_option("--port-count", type="int", |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 235 | help="Number of ports to use (optional)") |
Dan Talayco | 02eca0b | 2010-04-15 16:09:43 -0700 | [diff] [blame] | 236 | parser.add_option("--base-of-port", type="int", |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 237 | help="Base OpenFlow port number (optional)") |
Dan Talayco | 02eca0b | 2010-04-15 16:09:43 -0700 | [diff] [blame] | 238 | parser.add_option("--base-if-index", type="int", |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 239 | help="Base interface index number (optional)") |
| 240 | parser.add_option("--list", action="store_true", |
Brandon Heller | 824504e | 2010-04-01 12:21:37 -0700 | [diff] [blame] | 241 | help="List all tests and exit") |
Dan Talayco | 02eca0b | 2010-04-15 16:09:43 -0700 | [diff] [blame] | 242 | parser.add_option("--verbose", action="store_true", |
| 243 | help="Short cut for --debug=verbose") |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 244 | parser.add_option("--relax", action="store_true", |
| 245 | help="Relax packet match checks allowing other packets") |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 246 | parser.add_option("--param", type="int", |
| 247 | help="Parameter sent to test (for debugging)") |
Dan Talayco | ac25cf3 | 2010-07-20 14:08:28 -0700 | [diff] [blame] | 248 | parser.add_option("-t", "--test-params", |
Dan Talayco | f6e76c0 | 2012-03-23 10:56:12 -0700 | [diff] [blame] | 249 | help="""Set test parameters: key=val;... |
| 250 | NOTE: key MUST be a valid Python identifier, egr_count not egr-count |
| 251 | See --list""") |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 252 | # Might need this if other parsers want command line |
| 253 | # parser.allow_interspersed_args = False |
| 254 | (options, args) = parser.parse_args() |
| 255 | |
| 256 | config = config_get(options) |
| 257 | |
| 258 | return (config, args) |
| 259 | |
| 260 | def logging_setup(config): |
| 261 | """ |
| 262 | Set up logging based on config |
| 263 | """ |
| 264 | _format = "%(asctime)s %(name)-10s: %(levelname)-8s: %(message)s" |
| 265 | _datefmt = "%H:%M:%S" |
Dan Talayco | 88fc880 | 2010-03-07 11:37:52 -0800 | [diff] [blame] | 266 | logging.basicConfig(filename=config["log_file"], |
| 267 | level=config["dbg_level"], |
| 268 | format=_format, datefmt=_datefmt) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 269 | |
| 270 | def default_port_map_setup(config): |
| 271 | """ |
| 272 | Setup the OF port mapping based on config |
| 273 | @param config The OFT configuration structure |
| 274 | @return Port map dictionary |
| 275 | """ |
| 276 | if (config["base_of_port"] is None) or not config["port_count"]: |
| 277 | return None |
| 278 | port_map = {} |
| 279 | if config["platform"] == "local": |
| 280 | # For local, use every other veth port |
| 281 | for idx in range(config["port_count"]): |
| 282 | port_map[config["base_of_port"] + idx] = "veth" + \ |
| 283 | str(config["base_if_index"] + (2 * idx)) |
| 284 | elif config["platform"] == "remote": |
| 285 | # For remote, use eth ports |
| 286 | for idx in range(config["port_count"]): |
| 287 | port_map[config["base_of_port"] + idx] = "eth" + \ |
| 288 | str(config["base_if_index"] + idx) |
| 289 | else: |
| 290 | return None |
| 291 | |
| 292 | logging.info("Built default port map") |
| 293 | return port_map |
| 294 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 295 | def test_list_generate(config): |
| 296 | """Generate the list of all known tests indexed by module name |
| 297 | |
| 298 | Conventions: Test files must implement the function test_set_init |
| 299 | |
Dan Talayco | 1a88c12 | 2010-03-07 22:00:20 -0800 | [diff] [blame] | 300 | Test cases are classes that implement runTest |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 301 | |
| 302 | @param config The oft configuration dictionary |
| 303 | @returns An array of triples (mod-name, module, [tests]) where |
| 304 | mod-name is the string (filename) of the module, module is the |
| 305 | value returned from __import__'ing the module and [tests] is an |
| 306 | array of strings giving the test cases from the module. |
| 307 | """ |
| 308 | |
| 309 | # Find and import test files |
| 310 | p1 = Popen(["find", config["test_dir"], "-type","f"], stdout = PIPE) |
| 311 | p2 = Popen(["xargs", "grep", "-l", "-e", "^def test_set_init"], |
| 312 | stdin=p1.stdout, stdout=PIPE) |
| 313 | |
| 314 | all_tests = {} |
| 315 | mod_name_map = {} |
| 316 | # There's an extra empty entry at the end of the list |
| 317 | filelist = p2.communicate()[0].split("\n")[:-1] |
| 318 | for file in filelist: |
Dan Talayco | ac25cf3 | 2010-07-20 14:08:28 -0700 | [diff] [blame] | 319 | if file[-1:] == '~' or file[0] == '#': |
Dan Talayco | de2a639 | 2010-03-10 13:56:51 -0800 | [diff] [blame] | 320 | continue |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 321 | modfile = file.lstrip('./')[:-3] |
| 322 | |
| 323 | try: |
| 324 | mod = __import__(modfile) |
| 325 | except: |
| 326 | logging.warning("Could not import file " + file) |
| 327 | continue |
| 328 | mod_name_map[modfile] = mod |
| 329 | added_fn = False |
| 330 | for fn in dir(mod): |
| 331 | if 'runTest' in dir(eval("mod." + fn)): |
| 332 | if not added_fn: |
| 333 | mod_name_map[modfile] = mod |
| 334 | all_tests[mod] = [] |
| 335 | added_fn = True |
| 336 | all_tests[mod].append(fn) |
| 337 | config["all_tests"] = all_tests |
| 338 | config["mod_name_map"] = mod_name_map |
| 339 | |
| 340 | def die(msg, exit_val=1): |
| 341 | print msg |
| 342 | logging.critical(msg) |
| 343 | sys.exit(exit_val) |
| 344 | |
| 345 | def add_test(suite, mod, name): |
| 346 | logging.info("Adding test " + mod.__name__ + "." + name) |
| 347 | suite.addTest(eval("mod." + name)()) |
| 348 | |
Dan Talayco | 79f3608 | 2010-03-11 16:53:53 -0800 | [diff] [blame] | 349 | def _space_to(n, str): |
| 350 | """ |
| 351 | Generate a string of spaces to achieve width n given string str |
| 352 | If length of str >= n, return one space |
| 353 | """ |
| 354 | spaces = n - len(str) |
| 355 | if spaces > 0: |
| 356 | return " " * spaces |
| 357 | return " " |
| 358 | |
Dan Talayco | c24aaae | 2010-07-08 14:05:24 -0700 | [diff] [blame] | 359 | def test_prio_get(mod, test): |
| 360 | """ |
| 361 | Return the priority of a test |
| 362 | If set in the test_prio variable for the module, return |
| 363 | that value. Otherwise return 100 (default) |
| 364 | """ |
| 365 | if 'test_prio' in dir(mod): |
| 366 | if test in mod.test_prio.keys(): |
| 367 | return mod.test_prio[test] |
| 368 | return TEST_PRIO_DEFAULT |
| 369 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 370 | # |
| 371 | # Main script |
| 372 | # |
| 373 | |
| 374 | # Get configuration, set up logging, import platform from file |
| 375 | (config, args) = config_setup(config_default) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 376 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 377 | test_list_generate(config) |
Dan Talayco | cf26b7a | 2011-08-05 10:15:35 -0700 | [diff] [blame] | 378 | oft_config = config |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 379 | |
| 380 | # Check if test list is requested; display and exit if so |
| 381 | if config["list"]: |
Dan Talayco | 79f3608 | 2010-03-11 16:53:53 -0800 | [diff] [blame] | 382 | did_print = False |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 383 | print "\nTest List:" |
| 384 | for mod in config["all_tests"].keys(): |
Dan Talayco | 79f3608 | 2010-03-11 16:53:53 -0800 | [diff] [blame] | 385 | if config["test_spec"] != "all" and \ |
| 386 | config["test_spec"] != mod.__name__: |
| 387 | continue |
| 388 | did_print = True |
| 389 | desc = mod.__doc__.strip() |
| 390 | desc = desc.split('\n')[0] |
| 391 | start_str = " Module " + mod.__name__ + ": " |
| 392 | print start_str + _space_to(22, start_str) + desc |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 393 | for test in config["all_tests"][mod]: |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 394 | try: |
| 395 | desc = eval('mod.' + test + '.__doc__.strip()') |
| 396 | desc = desc.split('\n')[0] |
| 397 | except: |
| 398 | desc = "No description" |
Dan Talayco | c24aaae | 2010-07-08 14:05:24 -0700 | [diff] [blame] | 399 | if test_prio_get(mod, test) < 0: |
| 400 | start_str = " * " + test + ":" |
| 401 | else: |
| 402 | start_str = " " + test + ":" |
Dan Talayco | 551befa | 2010-07-15 17:05:32 -0700 | [diff] [blame] | 403 | if len(start_str) > 22: |
| 404 | desc = "\n" + _space_to(22, "") + desc |
Dan Talayco | 79f3608 | 2010-03-11 16:53:53 -0800 | [diff] [blame] | 405 | print start_str + _space_to(22, start_str) + desc |
| 406 | print |
| 407 | if not did_print: |
| 408 | print "No tests found for " + config["test_spec"] |
Dan Talayco | c24aaae | 2010-07-08 14:05:24 -0700 | [diff] [blame] | 409 | else: |
Dan Talayco | 7aa0b81 | 2010-07-20 14:51:41 -0700 | [diff] [blame] | 410 | print "Tests preceded by * are not run by default" |
| 411 | print "Tests marked (TP1) after name take --test-params including:" |
Dan Talayco | ac25cf3 | 2010-07-20 14:08:28 -0700 | [diff] [blame] | 412 | print " 'vid=N;strip_vlan=bool;add_vlan=bool'" |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 413 | sys.exit(0) |
| 414 | |
| 415 | logging_setup(config) |
| 416 | logging.info("++++++++ " + time.asctime() + " ++++++++") |
| 417 | |
| 418 | # Generate the test suite |
| 419 | #@todo Decide if multiple suites are ever needed |
| 420 | suite = unittest.TestSuite() |
| 421 | |
Dan Talayco | c24aaae | 2010-07-08 14:05:24 -0700 | [diff] [blame] | 422 | #@todo Allow specification of priority to override prio check |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 423 | if config["test_spec"] == "all": |
| 424 | for mod in config["all_tests"].keys(): |
| 425 | for test in config["all_tests"][mod]: |
Dan Talayco | c24aaae | 2010-07-08 14:05:24 -0700 | [diff] [blame] | 426 | # For now, a way to avoid tests |
| 427 | if test_prio_get(mod, test) >= 0: |
| 428 | add_test(suite, mod, test) |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 429 | |
| 430 | else: |
| 431 | for ts_entry in config["test_spec"].split(","): |
| 432 | parts = ts_entry.split(".") |
| 433 | |
| 434 | if len(parts) == 1: # Either a module or test name |
| 435 | if ts_entry in config["mod_name_map"].keys(): |
| 436 | mod = config["mod_name_map"][ts_entry] |
| 437 | for test in config["all_tests"][mod]: |
Dan Talayco | 830b441 | 2011-08-23 22:49:21 -0700 | [diff] [blame] | 438 | if test_prio_get(mod, test) >= 0: |
| 439 | add_test(suite, mod, test) |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 440 | else: # Search for matching tests |
| 441 | test_found = False |
| 442 | for mod in config["all_tests"].keys(): |
| 443 | if ts_entry in config["all_tests"][mod]: |
| 444 | add_test(suite, mod, ts_entry) |
| 445 | test_found = True |
| 446 | if not test_found: |
| 447 | die("Could not find module or test: " + ts_entry) |
| 448 | |
| 449 | elif len(parts) == 2: # module.test |
| 450 | if parts[0] not in config["mod_name_map"]: |
| 451 | die("Unknown module in test spec: " + ts_entry) |
| 452 | mod = config["mod_name_map"][parts[0]] |
| 453 | if parts[1] in config["all_tests"][mod]: |
| 454 | add_test(suite, mod, parts[1]) |
| 455 | else: |
| 456 | die("No known test matches: " + ts_entry) |
| 457 | |
| 458 | else: |
| 459 | die("Bad test spec: " + ts_entry) |
| 460 | |
| 461 | # Check if platform specified |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 462 | if config["platform"]: |
| 463 | _imp_string = "from " + config["platform"] + " import *" |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 464 | logging.info("Importing platform: " + _imp_string) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 465 | try: |
| 466 | exec(_imp_string) |
| 467 | except: |
| 468 | logging.warn("Failed to import " + config["platform"] + " file") |
| 469 | |
| 470 | try: |
| 471 | platform_config_update(config) |
| 472 | except: |
| 473 | logging.warn("Could not run platform host configuration") |
| 474 | |
| 475 | if not config["port_map"]: |
| 476 | # Try to set up default port mapping if not done by platform |
| 477 | config["port_map"] = default_port_map_setup(config) |
| 478 | |
| 479 | if not config["port_map"]: |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 480 | die("Interface port map is not defined. Exiting") |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 481 | |
| 482 | logging.debug("Configuration: " + str(config)) |
| 483 | logging.info("OF port map: " + str(config["port_map"])) |
| 484 | |
| 485 | # Init the test sets |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 486 | for (modname,mod) in config["mod_name_map"].items(): |
| 487 | try: |
| 488 | mod.test_set_init(config) |
| 489 | except: |
| 490 | logging.warning("Could not run test_set_init for " + modname) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 491 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 492 | if config["dbg_level"] == logging.CRITICAL: |
| 493 | _verb = 0 |
| 494 | elif config["dbg_level"] >= logging.WARNING: |
| 495 | _verb = 1 |
| 496 | else: |
| 497 | _verb = 2 |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 498 | |
Brandon Heller | 446c143 | 2010-04-01 12:43:27 -0700 | [diff] [blame] | 499 | if os.getuid() != 0: |
| 500 | print "ERROR: Super-user privileges required. Please re-run with " \ |
| 501 | "sudo or as root." |
| 502 | exit(1) |
| 503 | |
Dan Talayco | ac25cf3 | 2010-07-20 14:08:28 -0700 | [diff] [blame] | 504 | |
| 505 | if __name__ == "__main__": |
| 506 | logging.info("*** TEST RUN START: " + time.asctime()) |
| 507 | unittest.TextTestRunner(verbosity=_verb).run(suite) |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 508 | if testutils.skipped_test_count > 0: |
| 509 | ts = " tests" |
| 510 | if testutils.skipped_test_count == 1: ts = " test" |
| 511 | logging.info("Skipped " + str(testutils.skipped_test_count) + ts) |
| 512 | print("Skipped " + str(testutils.skipped_test_count) + ts) |
Dan Talayco | ac25cf3 | 2010-07-20 14:08:28 -0700 | [diff] [blame] | 513 | logging.info("*** TEST RUN END : " + time.asctime()) |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 514 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 515 | |