summaryrefslogtreecommitdiffstats
path: root/test/vpp_papi_provider.py
AgeCommit message (Expand)AuthorFilesLines
2019-12-04gre: Multi-point interfacesNeale Ranns1-4/+6
2019-12-03classify: API cleanupJakub Grajciar1-82/+0
2019-11-26fib: Table ReplaceNeale Ranns1-25/+0
2019-11-15tests: Remove the unrequired VPP IP address/prefix class wrappersNeale Ranns1-6/+3
2019-11-08ipsec: remove dedicated IPSec tunnelsNeale Ranns1-1/+1
2019-10-17classify: make tests support python3Ole Troan1-5/+4
2019-10-16tests: cli wrapper should return stringOle Troan1-2/+1
2019-10-14gso: Add gso feature arcMohsin Kazmi1-0/+7
2019-10-10tests: add cli_return_response to vpp_papi_providerDave Barach1-2/+13
2019-10-09dhcp: dhcp6_pd_client_cp API cleanupJakub Grajciar1-10/+0
2019-10-08tests: handle unicode charactes in cli outputKlement Sekera1-1/+2
2019-10-07dhcp: Move to pluginNeale Ranns1-12/+0
2019-10-03dhcp: API cleanupJakub Grajciar1-96/+4
2019-09-30dhcp: dhcp6_ia_na_client_cp API cleanupJakub Grajciar1-6/+0
2019-09-11bonding: API cleanupJakub Grajciar1-0/+1
2019-09-04bfd: API cleanupJakub Grajciar1-81/+5
2019-07-26dhcp ip: DSCP settings for transmitted DHCP packetsNeale Ranns1-1/+3
2019-07-24qos: QoS dump APIsNeale Ranns1-22/+0
2019-07-19bonding: add support for numa-only in lacp modeZhiyong Yang1-0/+3
2019-07-12tests: remove invalid arguments passed to papiPaul Vinciguerra1-5/+1
2019-07-05gbp: add unit-tests for anonymous l3outBenoît Ganne1-2/+3
2019-07-01gbp: VRF scoped contractsNeale Ranns1-2/+5
2019-06-25tests: fix test_gbp.py.Paul Vinciguerra1-52/+1
2019-06-18ipsec: ipsec-tun protectNeale Ranns1-13/+0
2019-06-18fib: fib api updatesNeale Ranns1-105/+132
2019-06-14ipsec: Correctly rewind the buffer to the IP header when punting UDP encapped...Neale Ranns1-1/+3
2019-05-28Punt: socket register for exception dispatched/punted packets based on reasonNeale Ranns1-18/+5
2019-05-27IPIP tunnel: use address types on APINeale Ranns1-1/+0
2019-05-17Tests: Refactor. Remove copies of enums.Paul Vinciguerra1-18/+0
2019-05-17Tests: Raise exception if API cli_inband command fails.Paul Vinciguerra1-0/+12
2019-05-15vpp_papi: remove dependency on environment var. VPP_API_DIR.Paul Vinciguerra1-10/+9
2019-05-10tests: test/vpp_papi_provider.py Specify exception to catch.Paul Vinciguerra1-1/+1
2019-05-02NAT: VPP-1661 - test case cleanup and refactoringFilip Varga1-459/+0
2019-05-02vpp_papi_provider.py: update defautmapping.Paul Vinciguerra1-0/+2
2019-04-24NAT: VPP-1531 api cleanup & updateFilip Varga1-183/+56
2019-04-23API: Python and Unix domain socket improvementOle Troan1-1/+9
2019-04-23Revert "NAT: VPP-1531 api cleanup & update"Ole Trøan1-56/+183
2019-04-23NAT: VPP-1531 api cleanup & updateFilip Varga1-183/+56
2019-04-18GRE: API updateNeale Ranns1-14/+15
2019-04-17api: Add to interface crud - read by sw_if_index.Paul Vinciguerra1-0/+1
2019-04-17IPSEC: Pass the algorithm salt (used in GCM) over the APINeale Ranns1-2/+5
2019-04-02IPSEC-GRE; testsNeale Ranns1-0/+13
2019-03-29tests: test/vpp_l2.py fix missing name.Paul Vinciguerra1-13/+0
2019-03-28Typos. A bunch of typos I've been collecting.Paul Vinciguerra1-7/+7
2019-03-27GBP: fixes for l3-out routingNeale Ranns1-1/+3
2019-03-22tests: update test_lb.py to use api call lb_conf.Paul Vinciguerra1-0/+2
2019-03-21ipsec: add ipv6 support for ipsec tunnel interfaceKingwel Xie1-14/+21
2019-03-19Revert "tests: Deprecate the use of CLI commands in tests."Neale Ranns1-5/+0
2019-03-18Tests: Trivial. Define constants once.Paul Vinciguerra1-4/+1
2019-03-18tests: Deprecate the use of CLI commands in tests.Paul Vinciguerra1-0/+5
=1) def test_lisp_basic_encap(self): """Test case for basic encapsulation""" self.deid_ip4_net = self.faf.net self.deid_ip4 = self.faf.get_ip4() self.seid_ip4 = '{}/{}'.format(self.pg0.local_ip4, 32) self.rloc_ip4 = self.pg1.remote_ip4n test_cases = [ { 'name': 'basic ip4 over ip4', 'locator-sets': [VppLispLocatorSet(self, 'ls-4o4')], 'locators': [ VppLispLocator(self, self.pg1.sw_if_index, 'ls-4o4') ], 'local-mappings': [ VppLocalMapping(self, self.seid_ip4, 'ls-4o4') ], 'remote-mappings': [ VppRemoteMapping(self, self.deid_ip4_net, [{ "is_ip4": 1, "priority": 1, "weight": 1, "addr": self.rloc_ip4 }]) ], 'adjacencies': [ VppLispAdjacency(self, self.seid_ip4, self.deid_ip4_net) ] } ] self.test_driver = SimpleDriver(self, test_cases) self.test_driver.run(self.deid_ip4) if __name__ == '__main__': unittest.main(testRunner=VppTestRunner)