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 |
| 29 | |
| 30 | try: |
| 31 | import loxi.of13 as ofp |
Rich Lane | 57026dc | 2013-05-01 10:13:16 -0700 | [diff] [blame] | 32 | from loxi.generic_util import OFReader |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 33 | except ImportError: |
| 34 | exit("loxi package not found. Try setting PYTHONPATH.") |
| 35 | |
| 36 | class TestImports(unittest.TestCase): |
| 37 | def test_toplevel(self): |
| 38 | import loxi |
| 39 | self.assertTrue(hasattr(loxi, "ProtocolError")) |
Rich Lane | 00549ea | 2013-04-25 13:33:16 -0700 | [diff] [blame] | 40 | self.assertEquals(loxi.version_names[4], "1.3") |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 41 | ofp = loxi.protocol(4) |
| 42 | self.assertEquals(ofp.OFP_VERSION, 4) |
| 43 | self.assertTrue(hasattr(ofp, "action")) |
| 44 | self.assertTrue(hasattr(ofp, "common")) |
| 45 | self.assertTrue(hasattr(ofp, "const")) |
| 46 | self.assertTrue(hasattr(ofp, "message")) |
Rich Lane | a22233e | 2013-04-25 13:18:41 -0700 | [diff] [blame] | 47 | self.assertTrue(hasattr(ofp, "oxm")) |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 48 | |
| 49 | def test_version(self): |
| 50 | import loxi |
| 51 | self.assertTrue(hasattr(loxi.of13, "ProtocolError")) |
| 52 | self.assertTrue(hasattr(loxi.of13, "OFP_VERSION")) |
| 53 | self.assertEquals(loxi.of13.OFP_VERSION, 4) |
| 54 | self.assertTrue(hasattr(loxi.of13, "action")) |
| 55 | self.assertTrue(hasattr(loxi.of13, "common")) |
| 56 | self.assertTrue(hasattr(loxi.of13, "const")) |
| 57 | self.assertTrue(hasattr(loxi.of13, "message")) |
Rich Lane | a22233e | 2013-04-25 13:18:41 -0700 | [diff] [blame] | 58 | self.assertTrue(hasattr(loxi.of13, "oxm")) |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 59 | |
Rich Lane | e90685c | 2013-04-05 17:27:41 -0700 | [diff] [blame] | 60 | class TestCommon(unittest.TestCase): |
| 61 | sample_hello_elem_buf = ''.join([ |
| 62 | '\x00\x01', # type |
| 63 | '\x00\x0c', # length |
| 64 | '\x01\x23\x45\x67', # bitmaps[0] |
| 65 | '\x89\xab\xcd\xef', # bitmaps[1] |
| 66 | ]) |
| 67 | |
| 68 | def test_hello_elem_versionbitmap_pack(self): |
| 69 | obj = ofp.hello_elem_versionbitmap(bitmaps=[ofp.uint32(0x01234567),ofp.uint32(0x89abcdef)]) |
| 70 | self.assertEquals(self.sample_hello_elem_buf, obj.pack()) |
| 71 | |
| 72 | def test_hello_elem_versionbitmap_unpack(self): |
| 73 | obj = ofp.hello_elem_versionbitmap.unpack(self.sample_hello_elem_buf) |
| 74 | self.assertEquals(len(obj.bitmaps), 2) |
| 75 | self.assertEquals(obj.bitmaps[0], ofp.uint32(0x01234567)) |
| 76 | self.assertEquals(obj.bitmaps[1], ofp.uint32(0x89abcdef)) |
| 77 | |
| 78 | def test_list_hello_elem_unpack(self): |
| 79 | buf = ''.join([ |
| 80 | '\x00\x01\x00\x04', # versionbitmap |
| 81 | '\x00\x00\x00\x04', # unknown type |
| 82 | '\x00\x01\x00\x04', # versionbitmap |
| 83 | ]) |
Rich Lane | 57026dc | 2013-05-01 10:13:16 -0700 | [diff] [blame] | 84 | l = ofp.unpack_list_hello_elem(OFReader(buf)) |
Rich Lane | e90685c | 2013-04-05 17:27:41 -0700 | [diff] [blame] | 85 | self.assertEquals(len(l), 2) |
| 86 | self.assertTrue(isinstance(l[0], ofp.hello_elem_versionbitmap)) |
| 87 | self.assertTrue(isinstance(l[1], ofp.hello_elem_versionbitmap)) |
| 88 | |
Rich Lane | ea69375 | 2013-03-18 11:05:45 -0700 | [diff] [blame] | 89 | class TestOXM(unittest.TestCase): |
| 90 | def test_oxm_in_phy_port_pack(self): |
| 91 | import loxi.of13 as ofp |
| 92 | obj = ofp.oxm.in_phy_port(value=42) |
| 93 | expected = ''.join([ |
| 94 | '\x80\x00', # class |
| 95 | '\x02', # type/masked |
| 96 | '\x08', # length |
| 97 | '\x00\x00\x00\x2a' # value |
| 98 | ]) |
| 99 | self.assertEquals(expected, obj.pack()) |
| 100 | |
| 101 | def test_oxm_in_phy_port_masked_pack(self): |
| 102 | import loxi.of13 as ofp |
| 103 | obj = ofp.oxm.in_phy_port_masked(value=42, value_mask=0xaabbccdd) |
| 104 | expected = ''.join([ |
| 105 | '\x80\x00', # class |
| 106 | '\x03', # type/masked |
| 107 | '\x0c', # length |
| 108 | '\x00\x00\x00\x2a', # value |
| 109 | '\xaa\xbb\xcc\xdd' # mask |
| 110 | ]) |
| 111 | self.assertEquals(expected, obj.pack()) |
| 112 | |
Rich Lane | 4180564 | 2013-03-19 15:00:26 -0700 | [diff] [blame] | 113 | def test_oxm_ipv6_dst_pack(self): |
| 114 | import loxi.of13 as ofp |
| 115 | obj = ofp.oxm.ipv6_dst(value='\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0d\x0f') |
| 116 | expected = ''.join([ |
| 117 | '\x80\x00', # class |
| 118 | '\x36', # type/masked |
| 119 | '\x14', # length |
| 120 | '\x00\x01\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x0c\x0d\x0d\x0f', # value |
| 121 | ]) |
| 122 | self.assertEquals(expected, obj.pack()) |
| 123 | |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 124 | class TestAllOF13(unittest.TestCase): |
| 125 | """ |
| 126 | Round-trips every class through serialization/deserialization. |
| 127 | Not a replacement for handcoded tests because it only uses the |
| 128 | default member values. |
| 129 | """ |
| 130 | |
| 131 | def setUp(self): |
Rich Lane | ea69375 | 2013-03-18 11:05:45 -0700 | [diff] [blame] | 132 | mods = [ofp.action,ofp.message,ofp.common,ofp.oxm] |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 133 | self.klasses = [klass for mod in mods |
| 134 | for klass in mod.__dict__.values() |
| 135 | if hasattr(klass, 'show')] |
| 136 | self.klasses.sort(key=lambda x: str(x)) |
| 137 | |
| 138 | def test_serialization(self): |
| 139 | expected_failures = [ |
| 140 | ofp.common.action_id, |
| 141 | ofp.common.action_id_bsn_mirror, |
| 142 | ofp.common.action_id_bsn_set_tunnel_dst, |
| 143 | ofp.common.action_id_copy_ttl_in, |
| 144 | ofp.common.action_id_copy_ttl_out, |
| 145 | ofp.common.action_id_dec_mpls_ttl, |
| 146 | ofp.common.action_id_dec_nw_ttl, |
| 147 | ofp.common.action_id_experimenter, |
| 148 | ofp.common.action_id_group, |
| 149 | ofp.common.action_id_header, |
| 150 | ofp.common.action_id_nicira_dec_ttl, |
| 151 | ofp.common.action_id_output, |
| 152 | ofp.common.action_id_pop_mpls, |
| 153 | ofp.common.action_id_pop_pbb, |
| 154 | ofp.common.action_id_pop_vlan, |
| 155 | ofp.common.action_id_push_mpls, |
| 156 | ofp.common.action_id_push_pbb, |
| 157 | ofp.common.action_id_push_vlan, |
| 158 | ofp.common.action_id_set_field, |
| 159 | ofp.common.action_id_set_mpls_ttl, |
| 160 | ofp.common.action_id_set_nw_ttl, |
| 161 | ofp.common.action_id_set_queue, |
| 162 | ofp.common.flow_stats_entry, |
| 163 | ofp.common.group_desc_stats_entry, |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 164 | ofp.common.instruction, |
| 165 | ofp.common.instruction_apply_actions, |
| 166 | ofp.common.instruction_clear_actions, |
| 167 | ofp.common.instruction_experimenter, |
| 168 | ofp.common.instruction_goto_table, |
| 169 | ofp.common.instruction_header, |
| 170 | ofp.common.instruction_meter, |
| 171 | ofp.common.instruction_write_actions, |
| 172 | ofp.common.instruction_write_metadata, |
| 173 | ofp.common.match_v3, |
| 174 | ofp.common.meter_band, |
| 175 | ofp.common.meter_band_drop, |
| 176 | ofp.common.meter_band_dscp_remark, |
| 177 | ofp.common.meter_band_experimenter, |
| 178 | ofp.common.meter_band_header, |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 179 | ofp.common.table_feature_prop, |
| 180 | ofp.common.table_feature_prop_apply_actions, |
| 181 | ofp.common.table_feature_prop_apply_actions_miss, |
| 182 | ofp.common.table_feature_prop_apply_setfield, |
| 183 | ofp.common.table_feature_prop_apply_setfield_miss, |
| 184 | ofp.common.table_feature_prop_experimenter, |
| 185 | ofp.common.table_feature_prop_header, |
| 186 | ofp.common.table_feature_prop_instructions, |
| 187 | ofp.common.table_feature_prop_instructions_miss, |
| 188 | ofp.common.table_feature_prop_match, |
| 189 | ofp.common.table_feature_prop_next_tables, |
| 190 | ofp.common.table_feature_prop_next_tables_miss, |
| 191 | ofp.common.table_feature_prop_wildcards, |
| 192 | ofp.common.table_feature_prop_write_actions, |
| 193 | ofp.common.table_feature_prop_write_actions_miss, |
| 194 | ofp.common.table_feature_prop_write_setfield, |
| 195 | ofp.common.table_feature_prop_write_setfield_miss, |
| 196 | ofp.message.aggregate_stats_request, |
| 197 | ofp.message.flow_add, |
| 198 | ofp.message.flow_delete, |
| 199 | ofp.message.flow_delete_strict, |
| 200 | ofp.message.flow_modify, |
| 201 | ofp.message.flow_modify_strict, |
| 202 | ofp.message.flow_removed, |
| 203 | ofp.message.flow_stats_request, |
| 204 | ofp.message.group_desc_stats_reply, |
| 205 | ofp.message.group_mod, |
| 206 | ofp.message.group_stats_reply, |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 207 | ofp.message.meter_stats_reply, |
| 208 | ofp.message.packet_in, |
| 209 | ofp.message.table_features_stats_reply, |
| 210 | ofp.message.table_features_stats_request, |
| 211 | ] |
| 212 | for klass in self.klasses: |
| 213 | def fn(): |
| 214 | obj = klass() |
| 215 | if hasattr(obj, "xid"): obj.xid = 42 |
| 216 | buf = obj.pack() |
| 217 | obj2 = klass.unpack(buf) |
| 218 | self.assertEquals(obj, obj2) |
| 219 | if klass in expected_failures: |
| 220 | self.assertRaises(Exception, fn) |
| 221 | else: |
| 222 | fn() |
| 223 | |
| 224 | def test_show(self): |
Rich Lane | 8ca3b77 | 2013-04-30 13:36:55 -0700 | [diff] [blame] | 225 | expected_failures = [] |
Rich Lane | 3f07597 | 2013-03-15 22:56:29 -0700 | [diff] [blame] | 226 | for klass in self.klasses: |
| 227 | def fn(): |
| 228 | obj = klass() |
| 229 | if hasattr(obj, "xid"): obj.xid = 42 |
| 230 | obj.show() |
| 231 | if klass in expected_failures: |
| 232 | self.assertRaises(Exception, fn) |
| 233 | else: |
| 234 | fn() |
| 235 | |
| 236 | if __name__ == '__main__': |
| 237 | unittest.main() |