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