diff options
author | Jakub Grajciar <jgrajcia@cisco.com> | 2019-09-03 10:40:01 +0200 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2019-12-11 09:39:42 +0000 |
commit | 5de4fb7076a46ab75e2d3c30079dd6639af16a86 (patch) | |
tree | 3ac12410c3d0769f5d950df53d6abb43fe54e5b9 /test/test_tap.py | |
parent | 8dc75c0cc3ac0db13778a0a32f9aa81597b80556 (diff) |
devices: tap API cleanup
Use consistent API types.
Type: fix
Change-Id: I11cc7f6347b7a60e5fd41e54f0c7994e2d81199f
Signed-off-by: Jakub Grajciar <jgrajcia@cisco.com>
Diffstat (limited to 'test/test_tap.py')
-rw-r--r-- | test/test_tap.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/test/test_tap.py b/test/test_tap.py new file mode 100644 index 00000000000..92589789a95 --- /dev/null +++ b/test/test_tap.py @@ -0,0 +1,24 @@ +import unittest +import os + +from framework import VppTestCase, VppTestRunner +from vpp_devices import VppTAPInterface + + +def check_tuntap_driver_access(): + return os.access("/dev/net/tun", os.R_OK or os.W_OK) + + +@unittest.skipUnless(check_tuntap_driver_access(), "Permission denied") +class TestTAP(VppTestCase): + """ TAP Test Case """ + + def test_tap_add_del(self): + """Create TAP interface""" + tap0 = VppTAPInterface(self, tap_id=0) + tap0.add_vpp_config() + self.assertTrue(tap0.query_vpp_config()) + + +if __name__ == '__main__': + unittest.main(testRunner=VppTestRunner) |