aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_p2p_ethernet.py
AgeCommit message (Expand)AuthorFilesLines
2019-06-18fib: fib api updatesNeale Ranns1-23/+11
2019-04-10Tests Cleanup: Fix missing calls to setUpClass/tearDownClass.Paul Vinciguerra1-0/+12
2019-03-11Tests: use self.assertNotIn().Paul Vinciguerra1-7/+7
2019-03-07VPP-1508: Python3 tests. Explicitly specify string formatting.Paul Vinciguerra1-1/+2
2019-03-04test framework: Fix wrapper functions to match API message names.Ole Troan1-9/+9
2018-12-18PAPI: Add MACAddress object wrapper for vl_api_mac_address_tOle Troan1-6/+6
2018-12-10Test framework: StringIO fixes for Python3Ole Troan1-1/+1
2018-12-05VPP-1508: Python3 compatible printPaul Vinciguerra1-1/+2
2018-11-08make test: p2p ethernet refactorKlement Sekera1-22/+2
2018-09-11GBP Endpoint UpdatesNeale Ranns1-1/+2
2018-03-18Remove unnumbered configuration on interface deleteNeale Ranns1-20/+31
2017-12-13make "test-all" target pass againGabriel Ganne1-34/+1
2017-08-08L2 over MPLSNeale Ranns1-8/+8
2017-08-01P2P EthernetPavel Kotucek1-0/+538
n class="nn">abc from vpp_pg_interface import is_ipv6_misc from vpp_interface import VppInterface class VppTunnelInterface(VppInterface, metaclass=abc.ABCMeta): """ VPP tunnel interface abstraction """ def __init__(self, test, parent_if): super(VppTunnelInterface, self).__init__(test) self.parent_if = parent_if @property def local_mac(self): return self.parent_if.local_mac @property def remote_mac(self): return self.parent_if.remote_mac def enable_capture(self): return self.parent_if.enable_capture() def add_stream(self, pkts): return self.parent_if.add_stream(pkts) def get_capture(self, expected_count=None, remark=None, timeout=1, filter_out_fn=is_ipv6_misc): return self.parent_if.get_capture(expected_count, remark, timeout, filter_out_fn)