diff options
author | Damjan Marion <dmarion@me.com> | 2019-09-13 11:48:05 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2019-09-13 11:51:27 +0000 |
commit | bf02d6f467f7ab0f476c6b237e6da7509451cc06 (patch) | |
tree | c6f2adf4f49822e458fe424e2c8a4f0c0bbb7576 /test/test_af_packet.py | |
parent | 321cfa5fcb8f347329a5296e2024ef0e6cef319f (diff) |
devices: partial revert of af_packet API cleanup patch
Reverting as make test must me able to run non-root so creating tap interfaces is no-go.
Type: fix
Fixes: 3b2db9002c14f9e0742622f2d503c5801d443827
Change-Id: Ib6eb2679b65b662ed6e88e67f8b199744abae85e
Signed-off-by: Damjan Marion <dmarion@me.com>
Diffstat (limited to 'test/test_af_packet.py')
-rw-r--r-- | test/test_af_packet.py | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/test/test_af_packet.py b/test/test_af_packet.py deleted file mode 100644 index 9017fb71cbf..00000000000 --- a/test/test_af_packet.py +++ /dev/null @@ -1,39 +0,0 @@ -import unittest -import os -import psutil - -from framework import VppTestCase, VppTestRunner -from vpp_devices import VppAFPacketInterface - - -class TestAFPacket(VppTestCase): - """ Host interface Test Case """ - - host_if_name = 'afp0' - - @classmethod - def setUpClass(cls): - super(TestAFPacket, cls).setUpClass() - os.system('ip tuntap add dev ' + cls.host_if_name + ' mode tap') - - @classmethod - def tearDownClass(cls): - super(TestAFPacket, cls).tearDownClass() - os.system('ip link delete ' + cls.host_if_name) - - def test_tap_add_del(self): - """Create host interface""" - # check if host interface exists - self.assertTrue( - psutil.net_if_addrs().get( - self.host_if_name), - 'Host interface ' + - self.host_if_name + - ' does not exist') - afp0 = VppAFPacketInterface(self, self.host_if_name) - afp0.add_vpp_config() - self.assertTrue(afp0.query_vpp_config()) - - -if __name__ == '__main__': - unittest.main(testRunner=VppTestRunner) |