diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-03-06 11:58:06 -0800 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-03-07 22:29:44 +0000 |
commit | eaea421e1fefedc47325f970475c5d48c899433c (patch) | |
tree | d325f642804865b6a57bf75f8ba2897bd438a8a2 /test/test_acl_plugin.py | |
parent | ea2450fa2d1e8ba0295ea9861a404796100dad1e (diff) |
Tests: Refactor payload_to_info()
All callers of payload_to_info were required to wrap payload with str().
Refactor to call scapy's payload.load for raw payloads or specify the
specific fieldname.
Change-Id: I1c80599d4df8dc129dbb8274733afaad406d5bcf
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/test_acl_plugin.py')
-rw-r--r-- | test/test_acl_plugin.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_acl_plugin.py b/test/test_acl_plugin.py index ccf495ced1b..fa92513cbb5 100644 --- a/test/test_acl_plugin.py +++ b/test/test_acl_plugin.py @@ -380,10 +380,10 @@ class TestACLplugin(VppTestCase): # Raw data for ICMPv6 are stored in ICMPv6EchoRequest.data if traffic_type == self.ICMP and ip_type == self.IPV6: payload_info = self.payload_to_info( - packet[ICMPv6EchoRequest].data) + packet[ICMPv6EchoRequest], 'data') payload = packet[ICMPv6EchoRequest] else: - payload_info = self.payload_to_info(str(packet[Raw])) + payload_info = self.payload_to_info(packet[Raw]) payload = packet[self.proto_map[payload_info.proto]] except: self.logger.error(ppp("Unexpected or invalid packet " |