blob: 85a50fb2b3f019ab88924e280f375e6f9df2a435 [file] [log] [blame]
Dan Talayco48370102010-03-03 15:17:33 -08001#!/usr/bin/env python
2"""
3@package oft
4
5OpenFlow test framework top level script
6
7This script is the entry point for running OpenFlow tests
8using the OFT framework.
9
10The global configuration is passed around in a dictionary
Brandon Heller88f709d2010-04-01 12:29:56 -070011generally called config. The keys have the following
Dan Talayco48370102010-03-03 15:17:33 -080012significance.
13
Dan Talayco2c0dba32010-03-06 22:47:06 -080014<pre>
Dan Talayco48370102010-03-03 15:17:33 -080015 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
18 port_count : (Optional) Number of ports in dataplane
19 base_of_port : (Optional) Base OpenFlow port number in dataplane
20 base_if_index : (Optional) Base OS network interface for dataplane
Dan Talayco2c0dba32010-03-06 22:47:06 -080021 test_dir : (TBD) Directory to search for test files (default .)
Dan Talayco48370102010-03-03 15:17:33 -080022 test_spec : (TBD) Specification of test(s) to run
23 log_file : Filename for test logging
Dan Talayco2c0dba32010-03-06 22:47:06 -080024 list : Boolean: List all tests and exit
Dan Talayco48370102010-03-03 15:17:33 -080025 debug : String giving debug level (info, warning, error...)
Dan Talayco2c0dba32010-03-06 22:47:06 -080026</pre>
Dan Talayco48370102010-03-03 15:17:33 -080027
28See config_defaults below for the default values.
29
Dan Talayco2c0dba32010-03-06 22:47:06 -080030The following are stored in the config dictionary, but are not currently
31configurable through the command line.
32
33<pre>
34 dbg_level : logging module value of debug level
35 port_map : Map of dataplane OpenFlow port to OS interface names
36 test_mod_map : Dictionary indexed by module names and whose value
37 is the module reference
38 all_tests : Dictionary indexed by module reference and whose
39 value is a list of functions in that module
40</pre>
41
Dan Talaycoc24aaae2010-07-08 14:05:24 -070042Each test may be assigned a priority by setting test_prio["TestName"] in
43the respective module. For now, the only use of this is to avoid
44automatic inclusion of tests into the default list. This is done by
45setting the test_prio value less than 0. Eventually we may add ordering
46of test execution by test priority.
47
Dan Talayco2c0dba32010-03-06 22:47:06 -080048To add a test to the system, either: edit an existing test case file (like
49basic.py) to add a test class which inherits from unittest.TestCase (directly
50or indirectly); or add a new file which includes a function definition
51test_set_init(config). Preferably the file is in the same directory as existing
52tests, though you can specify the directory on the command line. The file
53should not be called "all" as that's reserved for the test-spec.
54
55If you add a new file, the test_set_init function should record the port
56map object from the configuration along with whatever other configuration
57information it may need.
58
59TBD: To add configuration to the system, first add an entry to config_default
Dan Talayco48370102010-03-03 15:17:33 -080060below. If you want this to be a command line parameter, edit config_setup
61to add the option and default value to the parser. Then edit config_get
62to make sure the option value gets copied into the configuration
63structure (which then gets passed to everyone else).
64
65By convention, oft attempts to import the contents of a file by the
66name of $platform.py into the local namespace.
67
68IMPORTANT: That file should define a function platform_config_update which
69takes a configuration dictionary as an argument and updates it for the
70current run. In particular, it should set up config["port_map"] with
71the proper map from OF port numbers to OF interface names.
72
73You can add your own platform, say gp104, by adding a file gp104.py
74that defines the function platform_config_update and then use the
75parameter --platform=gp104 on the command line.
76
77If platform_config_update does not set config["port_map"], an attempt
78is made to generate a default map via the function default_port_map_setup.
79This will use "local" and "remote" for platform names if available
80and generate a sequential map based on the values of base_of_port and
81base_if_index in the configuration structure.
82
Dan Talayco48370102010-03-03 15:17:33 -080083The current model for test sets is basic.py. The current convention is
84that the test set should implement a function test_set_init which takes
85an oft configuration dictionary and returns a unittest.TestSuite object.
86Future test sets should do the same thing.
87
Dan Talayco52f64442010-03-03 15:32:41 -080088Default setup:
89
90The default setup runs locally using veth pairs. To exercise this,
91checkout and build an openflow userspace datapath. Then start it on
92the local host:
Dan Talayco2c0dba32010-03-06 22:47:06 -080093<pre>
Dan Talayco52f64442010-03-03 15:32:41 -080094 sudo ~/openflow/regress/bin/veth_setup.pl
95 sudo ofdatapath -i veth0,veth2,veth4,veth6 punix:/tmp/ofd &
96 sudo ofprotocol unix:/tmp/ofd tcp:127.0.0.1 --fail=closed --max-backoff=1 &
97
98Next, run oft:
99 sudo ./oft --debug=info
Dan Talayco2c0dba32010-03-06 22:47:06 -0800100</pre>
Dan Talayco52f64442010-03-03 15:32:41 -0800101
102Examine oft.log if things don't work.
Dan Talayco2c0dba32010-03-06 22:47:06 -0800103
Dan Talayco1a88c122010-03-07 22:00:20 -0800104@todo Support per-component debug levels (esp controller vs dataplane)
105@todo Consider moving oft up a level
Dan Talayco2c0dba32010-03-06 22:47:06 -0800106
Dan Talayco1a88c122010-03-07 22:00:20 -0800107Current test case setup:
Dan Talayco2c0dba32010-03-06 22:47:06 -0800108 Files in this or sub directories (or later, directory specified on
109command line) that contain a function test_set_init are considered test
110files.
111 The function test_set_init examines the test_spec config variable
112and generates a suite of tests.
113 Support a command line option --test_mod so that all tests in that
114module will be run.
115 Support all to specify all tests from the module.
116
Dan Talayco48370102010-03-03 15:17:33 -0800117"""
118
119import sys
120from optparse import OptionParser
Dan Talayco2c0dba32010-03-06 22:47:06 -0800121from subprocess import Popen,PIPE
Dan Talayco48370102010-03-03 15:17:33 -0800122import logging
123import unittest
Dan Talayco2c0dba32010-03-06 22:47:06 -0800124import time
Brandon Heller446c1432010-04-01 12:43:27 -0700125import os
Rich Lane6b452bc2012-07-09 16:52:21 -0700126import imp
Dan Talayco48370102010-03-03 15:17:33 -0800127
Rich Lane39878042012-07-09 14:45:35 -0700128pydir = os.path.join(os.path.dirname(__file__), '..', 'src', 'python')
129if os.path.exists(os.path.join(pydir, 'oftest')):
130 # Running from source tree
131 sys.path.insert(0, pydir)
132
Dan Talaycoba3745c2010-07-21 21:51:08 -0700133import testutils
Rich Lanee55abf72012-07-26 20:11:42 -0700134import oftest.ofutils
Dan Talaycoba3745c2010-07-21 21:51:08 -0700135
Dan Talayco02eca0b2010-04-15 16:09:43 -0700136try:
137 import scapy.all as scapy
138except:
139 try:
140 import scapy as scapy
141 except:
142 sys.exit("Need to install scapy for packet parsing")
143
Dan Talaycod7c80d12012-04-03 15:20:57 -0700144##@var Profile module
145profile_mod = None
146
Dan Talayco48370102010-03-03 15:17:33 -0800147##@var DEBUG_LEVELS
148# Map from strings to debugging levels
149DEBUG_LEVELS = {
150 'debug' : logging.DEBUG,
151 'verbose' : logging.DEBUG,
152 'info' : logging.INFO,
153 'warning' : logging.WARNING,
154 'warn' : logging.WARNING,
155 'error' : logging.ERROR,
156 'critical' : logging.CRITICAL
157}
158
159_debug_default = "warning"
160_debug_level_default = DEBUG_LEVELS[_debug_default]
161
162##@var config_default
163# The default configuration dictionary for OFT
164config_default = {
Dan Talayco551befa2010-07-15 17:05:32 -0700165 "param" : None,
Dan Talayco48370102010-03-03 15:17:33 -0800166 "platform" : "local",
Rich Lane941d1dd2012-07-30 14:27:53 -0700167 "platform_args" : None,
Rich Lane1aeccc42012-07-29 17:58:10 -0700168 "controller_host" : "0.0.0.0",
Dan Talayco48370102010-03-03 15:17:33 -0800169 "controller_port" : 6633,
170 "port_count" : 4,
171 "base_of_port" : 1,
172 "base_if_index" : 1,
Dan Talaycocf26b7a2011-08-05 10:15:35 -0700173 "relax" : False,
Dan Talayco2c0dba32010-03-06 22:47:06 -0800174 "test_spec" : "all",
Rich Lane9d7330a2012-07-10 14:37:44 -0700175 "test_dir" : os.path.dirname(__file__),
Dan Talayco48370102010-03-03 15:17:33 -0800176 "log_file" : "oft.log",
Dan Talayco2c0dba32010-03-06 22:47:06 -0800177 "list" : False,
Dan Talayco48370102010-03-03 15:17:33 -0800178 "debug" : _debug_default,
179 "dbg_level" : _debug_level_default,
Dan Talaycoac25cf32010-07-20 14:08:28 -0700180 "port_map" : {},
Dan Talaycod7c80d12012-04-03 15:20:57 -0700181 "test_params" : "None",
Rich Laneee57ad02012-07-13 15:40:36 -0700182 "profile" : None,
183 "allow_user" : False,
Rich Lane9a84a4f2012-07-17 12:27:42 -0700184 "fail_skipped" : False,
Rich Lanee55abf72012-07-26 20:11:42 -0700185 "default_timeout" : 2,
Dan Talayco48370102010-03-03 15:17:33 -0800186}
187
Dan Talaycoc24aaae2010-07-08 14:05:24 -0700188# Default test priority
189TEST_PRIO_DEFAULT=100
Dan Talaycod7c80d12012-04-03 15:20:57 -0700190TEST_PRIO_SKIP=-1
Dan Talaycoc24aaae2010-07-08 14:05:24 -0700191
Dan Talayco1a88c122010-03-07 22:00:20 -0800192#@todo Set up a dict of config params so easier to manage:
193# <param> <cmdline flags> <default value> <help> <optional parser>
194
Dan Talayco48370102010-03-03 15:17:33 -0800195# Map options to config structure
196def config_get(opts):
197 "Convert options class to OFT configuration dictionary"
198 cfg = config_default.copy()
Dan Talayco2c0dba32010-03-06 22:47:06 -0800199 for key in cfg.keys():
200 cfg[key] = eval("opts." + key)
201
202 # Special case checks
Dan Talayco48370102010-03-03 15:17:33 -0800203 if opts.debug not in DEBUG_LEVELS.keys():
204 print "Warning: Bad value specified for debug level; using default"
205 opts.debug = _debug_default
Dan Talayco02eca0b2010-04-15 16:09:43 -0700206 if opts.verbose:
207 cfg["debug"] = "verbose"
Dan Talayco48370102010-03-03 15:17:33 -0800208 cfg["dbg_level"] = DEBUG_LEVELS[cfg["debug"]]
Dan Talayco2c0dba32010-03-06 22:47:06 -0800209
Dan Talayco48370102010-03-03 15:17:33 -0800210 return cfg
211
212def config_setup(cfg_dflt):
213 """
214 Set up the configuration including parsing the arguments
215
216 @param cfg_dflt The default configuration dictionary
217 @return A pair (config, args) where config is an config
218 object and args is any additional arguments from the command line
219 """
220
221 parser = OptionParser(version="%prog 0.1")
222
Dan Talayco2c0dba32010-03-06 22:47:06 -0800223 #@todo parse port map as option?
Dan Talayco48370102010-03-03 15:17:33 -0800224 # Set up default values
Dan Talayco2c0dba32010-03-06 22:47:06 -0800225 for key in cfg_dflt.keys():
226 eval("parser.set_defaults("+key+"=cfg_dflt['"+key+"'])")
Dan Talayco48370102010-03-03 15:17:33 -0800227
Dan Talayco2c0dba32010-03-06 22:47:06 -0800228 #@todo Add options via dictionary
Dan Talayco48370102010-03-03 15:17:33 -0800229 plat_help = """Set the platform type. Valid values include:
230 local: User space virtual ethernet pair setup
231 remote: Remote embedded Broadcom based switch
Dan Talayco673e0852010-03-06 23:09:23 -0800232 Create a new_plat.py file and use --platform=new_plat on the command line
Dan Talayco48370102010-03-03 15:17:33 -0800233 """
Rich Lane941d1dd2012-07-30 14:27:53 -0700234 parser.add_option("-a", "--platform-args", help="Custom arguments per platform.")
Dan Talayco48370102010-03-03 15:17:33 -0800235 parser.add_option("-P", "--platform", help=plat_help)
236 parser.add_option("-H", "--host", dest="controller_host",
237 help="The IP/name of the test controller host")
238 parser.add_option("-p", "--port", dest="controller_port",
239 type="int", help="Port number of the test controller")
Dan Talayco673e0852010-03-06 23:09:23 -0800240 test_list_help = """Indicate tests to run. Valid entries are "all" (the
Dan Talaycocfa172f2012-03-23 12:03:00 -0700241 default) or a comma separated list of:
242 module Run all tests in the named module
Dan Talayco673e0852010-03-06 23:09:23 -0800243 testcase Run tests in all modules with the name testcase
244 module.testcase Run the specific test case
245 """
Rich Lanef261a102012-07-25 13:41:38 -0700246 parser.add_option("-T", "--test-spec", "--test-list", help=test_list_help)
Dan Talayco48370102010-03-03 15:17:33 -0800247 parser.add_option("--log-file",
248 help="Name of log file, empty string to log to console")
249 parser.add_option("--debug",
250 help="Debug lvl: debug, info, warning, error, critical")
Dan Talayco02eca0b2010-04-15 16:09:43 -0700251 parser.add_option("--port-count", type="int",
Dan Talayco48370102010-03-03 15:17:33 -0800252 help="Number of ports to use (optional)")
Dan Talayco02eca0b2010-04-15 16:09:43 -0700253 parser.add_option("--base-of-port", type="int",
Dan Talayco48370102010-03-03 15:17:33 -0800254 help="Base OpenFlow port number (optional)")
Dan Talayco02eca0b2010-04-15 16:09:43 -0700255 parser.add_option("--base-if-index", type="int",
Dan Talayco2c0dba32010-03-06 22:47:06 -0800256 help="Base interface index number (optional)")
257 parser.add_option("--list", action="store_true",
Brandon Heller824504e2010-04-01 12:21:37 -0700258 help="List all tests and exit")
Dan Talayco02eca0b2010-04-15 16:09:43 -0700259 parser.add_option("--verbose", action="store_true",
260 help="Short cut for --debug=verbose")
Dan Talaycocf26b7a2011-08-05 10:15:35 -0700261 parser.add_option("--relax", action="store_true",
262 help="Relax packet match checks allowing other packets")
Dan Talayco551befa2010-07-15 17:05:32 -0700263 parser.add_option("--param", type="int",
264 help="Parameter sent to test (for debugging)")
Dan Talaycod7c80d12012-04-03 15:20:57 -0700265 parser.add_option("--profile",
266 help="File listing tests to skip/run")
Dan Talaycoac25cf32010-07-20 14:08:28 -0700267 parser.add_option("-t", "--test-params",
Dan Talaycof6e76c02012-03-23 10:56:12 -0700268 help="""Set test parameters: key=val;...
269 NOTE: key MUST be a valid Python identifier, egr_count not egr-count
270 See --list""")
Rich Laneee57ad02012-07-13 15:40:36 -0700271 parser.add_option("--allow-user", action="store_true",
272 help="Proceed even if oftest is not run as root")
Rich Lane9a84a4f2012-07-17 12:27:42 -0700273 parser.add_option("--fail-skipped", action="store_true",
274 help="Return failure if any test was skipped")
Rich Lanee55abf72012-07-26 20:11:42 -0700275 parser.add_option("--default-timeout", type="int",
276 help="Timeout in seconds for most operations")
Dan Talayco48370102010-03-03 15:17:33 -0800277 # Might need this if other parsers want command line
278 # parser.allow_interspersed_args = False
279 (options, args) = parser.parse_args()
280
281 config = config_get(options)
282
283 return (config, args)
284
Dan Talaycod7c80d12012-04-03 15:20:57 -0700285def check_profile(config):
Dan Talaycod15bed52012-04-04 10:39:52 -0700286 """
287 Import a profile from the profiles library
288 """
289
Dan Talaycod7c80d12012-04-03 15:20:57 -0700290 global profile_mod
291 if "profile" in config and config["profile"]:
Dan Talaycod15bed52012-04-04 10:39:52 -0700292 logging.info("Importing profile: %s" % config["profile"])
293 profile_name = "profiles." + config["profile"]
Dan Talaycod7c80d12012-04-03 15:20:57 -0700294 try:
Dan Talaycod15bed52012-04-04 10:39:52 -0700295 top_mod = __import__(profile_name)
296 profile_mod = eval("top_mod." + config["profile"])
297 logging.info("Imported profile %s. Dir: %s" %
298 (config["profile"], str(dir(profile_mod))))
Dan Talaycod7c80d12012-04-03 15:20:57 -0700299 except:
300 logging.info("Could not import profile: %s.py" %
301 config["profile"])
Dan Talaycod15bed52012-04-04 10:39:52 -0700302 print "Failed to import profile: %s" % config["profile"]
Rich Laneef403e52012-07-09 14:59:43 -0700303 raise
Dan Talaycod7c80d12012-04-03 15:20:57 -0700304 else:
305 logging.info("No profile specified")
306
307
Dan Talayco48370102010-03-03 15:17:33 -0800308def logging_setup(config):
309 """
310 Set up logging based on config
311 """
312 _format = "%(asctime)s %(name)-10s: %(levelname)-8s: %(message)s"
313 _datefmt = "%H:%M:%S"
Dan Talayco88fc8802010-03-07 11:37:52 -0800314 logging.basicConfig(filename=config["log_file"],
315 level=config["dbg_level"],
316 format=_format, datefmt=_datefmt)
Dan Talayco48370102010-03-03 15:17:33 -0800317
318def default_port_map_setup(config):
319 """
320 Setup the OF port mapping based on config
321 @param config The OFT configuration structure
322 @return Port map dictionary
323 """
324 if (config["base_of_port"] is None) or not config["port_count"]:
325 return None
326 port_map = {}
327 if config["platform"] == "local":
328 # For local, use every other veth port
329 for idx in range(config["port_count"]):
330 port_map[config["base_of_port"] + idx] = "veth" + \
331 str(config["base_if_index"] + (2 * idx))
332 elif config["platform"] == "remote":
333 # For remote, use eth ports
334 for idx in range(config["port_count"]):
335 port_map[config["base_of_port"] + idx] = "eth" + \
336 str(config["base_if_index"] + idx)
337 else:
338 return None
339
340 logging.info("Built default port map")
341 return port_map
342
Dan Talayco2c0dba32010-03-06 22:47:06 -0800343def test_list_generate(config):
344 """Generate the list of all known tests indexed by module name
345
346 Conventions: Test files must implement the function test_set_init
347
Dan Talayco1a88c122010-03-07 22:00:20 -0800348 Test cases are classes that implement runTest
Dan Talayco2c0dba32010-03-06 22:47:06 -0800349
350 @param config The oft configuration dictionary
351 @returns An array of triples (mod-name, module, [tests]) where
352 mod-name is the string (filename) of the module, module is the
353 value returned from __import__'ing the module and [tests] is an
354 array of strings giving the test cases from the module.
355 """
356
357 # Find and import test files
358 p1 = Popen(["find", config["test_dir"], "-type","f"], stdout = PIPE)
359 p2 = Popen(["xargs", "grep", "-l", "-e", "^def test_set_init"],
360 stdin=p1.stdout, stdout=PIPE)
361
362 all_tests = {}
363 mod_name_map = {}
364 # There's an extra empty entry at the end of the list
365 filelist = p2.communicate()[0].split("\n")[:-1]
366 for file in filelist:
Dan Talaycoac25cf32010-07-20 14:08:28 -0700367 if file[-1:] == '~' or file[0] == '#':
Dan Talaycode2a6392010-03-10 13:56:51 -0800368 continue
Rich Lane1fac1542012-07-09 16:10:45 -0700369 modname = os.path.splitext(os.path.basename(file))[0]
Dan Talayco2c0dba32010-03-06 22:47:06 -0800370
371 try:
Rich Lane6b452bc2012-07-09 16:52:21 -0700372 if sys.modules.has_key(modname):
373 mod = sys.modules[modname]
374 else:
375 mod = imp.load_module(modname, *imp.find_module(modname, [os.path.dirname(file)]))
Dan Talayco2c0dba32010-03-06 22:47:06 -0800376 except:
377 logging.warning("Could not import file " + file)
Rich Laneef403e52012-07-09 14:59:43 -0700378 raise
Rich Lane520e4152012-07-09 16:18:16 -0700379
380 tests = [k for k in dir(mod) if type(getattr(mod, k)) == type and
381 issubclass(getattr(mod, k), unittest.TestCase)]
382 if tests:
383 mod_name_map[modname] = mod
384 all_tests[mod] = tests
385
Dan Talayco2c0dba32010-03-06 22:47:06 -0800386 config["all_tests"] = all_tests
387 config["mod_name_map"] = mod_name_map
388
389def die(msg, exit_val=1):
390 print msg
391 logging.critical(msg)
392 sys.exit(exit_val)
393
394def add_test(suite, mod, name):
395 logging.info("Adding test " + mod.__name__ + "." + name)
396 suite.addTest(eval("mod." + name)())
397
Dan Talayco79f36082010-03-11 16:53:53 -0800398def _space_to(n, str):
399 """
400 Generate a string of spaces to achieve width n given string str
401 If length of str >= n, return one space
402 """
403 spaces = n - len(str)
404 if spaces > 0:
405 return " " * spaces
406 return " "
407
Dan Talaycoc24aaae2010-07-08 14:05:24 -0700408def test_prio_get(mod, test):
409 """
410 Return the priority of a test
Dan Talaycod7c80d12012-04-03 15:20:57 -0700411
412 If test is in "skip list" from profile, return the skip value
413
Dan Talaycoc24aaae2010-07-08 14:05:24 -0700414 If set in the test_prio variable for the module, return
415 that value. Otherwise return 100 (default)
416 """
Dan Talaycod7c80d12012-04-03 15:20:57 -0700417 if profile_mod:
418 if profile_mod.skip_test_list and test in profile_mod.skip_test_list:
419 logging.info("Skipping test %s due to profile" % test)
420 return TEST_PRIO_SKIP
Dan Talaycoc24aaae2010-07-08 14:05:24 -0700421 if 'test_prio' in dir(mod):
422 if test in mod.test_prio.keys():
423 return mod.test_prio[test]
424 return TEST_PRIO_DEFAULT
425
Dan Talayco48370102010-03-03 15:17:33 -0800426#
427# Main script
428#
429
430# Get configuration, set up logging, import platform from file
431(config, args) = config_setup(config_default)
Dan Talayco48370102010-03-03 15:17:33 -0800432
Dan Talayco2c0dba32010-03-06 22:47:06 -0800433test_list_generate(config)
Dan Talaycocf26b7a2011-08-05 10:15:35 -0700434oft_config = config
Dan Talayco2c0dba32010-03-06 22:47:06 -0800435
436# Check if test list is requested; display and exit if so
437if config["list"]:
Dan Talayco79f36082010-03-11 16:53:53 -0800438 did_print = False
Dan Talayco7f8dba82012-04-12 12:58:52 -0700439 mod_count = 0
440 test_count = 0
Dan Talayco2c0dba32010-03-06 22:47:06 -0800441 print "\nTest List:"
442 for mod in config["all_tests"].keys():
Dan Talayco79f36082010-03-11 16:53:53 -0800443 if config["test_spec"] != "all" and \
444 config["test_spec"] != mod.__name__:
445 continue
Dan Talayco7f8dba82012-04-12 12:58:52 -0700446 mod_count += 1
Dan Talayco79f36082010-03-11 16:53:53 -0800447 did_print = True
448 desc = mod.__doc__.strip()
449 desc = desc.split('\n')[0]
450 start_str = " Module " + mod.__name__ + ": "
451 print start_str + _space_to(22, start_str) + desc
Dan Talayco2c0dba32010-03-06 22:47:06 -0800452 for test in config["all_tests"][mod]:
Dan Talayco551befa2010-07-15 17:05:32 -0700453 try:
454 desc = eval('mod.' + test + '.__doc__.strip()')
455 desc = desc.split('\n')[0]
456 except:
457 desc = "No description"
Dan Talaycoc24aaae2010-07-08 14:05:24 -0700458 if test_prio_get(mod, test) < 0:
459 start_str = " * " + test + ":"
460 else:
461 start_str = " " + test + ":"
Dan Talayco551befa2010-07-15 17:05:32 -0700462 if len(start_str) > 22:
463 desc = "\n" + _space_to(22, "") + desc
Dan Talayco79f36082010-03-11 16:53:53 -0800464 print start_str + _space_to(22, start_str) + desc
Dan Talayco7f8dba82012-04-12 12:58:52 -0700465 test_count += 1
Dan Talayco79f36082010-03-11 16:53:53 -0800466 print
467 if not did_print:
468 print "No tests found for " + config["test_spec"]
Dan Talaycoc24aaae2010-07-08 14:05:24 -0700469 else:
Dan Talayco7f8dba82012-04-12 12:58:52 -0700470 print "%d modules shown with a total of %d tests" % \
471 (mod_count, test_count)
472 print
Dan Talayco7aa0b812010-07-20 14:51:41 -0700473 print "Tests preceded by * are not run by default"
474 print "Tests marked (TP1) after name take --test-params including:"
Dan Talaycoac25cf32010-07-20 14:08:28 -0700475 print " 'vid=N;strip_vlan=bool;add_vlan=bool'"
Dan Talaycod7c80d12012-04-03 15:20:57 -0700476 print "Note that --profile may override which tests are run"
Dan Talayco2c0dba32010-03-06 22:47:06 -0800477 sys.exit(0)
478
479logging_setup(config)
480logging.info("++++++++ " + time.asctime() + " ++++++++")
481
Dan Talaycod7c80d12012-04-03 15:20:57 -0700482check_profile(config)
483
Dan Talayco2c0dba32010-03-06 22:47:06 -0800484# Generate the test suite
485#@todo Decide if multiple suites are ever needed
486suite = unittest.TestSuite()
487
Dan Talaycoc24aaae2010-07-08 14:05:24 -0700488#@todo Allow specification of priority to override prio check
Dan Talayco2c0dba32010-03-06 22:47:06 -0800489if config["test_spec"] == "all":
490 for mod in config["all_tests"].keys():
491 for test in config["all_tests"][mod]:
Dan Talaycoc24aaae2010-07-08 14:05:24 -0700492 # For now, a way to avoid tests
493 if test_prio_get(mod, test) >= 0:
494 add_test(suite, mod, test)
Dan Talayco2c0dba32010-03-06 22:47:06 -0800495
496else:
497 for ts_entry in config["test_spec"].split(","):
498 parts = ts_entry.split(".")
499
500 if len(parts) == 1: # Either a module or test name
501 if ts_entry in config["mod_name_map"].keys():
502 mod = config["mod_name_map"][ts_entry]
503 for test in config["all_tests"][mod]:
Dan Talayco830b4412011-08-23 22:49:21 -0700504 if test_prio_get(mod, test) >= 0:
505 add_test(suite, mod, test)
Dan Talayco2c0dba32010-03-06 22:47:06 -0800506 else: # Search for matching tests
507 test_found = False
508 for mod in config["all_tests"].keys():
509 if ts_entry in config["all_tests"][mod]:
510 add_test(suite, mod, ts_entry)
511 test_found = True
512 if not test_found:
513 die("Could not find module or test: " + ts_entry)
514
515 elif len(parts) == 2: # module.test
516 if parts[0] not in config["mod_name_map"]:
517 die("Unknown module in test spec: " + ts_entry)
518 mod = config["mod_name_map"][parts[0]]
519 if parts[1] in config["all_tests"][mod]:
520 add_test(suite, mod, parts[1])
521 else:
522 die("No known test matches: " + ts_entry)
523
524 else:
525 die("Bad test spec: " + ts_entry)
526
527# Check if platform specified
Dan Talayco48370102010-03-03 15:17:33 -0800528if config["platform"]:
529 _imp_string = "from " + config["platform"] + " import *"
Dan Talayco2c0dba32010-03-06 22:47:06 -0800530 logging.info("Importing platform: " + _imp_string)
Dan Talayco48370102010-03-03 15:17:33 -0800531 try:
532 exec(_imp_string)
533 except:
534 logging.warn("Failed to import " + config["platform"] + " file")
Rich Laneef403e52012-07-09 14:59:43 -0700535 raise
Dan Talayco48370102010-03-03 15:17:33 -0800536
537try:
538 platform_config_update(config)
539except:
540 logging.warn("Could not run platform host configuration")
Rich Laneef403e52012-07-09 14:59:43 -0700541 raise
Dan Talayco48370102010-03-03 15:17:33 -0800542
543if not config["port_map"]:
544 # Try to set up default port mapping if not done by platform
545 config["port_map"] = default_port_map_setup(config)
546
547if not config["port_map"]:
Dan Talayco2c0dba32010-03-06 22:47:06 -0800548 die("Interface port map is not defined. Exiting")
Dan Talayco48370102010-03-03 15:17:33 -0800549
550logging.debug("Configuration: " + str(config))
551logging.info("OF port map: " + str(config["port_map"]))
552
553# Init the test sets
Dan Talayco2c0dba32010-03-06 22:47:06 -0800554for (modname,mod) in config["mod_name_map"].items():
555 try:
556 mod.test_set_init(config)
557 except:
558 logging.warning("Could not run test_set_init for " + modname)
Rich Laneef403e52012-07-09 14:59:43 -0700559 raise
Dan Talayco48370102010-03-03 15:17:33 -0800560
Dan Talayco2c0dba32010-03-06 22:47:06 -0800561if config["dbg_level"] == logging.CRITICAL:
562 _verb = 0
563elif config["dbg_level"] >= logging.WARNING:
564 _verb = 1
565else:
566 _verb = 2
Dan Talayco48370102010-03-03 15:17:33 -0800567
Rich Lanee55abf72012-07-26 20:11:42 -0700568oftest.ofutils.default_timeout = config["default_timeout"]
569
Rich Laneee57ad02012-07-13 15:40:36 -0700570if os.getuid() != 0 and not config["allow_user"]:
Brandon Heller446c1432010-04-01 12:43:27 -0700571 print "ERROR: Super-user privileges required. Please re-run with " \
572 "sudo or as root."
573 exit(1)
574
Dan Talaycoac25cf32010-07-20 14:08:28 -0700575
576if __name__ == "__main__":
577 logging.info("*** TEST RUN START: " + time.asctime())
Rich Lane6a1ecb82012-07-10 18:59:44 -0700578 result = unittest.TextTestRunner(verbosity=_verb).run(suite)
Dan Talaycoba3745c2010-07-21 21:51:08 -0700579 if testutils.skipped_test_count > 0:
580 ts = " tests"
581 if testutils.skipped_test_count == 1: ts = " test"
582 logging.info("Skipped " + str(testutils.skipped_test_count) + ts)
583 print("Skipped " + str(testutils.skipped_test_count) + ts)
Dan Talaycoac25cf32010-07-20 14:08:28 -0700584 logging.info("*** TEST RUN END : " + time.asctime())
Rich Lane50d42eb2012-07-16 11:57:03 -0700585 if result.failures or result.errors:
Rich Lane6a1ecb82012-07-10 18:59:44 -0700586 exit(1)
Rich Lane9a84a4f2012-07-17 12:27:42 -0700587 if testutils.skipped_test_count > 0 and config["fail_skipped"]:
588 exit(1)