blob: a1eec436b8ace0785370dcd31e9b549ae65eb7d5 [file] [log] [blame]
Rich Laneb90a1c42012-10-05 09:16:05 -07001"""
2Base classes for test cases
3
4Tests will usually inherit from one of these classes to have the controller
5and/or dataplane automatically set up.
6"""
7
8import logging
9import unittest
10
Rich Lane2c7812c2012-12-27 17:52:23 -080011import oftest
Rich Laneb90a1c42012-10-05 09:16:05 -070012from oftest import config
13import oftest.controller as controller
Rich Laneb90a1c42012-10-05 09:16:05 -070014import oftest.dataplane as dataplane
Rich Lane9fd05682013-01-10 15:30:38 -080015import ofp
Rich Laneb90a1c42012-10-05 09:16:05 -070016
17class SimpleProtocol(unittest.TestCase):
18 """
19 Root class for setting up the controller
20 """
21
22 def setUp(self):
23 logging.info("** START TEST CASE " + str(self))
24 self.controller = controller.Controller(
Dan Talayco69ca4d62012-11-15 11:50:22 -080025 switch=config["switch_ip"],
Rich Laneb90a1c42012-10-05 09:16:05 -070026 host=config["controller_host"],
27 port=config["controller_port"])
Rich Laneb90a1c42012-10-05 09:16:05 -070028 self.controller.start()
Rich Laneb90a1c42012-10-05 09:16:05 -070029
Rich Laned5915042012-12-31 14:58:35 -080030 try:
31 #@todo Add an option to wait for a pkt transaction to ensure version
32 # compatibilty?
33 self.controller.connect(timeout=20)
34
35 # By default, respond to echo requests
36 self.controller.keep_alive = True
37
38 if not self.controller.active:
39 raise Exception("Controller startup failed")
40 if self.controller.switch_addr is None:
41 raise Exception("Controller startup failed (no switch addr)")
42 logging.info("Connected " + str(self.controller.switch_addr))
Rich Lane78ef8b92013-01-10 12:19:23 -080043 request = ofp.message.features_request()
Rich Laned5915042012-12-31 14:58:35 -080044 reply, pkt = self.controller.transact(request)
45 self.assertTrue(reply is not None,
46 "Did not complete features_request for handshake")
Rich Laneb73808c2013-03-11 15:22:23 -070047 if reply.version == 1:
Rich Laneaf428152013-01-10 12:24:44 -080048 self.supported_actions = reply.actions
49 logging.info("Supported actions: " + hex(self.supported_actions))
Rich Laned5915042012-12-31 14:58:35 -080050 except:
51 self.controller.kill()
52 del self.controller
53 raise
Rich Laneb90a1c42012-10-05 09:16:05 -070054
55 def inheritSetup(self, parent):
56 """
57 Inherit the setup of a parent
58
59 This allows running at test from within another test. Do the
60 following:
61
62 sub_test = SomeTestClass() # Create an instance of the test class
63 sub_test.inheritSetup(self) # Inherit setup of parent
64 sub_test.runTest() # Run the test
65
66 Normally, only the parent's setUp and tearDown are called and
67 the state after the sub_test is run must be taken into account
68 by subsequent operations.
69 """
70 logging.info("** Setup " + str(self) + " inheriting from "
71 + str(parent))
72 self.controller = parent.controller
73 self.supported_actions = parent.supported_actions
74
75 def tearDown(self):
76 logging.info("** END TEST CASE " + str(self))
77 self.controller.shutdown()
Rich Lane7c64a422012-12-31 13:46:34 -080078 self.controller.join()
Rich Lanee7b0ecb2012-12-26 10:01:01 -080079 del self.controller
Rich Laneb90a1c42012-10-05 09:16:05 -070080
Rich Laneb90a1c42012-10-05 09:16:05 -070081 def assertTrue(self, cond, msg):
82 if not cond:
83 logging.error("** FAILED ASSERTION: " + msg)
84 unittest.TestCase.assertTrue(self, cond, msg)
85
86class SimpleDataPlane(SimpleProtocol):
87 """
88 Root class that sets up the controller and dataplane
89 """
90 def setUp(self):
91 SimpleProtocol.setUp(self)
Rich Lane2c7812c2012-12-27 17:52:23 -080092 self.dataplane = oftest.dataplane_instance
93 self.dataplane.flush()
Rich Laneb90a1c42012-10-05 09:16:05 -070094
95 def inheritSetup(self, parent):
96 """
97 Inherit the setup of a parent
98
99 See SimpleProtocol.inheritSetup
100 """
101 SimpleProtocol.inheritSetup(self, parent)
102 self.dataplane = parent.dataplane
103
104 def tearDown(self):
105 logging.info("Teardown for simple dataplane test")
106 SimpleProtocol.tearDown(self)
Rich Laneb90a1c42012-10-05 09:16:05 -0700107 logging.info("Teardown done")
108
Rich Laneb90a1c42012-10-05 09:16:05 -0700109class DataPlaneOnly(unittest.TestCase):
110 """
111 Root class that sets up only the dataplane
112 """
113
114 def setUp(self):
Rich Laneb90a1c42012-10-05 09:16:05 -0700115 logging.info("** START DataPlaneOnly CASE " + str(self))
Rich Lane2c7812c2012-12-27 17:52:23 -0800116 self.dataplane = oftest.dataplane_instance
117 self.dataplane.flush()
Rich Laneb90a1c42012-10-05 09:16:05 -0700118
119 def tearDown(self):
120 logging.info("Teardown for simple dataplane test")
Rich Laneb90a1c42012-10-05 09:16:05 -0700121 logging.info("Teardown done")