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