blob: cb7e7acf364e264eb0bd1284ba4ec6c981be29e4 [file] [log] [blame]
Damjan Marionf56b77a2016-10-03 19:44:57 +02001#!/usr/bin/env python
2
3import unittest
Klement Sekeraf62ae122016-10-11 11:47:09 +02004from logging import *
Damjan Marionf56b77a2016-10-03 19:44:57 +02005from framework import VppTestCase, VppTestRunner
Damjan Marionf56b77a2016-10-03 19:44:57 +02006from template_bd import BridgeDomain
7
8from scapy.layers.l2 import Ether
9from scapy.layers.inet import IP, UDP
10from scapy_handlers.vxlan import VXLAN
11
12
Klement Sekeraf62ae122016-10-11 11:47:09 +020013class TestVxlan(BridgeDomain, VppTestCase):
Damjan Marionf56b77a2016-10-03 19:44:57 +020014 """ VXLAN Test Case """
15
Damjan Marionf56b77a2016-10-03 19:44:57 +020016 def __init__(self, *args):
17 BridgeDomain.__init__(self)
Damjan Marionf56b77a2016-10-03 19:44:57 +020018 VppTestCase.__init__(self, *args)
19
Damjan Marionf56b77a2016-10-03 19:44:57 +020020 def encapsulate(self, pkt):
Klement Sekeraf62ae122016-10-11 11:47:09 +020021 """
22 Encapsulate the original payload frame by adding VXLAN header with its
23 UDP, IP and Ethernet fields
24 """
25 return (Ether(src=self.pg0.remote_mac, dst=self.pg0.local_mac) /
26 IP(src=self.pg0.remote_ip4, dst=self.pg0.local_ip4) /
27 UDP(sport=self.dport, dport=self.dport, chksum=0) /
28 VXLAN(vni=self.vni) /
Damjan Marionf56b77a2016-10-03 19:44:57 +020029 pkt)
30
Damjan Marionf56b77a2016-10-03 19:44:57 +020031 def decapsulate(self, pkt):
Klement Sekeraf62ae122016-10-11 11:47:09 +020032 """
33 Decapsulate the original payload frame by removing VXLAN header
34 """
Damjan Marionf56b77a2016-10-03 19:44:57 +020035 return pkt[VXLAN].payload
36
Klement Sekeraf62ae122016-10-11 11:47:09 +020037 # Method for checking VXLAN encapsulation.
Damjan Marionf56b77a2016-10-03 19:44:57 +020038 #
39 def check_encapsulation(self, pkt):
40 # TODO: add error messages
Klement Sekeraf62ae122016-10-11 11:47:09 +020041 # Verify source MAC is VPP_MAC and destination MAC is MY_MAC resolved
Damjan Marionf56b77a2016-10-03 19:44:57 +020042 # by VPP using ARP.
Klement Sekeraf62ae122016-10-11 11:47:09 +020043 self.assertEqual(pkt[Ether].src, self.pg0.local_mac)
44 self.assertEqual(pkt[Ether].dst, self.pg0.remote_mac)
45 # Verify VXLAN tunnel source IP is VPP_IP and destination IP is MY_IP.
46 self.assertEqual(pkt[IP].src, self.pg0.local_ip4)
47 self.assertEqual(pkt[IP].dst, self.pg0.remote_ip4)
48 # Verify UDP destination port is VXLAN 4789, source UDP port could be
Damjan Marionf56b77a2016-10-03 19:44:57 +020049 # arbitrary.
Klement Sekeraf62ae122016-10-11 11:47:09 +020050 self.assertEqual(pkt[UDP].dport, type(self).dport)
Damjan Marionf56b77a2016-10-03 19:44:57 +020051 # TODO: checksum check
Klement Sekeraf62ae122016-10-11 11:47:09 +020052 # Verify VNI, based on configuration it must be 1.
53 self.assertEqual(pkt[VXLAN].vni, type(self).vni)
Damjan Marionf56b77a2016-10-03 19:44:57 +020054
Klement Sekeraf62ae122016-10-11 11:47:09 +020055 # Class method to start the VXLAN test case.
Damjan Marionf56b77a2016-10-03 19:44:57 +020056 # Overrides setUpClass method in VppTestCase class.
57 # Python try..except statement is used to ensure that the tear down of
58 # the class will be executed even if exception is raised.
59 # @param cls The class pointer.
60 @classmethod
61 def setUpClass(cls):
62 super(TestVxlan, cls).setUpClass()
Damjan Marionf56b77a2016-10-03 19:44:57 +020063
Klement Sekeraf62ae122016-10-11 11:47:09 +020064 try:
65 cls.dport = 4789
66 cls.vni = 1
67
68 # Create 2 pg interfaces.
69 cls.create_pg_interfaces(range(2))
70 cls.pg0.admin_up()
71 cls.pg1.admin_up()
72
73 # Configure IPv4 addresses on VPP pg0.
74 cls.pg0.config_ip4()
75
76 # Resolve MAC address for VPP's IP address on pg0.
77 cls.pg0.resolve_arp()
78
79 # Create VXLAN VTEP on VPP pg0, and put vxlan_tunnel0 and pg1
Damjan Marionf56b77a2016-10-03 19:44:57 +020080 # into BD.
Klement Sekeraf62ae122016-10-11 11:47:09 +020081 r = cls.vapi.vxlan_add_del_tunnel(
82 src_addr=cls.pg0.local_ip4n,
83 dst_addr=cls.pg0.remote_ip4n,
84 vni=cls.vni)
85 cls.vapi.sw_interface_set_l2_bridge(r.sw_if_index, bd_id=1)
86 cls.vapi.sw_interface_set_l2_bridge(cls.pg1.sw_if_index, bd_id=1)
87 except Exception:
88 super(TestVxlan, cls).tearDownClass()
Damjan Marionf56b77a2016-10-03 19:44:57 +020089 raise
90
Klement Sekeraf62ae122016-10-11 11:47:09 +020091 # Method to define VPP actions before tear down of the test case.
Damjan Marionf56b77a2016-10-03 19:44:57 +020092 # Overrides tearDown method in VppTestCase class.
93 # @param self The object pointer.
94 def tearDown(self):
95 super(TestVxlan, self).tearDown()
Klement Sekeraf62ae122016-10-11 11:47:09 +020096 if not self.vpp_dead:
97 info(self.vapi.cli("show bridge-domain 1 detail"))
Damjan Marionf56b77a2016-10-03 19:44:57 +020098
99if __name__ == '__main__':
100 unittest.main(testRunner=VppTestRunner)