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 | |
Rich Lane | ea5060d | 2013-01-06 13:59:00 -0800 | [diff] [blame] | 7 | This script is the entry point for running OpenFlow tests using the OFT |
| 8 | framework. For usage information, see --help or the README. |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 9 | |
Stephen Finucane | 7424a74 | 2014-05-15 19:46:06 +0100 | [diff] [blame] | 10 | To add a new command line option, edit both the CONFIG_DEFAULT dictionary and |
Rich Lane | ea5060d | 2013-01-06 13:59:00 -0800 | [diff] [blame] | 11 | the config_setup function. The option's result will end up in the global |
| 12 | oftest.config dictionary. |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 13 | """ |
| 14 | |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 15 | from __future__ import print_function |
| 16 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 17 | import sys |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 18 | import optparse |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 19 | import logging |
| 20 | import unittest |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 21 | import time |
Brandon Heller | 446c143 | 2010-04-01 12:43:27 -0700 | [diff] [blame] | 22 | import os |
Rich Lane | 6b452bc | 2012-07-09 16:52:21 -0700 | [diff] [blame] | 23 | import imp |
Rich Lane | 8592bec | 2012-09-03 09:06:59 -0700 | [diff] [blame] | 24 | import random |
Rich Lane | 5bd6cf9 | 2012-10-04 17:57:24 -0700 | [diff] [blame] | 25 | import signal |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 26 | import fnmatch |
Rich Lane | 2d6d482 | 2013-01-08 10:49:16 -0800 | [diff] [blame] | 27 | import copy |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 28 | |
Stephen Finucane | 7424a74 | 2014-05-15 19:46:06 +0100 | [diff] [blame] | 29 | ROOT_DIR = os.path.dirname(os.path.realpath(__file__)) |
Rich Lane | fadf345 | 2012-10-03 16:23:37 -0700 | [diff] [blame] | 30 | |
Stephen Finucane | 7424a74 | 2014-05-15 19:46:06 +0100 | [diff] [blame] | 31 | PY_SRC_DIR = os.path.join(ROOT_DIR, 'src', 'python') |
| 32 | if os.path.exists(os.path.join(PY_SRC_DIR, 'oftest')): |
Rich Lane | 3987804 | 2012-07-09 14:45:35 -0700 | [diff] [blame] | 33 | # Running from source tree |
Stephen Finucane | 7424a74 | 2014-05-15 19:46:06 +0100 | [diff] [blame] | 34 | sys.path.insert(0, PY_SRC_DIR) |
Rich Lane | 3987804 | 2012-07-09 14:45:35 -0700 | [diff] [blame] | 35 | |
macauley | c454079 | 2015-08-03 09:40:05 +0800 | [diff] [blame] | 36 | if os.path.exists(os.path.join(ROOT_DIR, 'accton')): |
| 37 | PY_ACCTON_DIR = os.path.join(ROOT_DIR, 'accton') |
| 38 | sys.path.insert(0, PY_ACCTON_DIR) |
| 39 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 40 | import oftest |
| 41 | from oftest import config |
Rich Lane | e55abf7 | 2012-07-26 20:11:42 -0700 | [diff] [blame] | 42 | import oftest.ofutils |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 43 | import oftest.help_formatter |
Rich Lane | 3f7098c | 2013-03-12 10:28:32 -0700 | [diff] [blame] | 44 | import loxi |
Dan Talayco | ba3745c | 2010-07-21 21:51:08 -0700 | [diff] [blame] | 45 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 46 | ##@var DEBUG_LEVELS |
| 47 | # Map from strings to debugging levels |
| 48 | DEBUG_LEVELS = { |
| 49 | 'debug' : logging.DEBUG, |
| 50 | 'verbose' : logging.DEBUG, |
| 51 | 'info' : logging.INFO, |
| 52 | 'warning' : logging.WARNING, |
| 53 | 'warn' : logging.WARNING, |
| 54 | 'error' : logging.ERROR, |
| 55 | 'critical' : logging.CRITICAL |
| 56 | } |
| 57 | |
Stephen Finucane | 7424a74 | 2014-05-15 19:46:06 +0100 | [diff] [blame] | 58 | ##@var CONFIG_DEFAULT |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 59 | # The default configuration dictionary for OFT |
Stephen Finucane | 7424a74 | 2014-05-15 19:46:06 +0100 | [diff] [blame] | 60 | CONFIG_DEFAULT = { |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 61 | # Miscellaneous options |
| 62 | "list" : False, |
| 63 | "list_test_names" : False, |
| 64 | "allow_user" : False, |
| 65 | |
| 66 | # Test selection options |
Rich Lane | c76b09a | 2013-01-02 16:53:22 -0800 | [diff] [blame] | 67 | "test_spec" : "", |
Rich Lane | 1a08d23 | 2013-01-04 16:03:50 -0800 | [diff] [blame] | 68 | "test_file" : None, |
Rich Lane | 74b13d1 | 2013-05-03 17:58:50 -0700 | [diff] [blame] | 69 | "test_dir" : None, |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 70 | |
| 71 | # Switch connection options |
| 72 | "controller_host" : "0.0.0.0", # For passive bind |
Rich Lane | 4d1f3eb | 2013-10-03 13:45:57 -0700 | [diff] [blame] | 73 | "controller_port" : 6653, |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 74 | "switch_ip" : None, # If not none, actively connect to switch |
Rich Lane | 15f2632 | 2013-01-08 11:23:24 -0800 | [diff] [blame] | 75 | "platform" : "eth", |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 76 | "platform_args" : None, |
Stephen Finucane | 7424a74 | 2014-05-15 19:46:06 +0100 | [diff] [blame] | 77 | "platform_dir" : os.path.join(ROOT_DIR, "platforms"), |
Rich Lane | 2d6d482 | 2013-01-08 10:49:16 -0800 | [diff] [blame] | 78 | "interfaces" : [], |
Rich Lane | 9fd0568 | 2013-01-10 15:30:38 -0800 | [diff] [blame] | 79 | "openflow_version" : "1.0", |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 80 | |
| 81 | # Logging options |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 82 | "log_file" : "oft.log", |
Rich Lane | 69fd8e0 | 2013-08-23 16:23:42 -0700 | [diff] [blame] | 83 | "log_dir" : None, |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 84 | "debug" : "verbose", |
Rich Lane | 9631f00 | 2014-03-21 18:05:16 -0700 | [diff] [blame] | 85 | "profile" : False, |
Stephen Finucane | 6219af7 | 2014-05-14 21:08:30 +0100 | [diff] [blame] | 86 | "profile_file" : "profile.out", |
Stephen Finucane | e016cf2 | 2014-04-16 22:04:11 +0100 | [diff] [blame] | 87 | "xunit" : False, |
| 88 | "xunit_dir" : "xunit", |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 89 | |
| 90 | # Test behavior options |
| 91 | "relax" : False, |
Dan Talayco | d7c80d1 | 2012-04-03 15:20:57 -0700 | [diff] [blame] | 92 | "test_params" : "None", |
Rich Lane | 9a84a4f | 2012-07-17 12:27:42 -0700 | [diff] [blame] | 93 | "fail_skipped" : False, |
Rich Lane | 48f6aed | 2014-03-23 15:51:02 -0700 | [diff] [blame] | 94 | "default_timeout" : 2.0, |
| 95 | "default_negative_timeout" : 0.01, |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 96 | "minsize" : 0, |
Rich Lane | 8592bec | 2012-09-03 09:06:59 -0700 | [diff] [blame] | 97 | "random_seed" : None, |
Stephen Finucane | 92f7cf6 | 2014-03-13 15:08:11 +0000 | [diff] [blame] | 98 | "disable_ipv6" : False, |
Rich Lane | 62b4fb1 | 2015-04-02 18:04:10 -0700 | [diff] [blame] | 99 | "random_order" : False, |
macauley | c1b4bd7 | 2015-07-16 15:29:45 +0800 | [diff] [blame] | 100 | "dump_packet" : True, |
macauley | c2ad42c | 2015-07-17 15:59:15 +0800 | [diff] [blame] | 101 | "cicada_poject" : False, |
macauley | c1b4bd7 | 2015-07-16 15:29:45 +0800 | [diff] [blame] | 102 | |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 103 | # Other configuration |
Rich Lane | 15f2632 | 2013-01-08 11:23:24 -0800 | [diff] [blame] | 104 | "port_map" : {}, |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 105 | } |
| 106 | |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 107 | def config_setup(): |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 108 | """ |
| 109 | Set up the configuration including parsing the arguments |
| 110 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 111 | @return A pair (config, args) where config is an config |
| 112 | object and args is any additional arguments from the command line |
| 113 | """ |
| 114 | |
Rich Lane | 4113a58 | 2013-01-03 10:13:02 -0800 | [diff] [blame] | 115 | usage = "usage: %prog [options] (test|group)..." |
| 116 | |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 117 | description = """\ |
Rich Lane | 4113a58 | 2013-01-03 10:13:02 -0800 | [diff] [blame] | 118 | OFTest is a framework and set of tests for validating OpenFlow switches. |
| 119 | |
| 120 | The default configuration assumes that an OpenFlow 1.0 switch is attempting to |
Rich Lane | 4d1f3eb | 2013-10-03 13:45:57 -0700 | [diff] [blame] | 121 | connect to a controller on the machine running OFTest, port 6653. Additionally, |
Rich Lane | 4113a58 | 2013-01-03 10:13:02 -0800 | [diff] [blame] | 122 | the interfaces veth1, veth3, veth5, and veth7 should be connected to the switch's |
| 123 | dataplane. |
| 124 | |
| 125 | If no positional arguments are given then OFTest will run all tests that |
| 126 | depend only on standard OpenFlow 1.0. Otherwise each positional argument |
| 127 | is interpreted as either a test name or a test group name. The union of |
| 128 | these will be executed. To see what groups each test belongs to use the |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 129 | --list option. Tests and groups can be subtracted from the result by |
| 130 | prefixing them with the '^' character. |
Rich Lane | 4113a58 | 2013-01-03 10:13:02 -0800 | [diff] [blame] | 131 | """ |
| 132 | |
Rich Lane | 2d6d482 | 2013-01-08 10:49:16 -0800 | [diff] [blame] | 133 | # Parse --interface |
| 134 | def check_interface(option, opt, value): |
| 135 | try: |
| 136 | ofport, interface = value.split('@', 1) |
| 137 | ofport = int(ofport) |
| 138 | except ValueError: |
| 139 | raise optparse.OptionValueError("incorrect interface syntax (got %s, expected 'ofport@interface')" % repr(value)) |
| 140 | return (ofport, interface) |
| 141 | |
| 142 | class Option(optparse.Option): |
| 143 | TYPES = optparse.Option.TYPES + ("interface",) |
| 144 | TYPE_CHECKER = copy.copy(optparse.Option.TYPE_CHECKER) |
| 145 | TYPE_CHECKER["interface"] = check_interface |
| 146 | |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 147 | parser = optparse.OptionParser(version="%prog 0.1", |
| 148 | usage=usage, |
| 149 | description=description, |
Rich Lane | 2d6d482 | 2013-01-08 10:49:16 -0800 | [diff] [blame] | 150 | formatter=oftest.help_formatter.HelpFormatter(), |
| 151 | option_class=Option) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 152 | |
| 153 | # Set up default values |
Stephen Finucane | 7424a74 | 2014-05-15 19:46:06 +0100 | [diff] [blame] | 154 | parser.set_defaults(**CONFIG_DEFAULT) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 155 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 156 | parser.add_option("--list", action="store_true", |
Brandon Heller | 824504e | 2010-04-01 12:21:37 -0700 | [diff] [blame] | 157 | help="List all tests and exit") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 158 | parser.add_option("--list-test-names", action='store_true', |
| 159 | help="List test names matching the test spec and exit") |
Rich Lane | ee57ad0 | 2012-07-13 15:40:36 -0700 | [diff] [blame] | 160 | parser.add_option("--allow-user", action="store_true", |
| 161 | help="Proceed even if oftest is not run as root") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 162 | |
| 163 | group = optparse.OptionGroup(parser, "Test selection options") |
| 164 | group.add_option("-T", "--test-spec", "--test-list", help="Tests to run, separated by commas") |
| 165 | group.add_option("-f", "--test-file", help="File of tests to run, one per line") |
| 166 | group.add_option("--test-dir", type="string", help="Directory containing tests") |
| 167 | parser.add_option_group(group) |
| 168 | |
| 169 | group = optparse.OptionGroup(parser, "Switch connection options") |
| 170 | group.add_option("-H", "--host", dest="controller_host", |
| 171 | help="IP address to listen on (default %default)") |
| 172 | group.add_option("-p", "--port", dest="controller_port", |
| 173 | type="int", help="Port number to listen on (default %default)") |
| 174 | group.add_option("-S", "--switch-ip", dest="switch_ip", |
| 175 | help="If set, actively connect to this switch by IP") |
| 176 | group.add_option("-P", "--platform", help="Platform module name (default %default)") |
| 177 | group.add_option("-a", "--platform-args", help="Custom arguments for the platform") |
| 178 | group.add_option("--platform-dir", type="string", help="Directory containing platform modules") |
Rich Lane | 2d6d482 | 2013-01-08 10:49:16 -0800 | [diff] [blame] | 179 | group.add_option("--interface", "-i", type="interface", dest="interfaces", metavar="INTERFACE", action="append", |
| 180 | help="Specify a OpenFlow port number and the dataplane interface to use. May be given multiple times. Example: 1@eth1") |
Rich Lane | 50cfa50 | 2013-04-25 13:45:08 -0700 | [diff] [blame] | 181 | group.add_option("--of-version", "-V", dest="openflow_version", choices=loxi.version_names.values(), |
Rich Lane | 9fd0568 | 2013-01-10 15:30:38 -0800 | [diff] [blame] | 182 | help="OpenFlow version to use") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 183 | parser.add_option_group(group) |
| 184 | |
| 185 | group = optparse.OptionGroup(parser, "Logging options") |
Rich Lane | 69fd8e0 | 2013-08-23 16:23:42 -0700 | [diff] [blame] | 186 | group.add_option("--log-file", help="Name of log file (default %default)") |
| 187 | group.add_option("--log-dir", help="Name of log directory") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 188 | dbg_lvl_names = sorted(DEBUG_LEVELS.keys(), key=lambda x: DEBUG_LEVELS[x]) |
| 189 | group.add_option("--debug", choices=dbg_lvl_names, |
| 190 | help="Debug lvl: debug, info, warning, error, critical (default %default)") |
| 191 | group.add_option("-v", "--verbose", action="store_const", dest="debug", |
| 192 | const="verbose", help="Shortcut for --debug=verbose") |
| 193 | group.add_option("-q", "--quiet", action="store_const", dest="debug", |
| 194 | const="warning", help="Shortcut for --debug=warning") |
Stephen Finucane | 6219af7 | 2014-05-14 21:08:30 +0100 | [diff] [blame] | 195 | group.add_option("--profile", action="store_true", help="Enable Python profiling") |
| 196 | group.add_option("--profile-file", help="Output file for Python profiler") |
Stephen Finucane | e016cf2 | 2014-04-16 22:04:11 +0100 | [diff] [blame] | 197 | group.add_option("--xunit", action="store_true", help="Enable xUnit-formatted results") |
| 198 | group.add_option("--xunit-dir", help="Output directory for xUnit-formatted results") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 199 | parser.add_option_group(group) |
| 200 | |
| 201 | group = optparse.OptionGroup(parser, "Test behavior options") |
| 202 | group.add_option("--relax", action="store_true", |
| 203 | help="Relax packet match checks allowing other packets") |
| 204 | test_params_help = """Set test parameters: key=val;... (see --list) |
| 205 | """ |
| 206 | group.add_option("-t", "--test-params", help=test_params_help) |
| 207 | group.add_option("--fail-skipped", action="store_true", |
Rich Lane | 9a84a4f | 2012-07-17 12:27:42 -0700 | [diff] [blame] | 208 | help="Return failure if any test was skipped") |
Rich Lane | 48f6aed | 2014-03-23 15:51:02 -0700 | [diff] [blame] | 209 | group.add_option("--default-timeout", type=float, |
Rich Lane | e55abf7 | 2012-07-26 20:11:42 -0700 | [diff] [blame] | 210 | help="Timeout in seconds for most operations") |
Rich Lane | 48f6aed | 2014-03-23 15:51:02 -0700 | [diff] [blame] | 211 | group.add_option("--default-negative-timeout", type=float, |
| 212 | help="Timeout in seconds for negative checks") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 213 | group.add_option("--minsize", type="int", |
| 214 | help="Minimum allowable packet size on the dataplane.") |
| 215 | group.add_option("--random-seed", type="int", |
| 216 | help="Random number generator seed") |
Stephen Finucane | 92f7cf6 | 2014-03-13 15:08:11 +0000 | [diff] [blame] | 217 | group.add_option("--disable-ipv6", action="store_true", |
| 218 | help="Disable IPv6 tests") |
Rich Lane | 62b4fb1 | 2015-04-02 18:04:10 -0700 | [diff] [blame] | 219 | group.add_option("--random-order", action="store_true", |
| 220 | help="Randomize order of tests") |
macauley | c1b4bd7 | 2015-07-16 15:29:45 +0800 | [diff] [blame] | 221 | group.add_option("--dump_packet", action="store_true", |
macauley | c2ad42c | 2015-07-17 15:59:15 +0800 | [diff] [blame] | 222 | help="Dump packet content on log when verify packet fail") |
| 223 | group.add_option("--cicada_poject", action="store_true", |
| 224 | help="True verify Cicada behavior, False verify AOS behaviro") |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 225 | parser.add_option_group(group) |
Jeffrey Townsend | 5cb7ed3 | 2012-08-17 18:11:01 +0000 | [diff] [blame] | 226 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 227 | # Might need this if other parsers want command line |
| 228 | # parser.allow_interspersed_args = False |
| 229 | (options, args) = parser.parse_args() |
| 230 | |
Rich Lane | 74b13d1 | 2013-05-03 17:58:50 -0700 | [diff] [blame] | 231 | # If --test-dir wasn't given, pick one based on the OpenFlow version |
| 232 | if options.test_dir == None: |
| 233 | if options.openflow_version == "1.0": |
Stephen Finucane | 7424a74 | 2014-05-15 19:46:06 +0100 | [diff] [blame] | 234 | options.test_dir = os.path.join(ROOT_DIR, "tests") |
Rich Lane | 74b13d1 | 2013-05-03 17:58:50 -0700 | [diff] [blame] | 235 | else: |
Stephen Finucane | 7424a74 | 2014-05-15 19:46:06 +0100 | [diff] [blame] | 236 | options.test_dir = os.path.join(ROOT_DIR, "tests-" + options.openflow_version) |
Rich Lane | 74b13d1 | 2013-05-03 17:58:50 -0700 | [diff] [blame] | 237 | |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 238 | # Convert options from a Namespace to a plain dictionary |
Stephen Finucane | 7424a74 | 2014-05-15 19:46:06 +0100 | [diff] [blame] | 239 | config = CONFIG_DEFAULT.copy() |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 240 | for key in config.keys(): |
| 241 | config[key] = getattr(options, key) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 242 | |
| 243 | return (config, args) |
| 244 | |
| 245 | def logging_setup(config): |
| 246 | """ |
| 247 | Set up logging based on config |
| 248 | """ |
Rich Lane | 69fd8e0 | 2013-08-23 16:23:42 -0700 | [diff] [blame] | 249 | |
| 250 | logging.getLogger().setLevel(DEBUG_LEVELS[config["debug"]]) |
| 251 | |
| 252 | if config["log_dir"] != None: |
| 253 | if os.path.exists(config["log_dir"]): |
| 254 | import shutil |
| 255 | shutil.rmtree(config["log_dir"]) |
| 256 | os.makedirs(config["log_dir"]) |
| 257 | else: |
| 258 | if os.path.exists(config["log_file"]): |
| 259 | os.remove(config["log_file"]) |
| 260 | |
| 261 | oftest.open_logfile('main') |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 262 | |
Stephen Finucane | e016cf2 | 2014-04-16 22:04:11 +0100 | [diff] [blame] | 263 | def xunit_setup(config): |
| 264 | """ |
| 265 | Set up xUnit output based on config |
| 266 | """ |
| 267 | |
| 268 | if not config["xunit"]: |
| 269 | return |
| 270 | |
Stephen Finucane | 6219af7 | 2014-05-14 21:08:30 +0100 | [diff] [blame] | 271 | if os.path.exists(config["xunit_dir"]): |
| 272 | import shutil |
| 273 | shutil.rmtree(config["xunit_dir"]) |
| 274 | os.makedirs(config["xunit_dir"]) |
Stephen Finucane | e016cf2 | 2014-04-16 22:04:11 +0100 | [diff] [blame] | 275 | |
Rich Lane | 472aaea | 2013-08-27 09:27:38 -0700 | [diff] [blame] | 276 | def pcap_setup(config): |
| 277 | """ |
| 278 | Set up dataplane packet capturing based on config |
| 279 | """ |
| 280 | |
| 281 | if config["log_dir"] == None: |
| 282 | filename = os.path.splitext(config["log_file"])[0] + '.pcap' |
| 283 | oftest.dataplane_instance.start_pcap(filename) |
| 284 | else: |
| 285 | # start_pcap is called per-test in base_tests |
| 286 | pass |
| 287 | |
Stephen Finucane | 6219af7 | 2014-05-14 21:08:30 +0100 | [diff] [blame] | 288 | def profiler_setup(config): |
| 289 | """ |
| 290 | Set up profiler based on config |
| 291 | """ |
| 292 | |
| 293 | if not config["profile"]: |
| 294 | return |
| 295 | |
| 296 | import cProfile |
| 297 | profiler = cProfile.Profile() |
| 298 | profiler.enable() |
| 299 | |
| 300 | return profiler |
| 301 | |
| 302 | def profiler_teardown(profiler): |
| 303 | """ |
| 304 | Tear down profiler based on config |
| 305 | """ |
| 306 | |
| 307 | if not config["profile"]: |
| 308 | return |
| 309 | |
| 310 | profiler.disable() |
| 311 | profiler.dump_stats(config["profile_file"]) |
| 312 | |
Rich Lane | 472aaea | 2013-08-27 09:27:38 -0700 | [diff] [blame] | 313 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 314 | def load_test_modules(config): |
| 315 | """ |
| 316 | Load tests from the test_dir directory. |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 317 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 318 | Test cases are subclasses of unittest.TestCase |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 319 | |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 320 | Also updates the _groups member to include "standard" and |
| 321 | module test groups if appropriate. |
| 322 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 323 | @param config The oft configuration dictionary |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 324 | @returns A dictionary from test module names to tuples of |
| 325 | (module, dictionary from test names to test classes). |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 326 | """ |
| 327 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 328 | result = {} |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 329 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 330 | for root, dirs, filenames in os.walk(config["test_dir"]): |
| 331 | # Iterate over each python file |
| 332 | for filename in fnmatch.filter(filenames, '[!.]*.py'): |
| 333 | modname = os.path.splitext(os.path.basename(filename))[0] |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 334 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 335 | try: |
| 336 | if sys.modules.has_key(modname): |
| 337 | mod = sys.modules[modname] |
| 338 | else: |
| 339 | mod = imp.load_module(modname, *imp.find_module(modname, [root])) |
| 340 | except: |
| 341 | logging.warning("Could not import file " + filename) |
| 342 | raise |
Rich Lane | 520e415 | 2012-07-09 16:18:16 -0700 | [diff] [blame] | 343 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 344 | # Find all testcases defined in the module |
| 345 | tests = dict((k, v) for (k, v) in mod.__dict__.items() if type(v) == type and |
Rich Lane | 9cef274 | 2013-07-16 13:27:00 -0700 | [diff] [blame] | 346 | issubclass(v, unittest.TestCase) and |
| 347 | hasattr(v, "runTest")) |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 348 | if tests: |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 349 | for (testname, test) in tests.items(): |
| 350 | # Set default annotation values |
| 351 | if not hasattr(test, "_groups"): |
| 352 | test._groups = [] |
| 353 | if not hasattr(test, "_nonstandard"): |
| 354 | test._nonstandard = False |
| 355 | if not hasattr(test, "_disabled"): |
| 356 | test._disabled = False |
| 357 | |
| 358 | # Put test in its module's test group |
| 359 | if not test._disabled: |
| 360 | test._groups.append(modname) |
| 361 | |
| 362 | # Put test in the standard test group |
| 363 | if not test._disabled and not test._nonstandard: |
| 364 | test._groups.append("standard") |
| 365 | test._groups.append("all") # backwards compatibility |
| 366 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 367 | result[modname] = (mod, tests) |
Rich Lane | 520e415 | 2012-07-09 16:18:16 -0700 | [diff] [blame] | 368 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 369 | return result |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 370 | |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 371 | def prune_tests(test_specs, test_modules, version): |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 372 | """ |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 373 | Return tests matching the given test-specs and OpenFlow version |
Rich Lane | c76b09a | 2013-01-02 16:53:22 -0800 | [diff] [blame] | 374 | @param test_specs A list of group names or test names. |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 375 | @param version An OpenFlow version (e.g. "1.0") |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 376 | @param test_modules Same format as the output of load_test_modules. |
| 377 | @returns Same format as the output of load_test_modules. |
| 378 | """ |
| 379 | result = {} |
Rich Lane | c76b09a | 2013-01-02 16:53:22 -0800 | [diff] [blame] | 380 | for e in test_specs: |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 381 | matched = False |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 382 | |
| 383 | if e.startswith('^'): |
| 384 | negated = True |
| 385 | e = e[1:] |
| 386 | else: |
| 387 | negated = False |
| 388 | |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 389 | for (modname, (mod, tests)) in test_modules.items(): |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 390 | for (testname, test) in tests.items(): |
| 391 | if e in test._groups or e == "%s.%s" % (modname, testname): |
| 392 | result.setdefault(modname, (mod, {})) |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 393 | if not negated: |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 394 | if not hasattr(test, "_versions") or version in test._versions: |
| 395 | result[modname][1][testname] = test |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 396 | else: |
| 397 | if modname in result and testname in result[modname][1]: |
| 398 | del result[modname][1][testname] |
| 399 | if not result[modname][1]: |
| 400 | del result[modname] |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 401 | matched = True |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 402 | |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 403 | if not matched: |
Rich Lane | cc45b8e | 2013-01-02 15:55:02 -0800 | [diff] [blame] | 404 | die("test-spec element %s did not match any tests" % e) |
Rich Lane | 948f030 | 2013-01-07 10:59:08 -0800 | [diff] [blame] | 405 | |
Rich Lane | 15f64de | 2012-10-04 21:25:57 -0700 | [diff] [blame] | 406 | return result |
| 407 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 408 | def die(msg, exit_val=1): |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 409 | logging.critical(msg) |
| 410 | sys.exit(exit_val) |
| 411 | |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 412 | # |
| 413 | # Main script |
| 414 | # |
| 415 | |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 416 | # Setup global configuration |
Rich Lane | 95f078b | 2013-01-06 13:24:58 -0800 | [diff] [blame] | 417 | (new_config, args) = config_setup() |
Rich Lane | 477f481 | 2012-10-04 22:49:00 -0700 | [diff] [blame] | 418 | oftest.config.update(new_config) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 419 | |
Rich Lane | d7a85c4 | 2012-09-28 15:38:45 -0700 | [diff] [blame] | 420 | logging_setup(config) |
Stephen Finucane | e016cf2 | 2014-04-16 22:04:11 +0100 | [diff] [blame] | 421 | xunit_setup(config) |
Rich Lane | d7a85c4 | 2012-09-28 15:38:45 -0700 | [diff] [blame] | 422 | logging.info("++++++++ " + time.asctime() + " ++++++++") |
| 423 | |
Rich Lane | 9fd0568 | 2013-01-10 15:30:38 -0800 | [diff] [blame] | 424 | # Pick an OpenFlow protocol module based on the configured version |
Rich Lane | 50cfa50 | 2013-04-25 13:45:08 -0700 | [diff] [blame] | 425 | name_to_version = dict((v,k) for k, v in loxi.version_names.iteritems()) |
| 426 | sys.modules["ofp"] = loxi.protocol(name_to_version[config["openflow_version"]]) |
Rich Lane | 9fd0568 | 2013-01-10 15:30:38 -0800 | [diff] [blame] | 427 | |
| 428 | # HACK: testutils.py imports controller.py, which needs the ofp module |
| 429 | import oftest.testutils |
| 430 | |
Rich Lane | e284b6b | 2012-10-03 09:19:58 -0700 | [diff] [blame] | 431 | # Allow tests to import each other |
| 432 | sys.path.append(config["test_dir"]) |
| 433 | |
Rich Lane | c76b09a | 2013-01-02 16:53:22 -0800 | [diff] [blame] | 434 | test_specs = args |
| 435 | if config["test_spec"] != "": |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 436 | logging.warning("The '--test-spec' option is deprecated.") |
Rich Lane | c76b09a | 2013-01-02 16:53:22 -0800 | [diff] [blame] | 437 | test_specs += config["test_spec"].split(',') |
Rich Lane | 1a08d23 | 2013-01-04 16:03:50 -0800 | [diff] [blame] | 438 | if config["test_file"] != None: |
| 439 | with open(config["test_file"], 'r') as f: |
| 440 | for line in f: |
| 441 | line, _, _ = line.partition('#') # remove comments |
| 442 | line = line.strip() |
| 443 | if line: |
| 444 | test_specs.append(line) |
Rich Lane | c76b09a | 2013-01-02 16:53:22 -0800 | [diff] [blame] | 445 | if test_specs == []: |
| 446 | test_specs = ["standard"] |
| 447 | |
Rich Lane | d8e4548 | 2013-01-02 17:36:21 -0800 | [diff] [blame] | 448 | test_modules = load_test_modules(config) |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 449 | |
| 450 | # Check if test list is requested; display and exit if so |
| 451 | if config["list"]: |
Dan Talayco | 7f8dba8 | 2012-04-12 12:58:52 -0700 | [diff] [blame] | 452 | mod_count = 0 |
| 453 | test_count = 0 |
Rich Lane | 37f4211 | 2013-01-03 13:41:49 -0800 | [diff] [blame] | 454 | all_groups = set() |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 455 | |
| 456 | print(""" |
| 457 | Tests are shown grouped by module. If a test is in any groups beyond |
| 458 | "standard" and its module's group then they are shown in parentheses. |
| 459 | |
Rich Lane | e811e7b | 2013-01-03 13:36:54 -0800 | [diff] [blame] | 460 | Tests marked with '*' are non-standard and may require vendor extensions or |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 461 | special switch configuration. These are not part of the "standard" test group. |
| 462 | |
| 463 | Tests marked with '!' are disabled because they are experimental, |
| 464 | special-purpose, or are too long to be run normally. These are not part of |
| 465 | the "standard" test group or their module's test group. |
| 466 | |
| 467 | Tests marked (TP1) after name take --test-params including: |
| 468 | |
| 469 | 'vid=N;strip_vlan=bool;add_vlan=bool' |
| 470 | |
| 471 | Test List: |
| 472 | """) |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 473 | for (modname, (mod, tests)) in test_modules.items(): |
Dan Talayco | 7f8dba8 | 2012-04-12 12:58:52 -0700 | [diff] [blame] | 474 | mod_count += 1 |
Rich Lane | 80efd65 | 2013-01-02 14:05:20 -0800 | [diff] [blame] | 475 | desc = (mod.__doc__ or "No description").strip().split('\n')[0] |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 476 | print(" Module %13s: %s" % (mod.__name__, desc)) |
| 477 | |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 478 | for (testname, test) in tests.items(): |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 479 | desc = (test.__doc__ or "No description").strip().split('\n')[0] |
| 480 | |
Rich Lane | e811e7b | 2013-01-03 13:36:54 -0800 | [diff] [blame] | 481 | groups = set(test._groups) - set(["all", "standard", modname]) |
Rich Lane | 37f4211 | 2013-01-03 13:41:49 -0800 | [diff] [blame] | 482 | all_groups.update(test._groups) |
Rich Lane | e811e7b | 2013-01-03 13:36:54 -0800 | [diff] [blame] | 483 | if groups: |
| 484 | desc = "(%s) %s" % (",".join(groups), desc) |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 485 | if hasattr(test, "_versions"): |
| 486 | desc = "(%s) %s" % (",".join(sorted(test._versions)), desc) |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 487 | |
Rich Lane | e811e7b | 2013-01-03 13:36:54 -0800 | [diff] [blame] | 488 | start_str = " %s%s %s:" % (test._nonstandard and "*" or " ", |
| 489 | test._disabled and "!" or " ", |
| 490 | testname) |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 491 | print(" %22s : %s" % (start_str, desc)) |
Dan Talayco | 7f8dba8 | 2012-04-12 12:58:52 -0700 | [diff] [blame] | 492 | test_count += 1 |
Dan Talayco | 79f3608 | 2010-03-11 16:53:53 -0800 | [diff] [blame] | 493 | print |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 494 | print("'%d' modules shown with a total of '%d' tests\n" % |
| 495 | (mod_count, test_count)) |
| 496 | print("Test groups: %s" % (', '.join(sorted(all_groups)))) |
Rich Lane | 37f4211 | 2013-01-03 13:41:49 -0800 | [diff] [blame] | 497 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 498 | sys.exit(0) |
| 499 | |
Rich Lane | 5a9a192 | 2013-01-11 14:29:30 -0800 | [diff] [blame] | 500 | test_modules = prune_tests(test_specs, test_modules, config["openflow_version"]) |
Rich Lane | d8e4548 | 2013-01-02 17:36:21 -0800 | [diff] [blame] | 501 | |
Jeffrey Townsend | 6614f97 | 2012-08-16 13:27:18 -0700 | [diff] [blame] | 502 | # Check if test list is requested; display and exit if so |
| 503 | if config["list_test_names"]: |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 504 | for (modname, (mod, tests)) in test_modules.items(): |
Rich Lane | 943be67 | 2012-10-04 19:20:16 -0700 | [diff] [blame] | 505 | for (testname, test) in tests.items(): |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 506 | print("%s.%s" % (modname, testname)) |
| 507 | |
Jeffrey Townsend | 6614f97 | 2012-08-16 13:27:18 -0700 | [diff] [blame] | 508 | sys.exit(0) |
| 509 | |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 510 | # Generate the test suite |
| 511 | #@todo Decide if multiple suites are ever needed |
| 512 | suite = unittest.TestSuite() |
| 513 | |
Rich Lane | 62b4fb1 | 2015-04-02 18:04:10 -0700 | [diff] [blame] | 514 | sorted_tests = [] |
Rich Lane | c72ef46 | 2015-04-02 17:52:44 -0700 | [diff] [blame] | 515 | for (modname, (mod, tests)) in sorted(test_modules.items()): |
| 516 | for (testname, test) in sorted(tests.items()): |
Rich Lane | 62b4fb1 | 2015-04-02 18:04:10 -0700 | [diff] [blame] | 517 | sorted_tests.append(test) |
| 518 | |
| 519 | if config["random_order"]: |
| 520 | random.shuffle(sorted_tests) |
| 521 | |
| 522 | for test in sorted_tests: |
| 523 | suite.addTest(test()) |
Dan Talayco | 2c0dba3 | 2010-03-06 22:47:06 -0800 | [diff] [blame] | 524 | |
Rich Lane | 51590f6 | 2012-10-09 15:06:29 -0700 | [diff] [blame] | 525 | # Allow platforms to import each other |
| 526 | sys.path.append(config["platform_dir"]) |
| 527 | |
Rich Lane | 8aebc5e | 2012-09-25 17:57:53 -0700 | [diff] [blame] | 528 | # Load the platform module |
| 529 | platform_name = config["platform"] |
| 530 | logging.info("Importing platform: " + platform_name) |
| 531 | platform_mod = None |
| 532 | try: |
Rich Lane | 483e154 | 2012-10-05 09:29:39 -0700 | [diff] [blame] | 533 | 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] | 534 | except: |
| 535 | logging.warn("Failed to import " + platform_name + " platform module") |
| 536 | raise |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 537 | |
| 538 | try: |
Rich Lane | 8aebc5e | 2012-09-25 17:57:53 -0700 | [diff] [blame] | 539 | platform_mod.platform_config_update(config) |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 540 | except: |
| 541 | logging.warn("Could not run platform host configuration") |
Rich Lane | ef403e5 | 2012-07-09 14:59:43 -0700 | [diff] [blame] | 542 | raise |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 543 | |
| 544 | if not config["port_map"]: |
Rich Lane | 8aebc5e | 2012-09-25 17:57:53 -0700 | [diff] [blame] | 545 | die("Interface port map was not defined by the platform. Exiting.") |
Dan Talayco | 4837010 | 2010-03-03 15:17:33 -0800 | [diff] [blame] | 546 | |
| 547 | logging.debug("Configuration: " + str(config)) |
| 548 | logging.info("OF port map: " + str(config["port_map"])) |
| 549 | |
Rich Lane | e55abf7 | 2012-07-26 20:11:42 -0700 | [diff] [blame] | 550 | oftest.ofutils.default_timeout = config["default_timeout"] |
Rich Lane | 48f6aed | 2014-03-23 15:51:02 -0700 | [diff] [blame] | 551 | oftest.ofutils.default_negative_timeout = config["default_negative_timeout"] |
Rich Lane | da3b5ad | 2012-10-03 09:05:32 -0700 | [diff] [blame] | 552 | oftest.testutils.MINSIZE = config['minsize'] |
Rich Lane | e55abf7 | 2012-07-26 20:11:42 -0700 | [diff] [blame] | 553 | |
Rich Lane | ee57ad0 | 2012-07-13 15:40:36 -0700 | [diff] [blame] | 554 | if os.getuid() != 0 and not config["allow_user"]: |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 555 | die("Super-user privileges required. Please re-run with sudo or as root.") |
Rich Lane | d1d9c28 | 2012-10-04 22:07:10 -0700 | [diff] [blame] | 556 | sys.exit(1) |
Brandon Heller | 446c143 | 2010-04-01 12:43:27 -0700 | [diff] [blame] | 557 | |
Rich Lane | 8592bec | 2012-09-03 09:06:59 -0700 | [diff] [blame] | 558 | if config["random_seed"] is not None: |
| 559 | logging.info("Random seed: %d" % config["random_seed"]) |
| 560 | random.seed(config["random_seed"]) |
Dan Talayco | ec6084d | 2013-03-14 10:38:22 -0700 | [diff] [blame] | 561 | else: |
| 562 | # Generate random seed and report to log file |
| 563 | seed = random.randrange(100000000) |
| 564 | logging.info("Autogen random seed: %d" % seed) |
| 565 | random.seed(seed) |
Rich Lane | 8592bec | 2012-09-03 09:06:59 -0700 | [diff] [blame] | 566 | |
Rich Lane | 5bd6cf9 | 2012-10-04 17:57:24 -0700 | [diff] [blame] | 567 | # Remove python's signal handler which raises KeyboardError. Exiting from an |
| 568 | # exception waits for all threads to terminate which might not happen. |
| 569 | signal.signal(signal.SIGINT, signal.SIG_DFL) |
Dan Talayco | ac25cf3 | 2010-07-20 14:08:28 -0700 | [diff] [blame] | 570 | |
| 571 | if __name__ == "__main__": |
Stephen Finucane | 6219af7 | 2014-05-14 21:08:30 +0100 | [diff] [blame] | 572 | profiler = profiler_setup(config) |
Rich Lane | 9631f00 | 2014-03-21 18:05:16 -0700 | [diff] [blame] | 573 | |
Rich Lane | 2c7812c | 2012-12-27 17:52:23 -0800 | [diff] [blame] | 574 | # Set up the dataplane |
| 575 | oftest.dataplane_instance = oftest.dataplane.DataPlane(config) |
Rich Lane | 472aaea | 2013-08-27 09:27:38 -0700 | [diff] [blame] | 576 | pcap_setup(config) |
Rich Lane | 2c7812c | 2012-12-27 17:52:23 -0800 | [diff] [blame] | 577 | for of_port, ifname in config["port_map"].items(): |
| 578 | oftest.dataplane_instance.port_add(ifname, of_port) |
| 579 | |
Dan Talayco | ac25cf3 | 2010-07-20 14:08:28 -0700 | [diff] [blame] | 580 | logging.info("*** TEST RUN START: " + time.asctime()) |
Stephen Finucane | e016cf2 | 2014-04-16 22:04:11 +0100 | [diff] [blame] | 581 | if config["xunit"]: |
Stephen Finucane | 1278255 | 2014-05-20 21:55:04 +0100 | [diff] [blame] | 582 | try: |
| 583 | import xmlrunner # fail-fast if module missing |
| 584 | except ImportError as ex: |
| 585 | oftest.dataplane_instance.kill() |
| 586 | profiler_teardown(profiler) |
| 587 | raise ex |
Stephen Finucane | e016cf2 | 2014-04-16 22:04:11 +0100 | [diff] [blame] | 588 | runner = xmlrunner.XMLTestRunner(output=config["xunit_dir"], |
| 589 | outsuffix="", |
| 590 | verbosity=2) |
| 591 | result = runner.run(suite) |
| 592 | else: |
| 593 | result = unittest.TextTestRunner(verbosity=2).run(suite) |
Rich Lane | 69fd8e0 | 2013-08-23 16:23:42 -0700 | [diff] [blame] | 594 | oftest.open_logfile('main') |
Rich Lane | da3b5ad | 2012-10-03 09:05:32 -0700 | [diff] [blame] | 595 | if oftest.testutils.skipped_test_count > 0: |
Stephen Finucane | 0158865 | 2014-05-15 20:03:12 +0100 | [diff] [blame] | 596 | message = "Skipped %d test(s)" % oftest.testutils.skipped_test_count |
| 597 | logging.info(message) |
| 598 | logging.info("*** TEST RUN END : %s", time.asctime()) |
Rich Lane | 2c7812c | 2012-12-27 17:52:23 -0800 | [diff] [blame] | 599 | |
| 600 | # Shutdown the dataplane |
| 601 | oftest.dataplane_instance.kill() |
| 602 | oftest.dataplane_instance = None |
| 603 | |
Stephen Finucane | 6219af7 | 2014-05-14 21:08:30 +0100 | [diff] [blame] | 604 | profiler_teardown(profiler) |
Rich Lane | 9631f00 | 2014-03-21 18:05:16 -0700 | [diff] [blame] | 605 | |
Rich Lane | 50d42eb | 2012-07-16 11:57:03 -0700 | [diff] [blame] | 606 | if result.failures or result.errors: |
Shudong Zhou | d895fcb | 2012-08-01 19:09:55 -0700 | [diff] [blame] | 607 | # exit(1) hangs sometimes |
| 608 | os._exit(1) |
Rich Lane | da3b5ad | 2012-10-03 09:05:32 -0700 | [diff] [blame] | 609 | if oftest.testutils.skipped_test_count > 0 and config["fail_skipped"]: |
Shudong Zhou | d895fcb | 2012-08-01 19:09:55 -0700 | [diff] [blame] | 610 | os._exit(1) |