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