blob: 4f60a2a098888b086092e57c44ac2458db417635 [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
42To add a test to the system, either: edit an existing test case file (like
43basic.py) to add a test class which inherits from unittest.TestCase (directly
44or indirectly); or add a new file which includes a function definition
45test_set_init(config). Preferably the file is in the same directory as existing
46tests, though you can specify the directory on the command line. The file
47should not be called "all" as that's reserved for the test-spec.
48
49If you add a new file, the test_set_init function should record the port
50map object from the configuration along with whatever other configuration
51information it may need.
52
53TBD: To add configuration to the system, first add an entry to config_default
Dan Talayco48370102010-03-03 15:17:33 -080054below. If you want this to be a command line parameter, edit config_setup
55to add the option and default value to the parser. Then edit config_get
56to make sure the option value gets copied into the configuration
57structure (which then gets passed to everyone else).
58
59By convention, oft attempts to import the contents of a file by the
60name of $platform.py into the local namespace.
61
62IMPORTANT: That file should define a function platform_config_update which
63takes a configuration dictionary as an argument and updates it for the
64current run. In particular, it should set up config["port_map"] with
65the proper map from OF port numbers to OF interface names.
66
67You can add your own platform, say gp104, by adding a file gp104.py
68that defines the function platform_config_update and then use the
69parameter --platform=gp104 on the command line.
70
71If platform_config_update does not set config["port_map"], an attempt
72is made to generate a default map via the function default_port_map_setup.
73This will use "local" and "remote" for platform names if available
74and generate a sequential map based on the values of base_of_port and
75base_if_index in the configuration structure.
76
Dan Talayco48370102010-03-03 15:17:33 -080077The current model for test sets is basic.py. The current convention is
78that the test set should implement a function test_set_init which takes
79an oft configuration dictionary and returns a unittest.TestSuite object.
80Future test sets should do the same thing.
81
Dan Talayco52f64442010-03-03 15:32:41 -080082Default setup:
83
84The default setup runs locally using veth pairs. To exercise this,
85checkout and build an openflow userspace datapath. Then start it on
86the local host:
Dan Talayco2c0dba32010-03-06 22:47:06 -080087<pre>
Dan Talayco52f64442010-03-03 15:32:41 -080088 sudo ~/openflow/regress/bin/veth_setup.pl
89 sudo ofdatapath -i veth0,veth2,veth4,veth6 punix:/tmp/ofd &
90 sudo ofprotocol unix:/tmp/ofd tcp:127.0.0.1 --fail=closed --max-backoff=1 &
91
92Next, run oft:
93 sudo ./oft --debug=info
Dan Talayco2c0dba32010-03-06 22:47:06 -080094</pre>
Dan Talayco52f64442010-03-03 15:32:41 -080095
96Examine oft.log if things don't work.
Dan Talayco2c0dba32010-03-06 22:47:06 -080097
Dan Talayco1a88c122010-03-07 22:00:20 -080098@todo Support per-component debug levels (esp controller vs dataplane)
99@todo Consider moving oft up a level
Dan Talayco2c0dba32010-03-06 22:47:06 -0800100
Dan Talayco1a88c122010-03-07 22:00:20 -0800101Current test case setup:
Dan Talayco2c0dba32010-03-06 22:47:06 -0800102 Files in this or sub directories (or later, directory specified on
103command line) that contain a function test_set_init are considered test
104files.
105 The function test_set_init examines the test_spec config variable
106and generates a suite of tests.
107 Support a command line option --test_mod so that all tests in that
108module will be run.
109 Support all to specify all tests from the module.
110
Dan Talayco48370102010-03-03 15:17:33 -0800111"""
112
113import sys
114from optparse import OptionParser
Dan Talayco2c0dba32010-03-06 22:47:06 -0800115from subprocess import Popen,PIPE
Dan Talayco48370102010-03-03 15:17:33 -0800116import logging
117import unittest
Dan Talayco2c0dba32010-03-06 22:47:06 -0800118import time
Brandon Heller446c1432010-04-01 12:43:27 -0700119import os
Dan Talayco48370102010-03-03 15:17:33 -0800120
121##@var DEBUG_LEVELS
122# Map from strings to debugging levels
123DEBUG_LEVELS = {
124 'debug' : logging.DEBUG,
125 'verbose' : logging.DEBUG,
126 'info' : logging.INFO,
127 'warning' : logging.WARNING,
128 'warn' : logging.WARNING,
129 'error' : logging.ERROR,
130 'critical' : logging.CRITICAL
131}
132
133_debug_default = "warning"
134_debug_level_default = DEBUG_LEVELS[_debug_default]
135
136##@var config_default
137# The default configuration dictionary for OFT
138config_default = {
139 "platform" : "local",
140 "controller_host" : "127.0.0.1",
141 "controller_port" : 6633,
142 "port_count" : 4,
143 "base_of_port" : 1,
144 "base_if_index" : 1,
Dan Talayco2c0dba32010-03-06 22:47:06 -0800145 "test_spec" : "all",
146 "test_dir" : ".",
Dan Talayco48370102010-03-03 15:17:33 -0800147 "log_file" : "oft.log",
Dan Talayco2c0dba32010-03-06 22:47:06 -0800148 "list" : False,
Dan Talayco48370102010-03-03 15:17:33 -0800149 "debug" : _debug_default,
150 "dbg_level" : _debug_level_default,
151 "port_map" : {}
152}
153
Dan Talayco1a88c122010-03-07 22:00:20 -0800154#@todo Set up a dict of config params so easier to manage:
155# <param> <cmdline flags> <default value> <help> <optional parser>
156
Dan Talayco48370102010-03-03 15:17:33 -0800157# Map options to config structure
158def config_get(opts):
159 "Convert options class to OFT configuration dictionary"
160 cfg = config_default.copy()
Dan Talayco2c0dba32010-03-06 22:47:06 -0800161 for key in cfg.keys():
162 cfg[key] = eval("opts." + key)
163
164 # Special case checks
Dan Talayco48370102010-03-03 15:17:33 -0800165 if opts.debug not in DEBUG_LEVELS.keys():
166 print "Warning: Bad value specified for debug level; using default"
167 opts.debug = _debug_default
Dan Talayco48370102010-03-03 15:17:33 -0800168 cfg["dbg_level"] = DEBUG_LEVELS[cfg["debug"]]
Dan Talayco2c0dba32010-03-06 22:47:06 -0800169
Dan Talayco48370102010-03-03 15:17:33 -0800170 return cfg
171
172def config_setup(cfg_dflt):
173 """
174 Set up the configuration including parsing the arguments
175
176 @param cfg_dflt The default configuration dictionary
177 @return A pair (config, args) where config is an config
178 object and args is any additional arguments from the command line
179 """
180
181 parser = OptionParser(version="%prog 0.1")
182
Dan Talayco2c0dba32010-03-06 22:47:06 -0800183 #@todo parse port map as option?
Dan Talayco48370102010-03-03 15:17:33 -0800184 # Set up default values
Dan Talayco2c0dba32010-03-06 22:47:06 -0800185 for key in cfg_dflt.keys():
186 eval("parser.set_defaults("+key+"=cfg_dflt['"+key+"'])")
Dan Talayco48370102010-03-03 15:17:33 -0800187
Dan Talayco2c0dba32010-03-06 22:47:06 -0800188 #@todo Add options via dictionary
Dan Talayco48370102010-03-03 15:17:33 -0800189 plat_help = """Set the platform type. Valid values include:
190 local: User space virtual ethernet pair setup
191 remote: Remote embedded Broadcom based switch
Dan Talayco673e0852010-03-06 23:09:23 -0800192 Create a new_plat.py file and use --platform=new_plat on the command line
Dan Talayco48370102010-03-03 15:17:33 -0800193 """
194 parser.add_option("-P", "--platform", help=plat_help)
195 parser.add_option("-H", "--host", dest="controller_host",
196 help="The IP/name of the test controller host")
197 parser.add_option("-p", "--port", dest="controller_port",
198 type="int", help="Port number of the test controller")
Dan Talayco673e0852010-03-06 23:09:23 -0800199 test_list_help = """Indicate tests to run. Valid entries are "all" (the
200 default) or a comma separated list of:
201 module Run all tests in the named module
202 testcase Run tests in all modules with the name testcase
203 module.testcase Run the specific test case
204 """
205 parser.add_option("--test-spec", "--test-list", help=test_list_help)
Dan Talayco48370102010-03-03 15:17:33 -0800206 parser.add_option("--log-file",
207 help="Name of log file, empty string to log to console")
208 parser.add_option("--debug",
209 help="Debug lvl: debug, info, warning, error, critical")
Dan Talayco2c0dba32010-03-06 22:47:06 -0800210 parser.add_option("--port-count",
Dan Talayco48370102010-03-03 15:17:33 -0800211 help="Number of ports to use (optional)")
Dan Talayco2c0dba32010-03-06 22:47:06 -0800212 parser.add_option("--base-of-port",
Dan Talayco48370102010-03-03 15:17:33 -0800213 help="Base OpenFlow port number (optional)")
Dan Talayco2c0dba32010-03-06 22:47:06 -0800214 parser.add_option("--base-if-index",
215 help="Base interface index number (optional)")
216 parser.add_option("--list", action="store_true",
Brandon Heller824504e2010-04-01 12:21:37 -0700217 help="List all tests and exit")
Dan Talayco48370102010-03-03 15:17:33 -0800218 # Might need this if other parsers want command line
219 # parser.allow_interspersed_args = False
220 (options, args) = parser.parse_args()
221
222 config = config_get(options)
223
224 return (config, args)
225
226def logging_setup(config):
227 """
228 Set up logging based on config
229 """
230 _format = "%(asctime)s %(name)-10s: %(levelname)-8s: %(message)s"
231 _datefmt = "%H:%M:%S"
Dan Talayco88fc8802010-03-07 11:37:52 -0800232 logging.basicConfig(filename=config["log_file"],
233 level=config["dbg_level"],
234 format=_format, datefmt=_datefmt)
Dan Talayco48370102010-03-03 15:17:33 -0800235
236def default_port_map_setup(config):
237 """
238 Setup the OF port mapping based on config
239 @param config The OFT configuration structure
240 @return Port map dictionary
241 """
242 if (config["base_of_port"] is None) or not config["port_count"]:
243 return None
244 port_map = {}
245 if config["platform"] == "local":
246 # For local, use every other veth port
247 for idx in range(config["port_count"]):
248 port_map[config["base_of_port"] + idx] = "veth" + \
249 str(config["base_if_index"] + (2 * idx))
250 elif config["platform"] == "remote":
251 # For remote, use eth ports
252 for idx in range(config["port_count"]):
253 port_map[config["base_of_port"] + idx] = "eth" + \
254 str(config["base_if_index"] + idx)
255 else:
256 return None
257
258 logging.info("Built default port map")
259 return port_map
260
Dan Talayco2c0dba32010-03-06 22:47:06 -0800261def test_list_generate(config):
262 """Generate the list of all known tests indexed by module name
263
264 Conventions: Test files must implement the function test_set_init
265
Dan Talayco1a88c122010-03-07 22:00:20 -0800266 Test cases are classes that implement runTest
Dan Talayco2c0dba32010-03-06 22:47:06 -0800267
268 @param config The oft configuration dictionary
269 @returns An array of triples (mod-name, module, [tests]) where
270 mod-name is the string (filename) of the module, module is the
271 value returned from __import__'ing the module and [tests] is an
272 array of strings giving the test cases from the module.
273 """
274
275 # Find and import test files
276 p1 = Popen(["find", config["test_dir"], "-type","f"], stdout = PIPE)
277 p2 = Popen(["xargs", "grep", "-l", "-e", "^def test_set_init"],
278 stdin=p1.stdout, stdout=PIPE)
279
280 all_tests = {}
281 mod_name_map = {}
282 # There's an extra empty entry at the end of the list
283 filelist = p2.communicate()[0].split("\n")[:-1]
284 for file in filelist:
Dan Talaycode2a6392010-03-10 13:56:51 -0800285 if file[-1:] == '~':
286 continue
Dan Talayco2c0dba32010-03-06 22:47:06 -0800287 modfile = file.lstrip('./')[:-3]
288
289 try:
290 mod = __import__(modfile)
291 except:
292 logging.warning("Could not import file " + file)
293 continue
294 mod_name_map[modfile] = mod
295 added_fn = False
296 for fn in dir(mod):
297 if 'runTest' in dir(eval("mod." + fn)):
298 if not added_fn:
299 mod_name_map[modfile] = mod
300 all_tests[mod] = []
301 added_fn = True
302 all_tests[mod].append(fn)
303 config["all_tests"] = all_tests
304 config["mod_name_map"] = mod_name_map
305
306def die(msg, exit_val=1):
307 print msg
308 logging.critical(msg)
309 sys.exit(exit_val)
310
311def add_test(suite, mod, name):
312 logging.info("Adding test " + mod.__name__ + "." + name)
313 suite.addTest(eval("mod." + name)())
314
Dan Talayco79f36082010-03-11 16:53:53 -0800315def _space_to(n, str):
316 """
317 Generate a string of spaces to achieve width n given string str
318 If length of str >= n, return one space
319 """
320 spaces = n - len(str)
321 if spaces > 0:
322 return " " * spaces
323 return " "
324
Dan Talayco48370102010-03-03 15:17:33 -0800325#
326# Main script
327#
328
329# Get configuration, set up logging, import platform from file
330(config, args) = config_setup(config_default)
Dan Talayco48370102010-03-03 15:17:33 -0800331
Dan Talayco2c0dba32010-03-06 22:47:06 -0800332test_list_generate(config)
333
334# Check if test list is requested; display and exit if so
335if config["list"]:
Dan Talayco79f36082010-03-11 16:53:53 -0800336 did_print = False
Dan Talayco2c0dba32010-03-06 22:47:06 -0800337 print "\nTest List:"
338 for mod in config["all_tests"].keys():
Dan Talayco79f36082010-03-11 16:53:53 -0800339 if config["test_spec"] != "all" and \
340 config["test_spec"] != mod.__name__:
341 continue
342 did_print = True
343 desc = mod.__doc__.strip()
344 desc = desc.split('\n')[0]
345 start_str = " Module " + mod.__name__ + ": "
346 print start_str + _space_to(22, start_str) + desc
Dan Talayco2c0dba32010-03-06 22:47:06 -0800347 for test in config["all_tests"][mod]:
Dan Talayco79f36082010-03-11 16:53:53 -0800348 desc = eval('mod.' + test + '.__doc__.strip()')
349 desc = desc.split('\n')[0]
350 start_str = " " + test + ":"
351 print start_str + _space_to(22, start_str) + desc
352 print
353 if not did_print:
354 print "No tests found for " + config["test_spec"]
Dan Talayco2c0dba32010-03-06 22:47:06 -0800355 sys.exit(0)
356
357logging_setup(config)
358logging.info("++++++++ " + time.asctime() + " ++++++++")
359
360# Generate the test suite
361#@todo Decide if multiple suites are ever needed
362suite = unittest.TestSuite()
363
364if config["test_spec"] == "all":
365 for mod in config["all_tests"].keys():
366 for test in config["all_tests"][mod]:
367 add_test(suite, mod, test)
368
369else:
370 for ts_entry in config["test_spec"].split(","):
371 parts = ts_entry.split(".")
372
373 if len(parts) == 1: # Either a module or test name
374 if ts_entry in config["mod_name_map"].keys():
375 mod = config["mod_name_map"][ts_entry]
376 for test in config["all_tests"][mod]:
377 add_test(suite, mod, test)
378 else: # Search for matching tests
379 test_found = False
380 for mod in config["all_tests"].keys():
381 if ts_entry in config["all_tests"][mod]:
382 add_test(suite, mod, ts_entry)
383 test_found = True
384 if not test_found:
385 die("Could not find module or test: " + ts_entry)
386
387 elif len(parts) == 2: # module.test
388 if parts[0] not in config["mod_name_map"]:
389 die("Unknown module in test spec: " + ts_entry)
390 mod = config["mod_name_map"][parts[0]]
391 if parts[1] in config["all_tests"][mod]:
392 add_test(suite, mod, parts[1])
393 else:
394 die("No known test matches: " + ts_entry)
395
396 else:
397 die("Bad test spec: " + ts_entry)
398
399# Check if platform specified
Dan Talayco48370102010-03-03 15:17:33 -0800400if config["platform"]:
401 _imp_string = "from " + config["platform"] + " import *"
Dan Talayco2c0dba32010-03-06 22:47:06 -0800402 logging.info("Importing platform: " + _imp_string)
Dan Talayco48370102010-03-03 15:17:33 -0800403 try:
404 exec(_imp_string)
405 except:
406 logging.warn("Failed to import " + config["platform"] + " file")
407
408try:
409 platform_config_update(config)
410except:
411 logging.warn("Could not run platform host configuration")
412
413if not config["port_map"]:
414 # Try to set up default port mapping if not done by platform
415 config["port_map"] = default_port_map_setup(config)
416
417if not config["port_map"]:
Dan Talayco2c0dba32010-03-06 22:47:06 -0800418 die("Interface port map is not defined. Exiting")
Dan Talayco48370102010-03-03 15:17:33 -0800419
420logging.debug("Configuration: " + str(config))
421logging.info("OF port map: " + str(config["port_map"]))
422
423# Init the test sets
Dan Talayco2c0dba32010-03-06 22:47:06 -0800424for (modname,mod) in config["mod_name_map"].items():
425 try:
426 mod.test_set_init(config)
427 except:
428 logging.warning("Could not run test_set_init for " + modname)
Dan Talayco48370102010-03-03 15:17:33 -0800429
Dan Talayco2c0dba32010-03-06 22:47:06 -0800430if config["dbg_level"] == logging.CRITICAL:
431 _verb = 0
432elif config["dbg_level"] >= logging.WARNING:
433 _verb = 1
434else:
435 _verb = 2
Dan Talayco48370102010-03-03 15:17:33 -0800436
Brandon Heller446c1432010-04-01 12:43:27 -0700437if os.getuid() != 0:
438 print "ERROR: Super-user privileges required. Please re-run with " \
439 "sudo or as root."
440 exit(1)
441
Dan Talayco2c0dba32010-03-06 22:47:06 -0800442logging.info("*** TEST RUN START: " + time.asctime())
443unittest.TextTestRunner(verbosity=_verb).run(suite)
444logging.info("*** TEST RUN END : " + time.asctime())
Dan Talayco48370102010-03-03 15:17:33 -0800445