From a0fef2d6df6edcea1c93a3873e6a0093d1f250f9 Mon Sep 17 00:00:00 2001 From: Simon Horman Date: Wed, 26 Feb 2014 16:26:08 +0900 Subject: [PATCH] of14: Add experimenter property to table features reply unit test Signed-off-by: Simon Horman Signed-off-by: FUJITA Tomonori --- .../of14/5-54-ofp_table_features_reply.packet | Bin 11072 -> 11128 bytes ryu/tests/packet_data_generator/src/x5.erl | 14 +++++++- .../5-54-ofp_table_features_reply.packet.json | 33 ++++++++++++++++-- 3 files changed, 43 insertions(+), 4 deletions(-) diff --git a/ryu/tests/packet_data/of14/5-54-ofp_table_features_reply.packet b/ryu/tests/packet_data/of14/5-54-ofp_table_features_reply.packet index 578c0486d6dc5260adfa3c1e2b80bce70faa38f0..6b622a3627f04e61b356081a2c51471946ad4b72 100644 GIT binary patch delta 88 zcmX>Q_9IM)Ram=%0R(s$7(o=vgpERBEaw0J0R0OSh*DG(o|j1kBef%2K4 MVjy~RI?GKp0L;@4p#T5? delta 32 jcmewnb|6fMRao1B0R(s$7(o arp_tha,ipv6_src,ipv6_dst,ipv6_flabel, icmpv6_type,icmpv6_code,ipv6_nd_target, ipv6_nd_sll,ipv6_nd_tll,mpls_label,mpls_tc, - mpls_bos,pbb_isid]}]}, + mpls_bos,pbb_isid]}, + #ofp_table_feature_prop_experimenter{ + experimenter = 101, + exp_type = 0, + data = <<>>}, + #ofp_table_feature_prop_experimenter{ + experimenter = 101, + exp_type = 1, + data = <<1:32>>}, + #ofp_table_feature_prop_experimenter{ + experimenter = 101, + exp_type = 2, + data = <<1:32,2:32>>}]}, #ofp_table_features{ table_id = 1,name = <<"Flow Table 0x01">>, metadata_match = <<"\377\377\377\377\377\377\377\377">>, diff --git a/ryu/tests/unit/ofproto/json/of14/5-54-ofp_table_features_reply.packet.json b/ryu/tests/unit/ofproto/json/of14/5-54-ofp_table_features_reply.packet.json index 3febfcec..93365584 100644 --- a/ryu/tests/unit/ofproto/json/of14/5-54-ofp_table_features_reply.packet.json +++ b/ryu/tests/unit/ofproto/json/of14/5-54-ofp_table_features_reply.packet.json @@ -4,7 +4,7 @@ { "OFPTableFeaturesStats": { "config": 0, - "length": 1112, + "length": 1168, "max_entries": 16777216, "metadata_match": 18446744073709551615, "metadata_write": 18446744073709551615, @@ -1590,8 +1590,35 @@ } ], "type": 14 - } - } + } + }, + { + "OFPTableFeaturePropExperimenter": { + "length": 12, + "type": 65534, + "exp_type": 0, + "experimenter": 101, + "data": [] + } + }, + { + "OFPTableFeaturePropExperimenter": { + "length": 16, + "type": 65534, + "exp_type": 1, + "experimenter": 101, + "data": [1] + } + }, + { + "OFPTableFeaturePropExperimenter": { + "length": 20, + "type": 65534, + "exp_type": 2, + "experimenter": 101, + "data": [1, 2] + } + } ], "table_id": 0 }