Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 1 | #!/usr/bin/env python |
| 2 | # Copyright 2013, Big Switch Networks, Inc. |
| 3 | # |
| 4 | # LoxiGen is licensed under the Eclipse Public License, version 1.0 (EPL), with |
| 5 | # the following special exception: |
| 6 | # |
| 7 | # LOXI Exception |
| 8 | # |
| 9 | # As a special exception to the terms of the EPL, you may distribute libraries |
| 10 | # generated by LoxiGen (LoxiGen Libraries) under the terms of your choice, provided |
| 11 | # that copyright and licensing notices generated by LoxiGen are not altered or removed |
| 12 | # from the LoxiGen Libraries and the notice provided below is (i) included in |
| 13 | # the LoxiGen Libraries, if distributed in source code form and (ii) included in any |
| 14 | # documentation for the LoxiGen Libraries, if distributed in binary form. |
| 15 | # |
| 16 | # Notice: "Copyright 2013, Big Switch Networks, Inc. This library was generated by the LoxiGen Compiler." |
| 17 | # |
| 18 | # You may not use this file except in compliance with the EPL or LOXI Exception. You may obtain |
| 19 | # a copy of the EPL at: |
| 20 | # |
| 21 | # http://www.eclipse.org/legal/epl-v10.html |
| 22 | # |
| 23 | # Unless required by applicable law or agreed to in writing, software |
| 24 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 25 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 26 | # EPL for the specific language governing permissions and limitations |
| 27 | # under the EPL. |
| 28 | import unittest |
Rich Lane | 1d5b010 | 2013-05-10 16:28:17 -0700 | [diff] [blame] | 29 | from testutil import test_serialization |
Rich Lane | c9fc57d | 2013-05-16 16:39:12 -0700 | [diff] [blame] | 30 | from testutil import add_datafiles_tests |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 31 | |
| 32 | try: |
| 33 | import loxi.of13 as ofp |
Rich Lane | 57026dc | 2013-05-01 10:13:16 -0700 | [diff] [blame] | 34 | from loxi.generic_util import OFReader |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 35 | except ImportError: |
| 36 | exit("loxi package not found. Try setting PYTHONPATH.") |
| 37 | |
| 38 | class TestImports(unittest.TestCase): |
| 39 | def test_toplevel(self): |
| 40 | import loxi |
| 41 | self.assertTrue(hasattr(loxi, "ProtocolError")) |
Rich Lane | 00549ea | 2013-04-25 13:33:16 -0700 | [diff] [blame] | 42 | self.assertEquals(loxi.version_names[4], "1.3") |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 43 | ofp = loxi.protocol(4) |
| 44 | self.assertEquals(ofp.OFP_VERSION, 4) |
| 45 | self.assertTrue(hasattr(ofp, "action")) |
| 46 | self.assertTrue(hasattr(ofp, "common")) |
| 47 | self.assertTrue(hasattr(ofp, "const")) |
| 48 | self.assertTrue(hasattr(ofp, "message")) |
Rich Lane | a22233e | 2013-04-25 13:18:41 -0700 | [diff] [blame] | 49 | self.assertTrue(hasattr(ofp, "oxm")) |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 50 | |
| 51 | def test_version(self): |
| 52 | import loxi |
| 53 | self.assertTrue(hasattr(loxi.of13, "ProtocolError")) |
| 54 | self.assertTrue(hasattr(loxi.of13, "OFP_VERSION")) |
| 55 | self.assertEquals(loxi.of13.OFP_VERSION, 4) |
| 56 | self.assertTrue(hasattr(loxi.of13, "action")) |
| 57 | self.assertTrue(hasattr(loxi.of13, "common")) |
| 58 | self.assertTrue(hasattr(loxi.of13, "const")) |
| 59 | self.assertTrue(hasattr(loxi.of13, "message")) |
Rich Lane | a22233e | 2013-04-25 13:18:41 -0700 | [diff] [blame] | 60 | self.assertTrue(hasattr(loxi.of13, "oxm")) |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 61 | |
Rich Lane | e90685c | 2013-04-05 17:27:41 -0700 | [diff] [blame] | 62 | class TestCommon(unittest.TestCase): |
Rich Lane | e90685c | 2013-04-05 17:27:41 -0700 | [diff] [blame] | 63 | def test_list_hello_elem_unpack(self): |
| 64 | buf = ''.join([ |
| 65 | '\x00\x01\x00\x04', # versionbitmap |
| 66 | '\x00\x00\x00\x04', # unknown type |
| 67 | '\x00\x01\x00\x04', # versionbitmap |
| 68 | ]) |
Rich Lane | 57026dc | 2013-05-01 10:13:16 -0700 | [diff] [blame] | 69 | l = ofp.unpack_list_hello_elem(OFReader(buf)) |
Rich Lane | e90685c | 2013-04-05 17:27:41 -0700 | [diff] [blame] | 70 | self.assertEquals(len(l), 2) |
| 71 | self.assertTrue(isinstance(l[0], ofp.hello_elem_versionbitmap)) |
| 72 | self.assertTrue(isinstance(l[1], ofp.hello_elem_versionbitmap)) |
| 73 | |
Rich Lane | c9fc57d | 2013-05-16 16:39:12 -0700 | [diff] [blame] | 74 | # The majority of the serialization tests are created here using the files in |
| 75 | # the test_data directory. |
| 76 | class TestDataFiles(unittest.TestCase): |
| 77 | pass |
| 78 | add_datafiles_tests(TestDataFiles, 'of13/', ofp) |
Rich Lane | e02314c | 2013-05-02 16:42:04 -0700 | [diff] [blame] | 79 | |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 80 | class TestAllOF13(unittest.TestCase): |
| 81 | """ |
| 82 | Round-trips every class through serialization/deserialization. |
| 83 | Not a replacement for handcoded tests because it only uses the |
| 84 | default member values. |
| 85 | """ |
| 86 | |
| 87 | def setUp(self): |
Rich Lane | ea69375 | 2013-03-18 11:05:45 -0700 | [diff] [blame] | 88 | mods = [ofp.action,ofp.message,ofp.common,ofp.oxm] |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 89 | self.klasses = [klass for mod in mods |
| 90 | for klass in mod.__dict__.values() |
| 91 | if hasattr(klass, 'show')] |
| 92 | self.klasses.sort(key=lambda x: str(x)) |
| 93 | |
| 94 | def test_serialization(self): |
| 95 | expected_failures = [ |
Rich Lane | be90eae | 2013-07-22 16:44:26 -0700 | [diff] [blame] | 96 | ofp.action.set_field, # field defaults to None |
Rich Lane | 8692ecd | 2013-05-02 11:33:53 -0700 | [diff] [blame] | 97 | ofp.common.table_feature_prop_apply_actions, |
| 98 | ofp.common.table_feature_prop_apply_actions_miss, |
Rich Lane | 8692ecd | 2013-05-02 11:33:53 -0700 | [diff] [blame] | 99 | ofp.common.table_feature_prop_write_actions, |
| 100 | ofp.common.table_feature_prop_write_actions_miss, |
| 101 | ofp.common.table_features, |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 102 | ofp.message.table_features_stats_reply, |
| 103 | ofp.message.table_features_stats_request, |
| 104 | ] |
| 105 | for klass in self.klasses: |
| 106 | def fn(): |
| 107 | obj = klass() |
| 108 | if hasattr(obj, "xid"): obj.xid = 42 |
| 109 | buf = obj.pack() |
| 110 | obj2 = klass.unpack(buf) |
| 111 | self.assertEquals(obj, obj2) |
| 112 | if klass in expected_failures: |
| 113 | self.assertRaises(Exception, fn) |
| 114 | else: |
| 115 | fn() |
| 116 | |
Rich Lane | 65790d2 | 2013-06-14 00:08:52 -0700 | [diff] [blame] | 117 | def test_parse_message(self): |
| 118 | expected_failures = [ |
Rich Lane | 65790d2 | 2013-06-14 00:08:52 -0700 | [diff] [blame] | 119 | ofp.message.table_features_stats_reply, |
| 120 | ofp.message.table_features_stats_request, |
Rich Lane | 65790d2 | 2013-06-14 00:08:52 -0700 | [diff] [blame] | 121 | ] |
| 122 | for klass in self.klasses: |
| 123 | if not issubclass(klass, ofp.message.Message): |
| 124 | continue |
| 125 | def fn(): |
| 126 | obj = klass(xid=42) |
| 127 | buf = obj.pack() |
| 128 | obj2 = ofp.message.parse_message(buf) |
| 129 | self.assertEquals(obj, obj2) |
| 130 | if klass in expected_failures: |
| 131 | self.assertRaises(Exception, fn) |
| 132 | else: |
| 133 | fn() |
| 134 | |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 135 | def test_show(self): |
Rich Lane | 8ca3b77 | 2013-04-30 13:36:55 -0700 | [diff] [blame] | 136 | expected_failures = [] |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 137 | for klass in self.klasses: |
| 138 | def fn(): |
| 139 | obj = klass() |
| 140 | if hasattr(obj, "xid"): obj.xid = 42 |
| 141 | obj.show() |
| 142 | if klass in expected_failures: |
| 143 | self.assertRaises(Exception, fn) |
| 144 | else: |
| 145 | fn() |
| 146 | |
| 147 | if __name__ == '__main__': |
| 148 | unittest.main() |