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