blob: 21e2f1f8e42f7b52e034219354d0039e63f7b9cd [file] [log] [blame]
Dave Wallace8800f732023-08-31 00:47:44 -04001from asfframework import VppTestRunner
2from framework import VppTestCase
adrianvillin6facf8c2023-10-24 12:28:31 +02003import unittest
4from config import config
5from scapy.layers.l2 import Ether
6from scapy.packet import Raw
7from scapy.layers.inet import IP, UDP
8from random import randint
9from util import ppp
10
11
12@unittest.skipIf("mdata" in config.excluded_plugins, "Exclude mdata plugin tests")
13class TestMdataCli(VppTestCase):
14 """mdata plugin test"""
15
16 @classmethod
17 def setUpClass(cls):
18 super(TestMdataCli, cls).setUpClass()
19 try:
20 cls.create_pg_interfaces(range(2))
21 for i in cls.pg_interfaces:
22 i.config_ip4()
23 i.resolve_arp()
24 i.admin_up()
25 except Exception:
26 cls.tearDownClass()
27 raise
28
29 @classmethod
30 def tearDownClass(cls):
31 for i in cls.pg_interfaces:
32 i.unconfig_ip4()
33 i.admin_down()
34 super(TestMdataCli, cls).tearDownClass()
35
36 # https://fd.io/docs/vpp/master/developer/tests/overview.html#example-how-to-add-a-new-test
37 def create_stream(self, src_if, dst_if, count):
38 packets = []
39 for i in range(count):
40 info = self.create_packet_info(src_if, dst_if)
41 payload = self.info_to_payload(info)
42
43 p = (
44 Ether(dst=src_if.local_mac, src=src_if.remote_mac)
45 / IP(src=src_if.remote_ip4, dst=dst_if.remote_ip4)
Dave Wallace6e66ea72023-10-31 23:20:47 -040046 / UDP(sport=randint(49152, 65535), dport=5678)
adrianvillin6facf8c2023-10-24 12:28:31 +020047 / Raw(payload)
48 )
49
50 info.data = p.copy()
51 packets.append(p)
52
53 return packets
54
55 def verify_capture(self, src_if, dst_if, capture):
56 packet_info = None
57 for packet in capture:
58 try:
59 ip = packet[IP]
60 udp = packet[UDP]
Dave Wallace8800f732023-08-31 00:47:44 -040061 self.logger.debug(f"Converting payload to info for {packet[Raw]}")
adrianvillin6facf8c2023-10-24 12:28:31 +020062 # convert the payload to packet info object
63 payload_info = self.payload_to_info(packet[Raw])
64 # make sure the indexes match
65 self.assert_equal(
66 payload_info.src, src_if.sw_if_index, "source sw_if_index"
67 )
68 self.assert_equal(
69 payload_info.dst, dst_if.sw_if_index, "destination sw_if_index"
70 )
71 packet_info = self.get_next_packet_info_for_interface2(
72 src_if.sw_if_index, dst_if.sw_if_index, packet_info
73 )
74 # make sure we didn't run out of saved packets
75 self.assertIsNotNone(packet_info)
76 self.assert_equal(
77 payload_info.index, packet_info.index, "packet info index"
78 )
79 saved_packet = packet_info.data # fetch the saved packet
80 # assert the values match
81 self.assert_equal(ip.src, saved_packet[IP].src, "IP source address")
82 # ... more assertions here
83 self.assert_equal(udp.sport, saved_packet[UDP].sport, "UDP source port")
84 except Exception:
85 self.logger.error(ppp("Unexpected or invalid packet:", packet))
86 raise
87 remaining_packet = self.get_next_packet_info_for_interface2(
88 src_if.sw_if_index, dst_if.sw_if_index, packet_info
89 )
90 self.assertIsNone(
91 remaining_packet,
92 "Interface %s: Packet expected from interface "
93 "%s didn't arrive" % (dst_if.name, src_if.name),
94 )
95
96 def test_mdata_cli(self):
97 """turn on mdata tracking, send packets, verify, check CLI output"""
98 self.vapi.cli("buffer metadata tracking on")
99
100 packets = self.create_stream(self.pg0, self.pg1, 5)
101 self.pg0.add_stream(packets)
102 self.pg0.enable_capture()
103 self.pg1.enable_capture()
104 self.pg_start()
105
106 capture = self.pg1.get_capture()
107 self.pg0.assert_nothing_captured()
108 self.verify_capture(self.pg0, self.pg1, capture)
109
110 result = self.vapi.cli("show buffer metadata")
111 expected = [
112 "ip4-input",
113 "ip4-rewrite",
114 "ip4-lookup",
115 "ethernet-input",
116 "pg1-tx",
117 "pg1-output",
118 ]
119 for entry in expected:
120 self.assertIn(entry, result)
121 self.vapi.cli("buffer metadata tracking off")
122
123
124if __name__ == "__main__":
125 unittest.main(testRunner=VppTestRunner)