aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_vm_af_packet_tap_gso_l2.py
blob: 1e8c0e18ca4e0b651074dab562508c3f6493eff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3

import unittest
from framework import VppTestCase
from vm_vpp_interfaces import (
    TestSelector,
    TestVPPInterfacesQemu,
    generate_vpp_interface_tests,
)
from asfframework import VppTestRunner
from vm_test_config import test_config


class TestVPPInterfacesQemuAfPacketTapGsoL2(TestVPPInterfacesQemu, VppTestCase):
    """Test af_packet & tap interfaces with GSO in L2 mode for IPv4/v6."""

    # Set test_id(s) to run from vm_test_config
    # The expansion of these numbers are included in the test docstring
    tests_to_run = "17"

    @classmethod
    def setUpClass(cls):
        super(TestVPPInterfacesQemuAfPacketTapGsoL2, cls).setUpClass()

    @classmethod
    def tearDownClass(cls):
        super(TestVPPInterfacesQemuAfPacketTapGsoL2, cls).tearDownClass()

    def tearDown(self):
        super(TestVPPInterfacesQemuAfPacketTapGsoL2, self).tearDown()


SELECTED_TESTS = TestVPPInterfacesQemuAfPacketTapGsoL2.tests_to_run
tests = filter(TestSelector(SELECTED_TESTS).filter_tests, test_config["tests"])
generate_vpp_interface_tests(tests, TestVPPInterfacesQemuAfPacketTapGsoL2)

if __name__ == "__main__":
    unittest.main(testRunner=VppTestRunner)