aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_map.py
diff options
context:
space:
mode:
authorNeale Ranns <nranns@cisco.com>2017-03-10 03:04:12 -0800
committerOle Trøan <otroan@employees.org>2017-03-10 12:50:54 +0000
commit69b7aa424abaec4adae0e9007794cf35a7f9849f (patch)
tree22260de38a9094fbfa871e4e565cb7a3a447fb56 /test/test_map.py
parent78053e164fbb75c014126a3deff440f165504582 (diff)
Fix MAP-E UT. Add functionality in MAP code to delete the pre-resolved next-hops. UT checks for no-leftover-state now pass
Change-Id: I9e980ee117c0b6aebc6c7a0fcc153a7c0eaf0c72 Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'test/test_map.py')
-rw-r--r--test/test_map.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/test/test_map.py b/test/test_map.py
index 6bcd70e9..9ac3948a 100644
--- a/test/test_map.py
+++ b/test/test_map.py
@@ -62,7 +62,6 @@ class TestMAP(VppTestCase):
self.assertEqual(rx[IPv6].src, ip6_src)
self.assertEqual(rx[IPv6].dst, ip6_dst)
- @unittest.skip("Doesn't Work")
def test_map_e(self):
""" MAP-E """
@@ -155,18 +154,21 @@ class TestMAP(VppTestCase):
#
# change the route to the pre-solved next-hop
#
- pre_res_route1 = VppIpRoute(self,
- "4001::1",
- 128,
- [VppRoutePath(self.pg1.remote_hosts[3].ip6,
- self.pg1.sw_if_index,
- is_ip6=1)],
- is_ip6=1)
- pre_res_route1.add_vpp_config()
+ pre_res_route.modify([VppRoutePath(self.pg1.remote_hosts[3].ip6,
+ self.pg1.sw_if_index,
+ is_ip6=1)])
+ pre_res_route.add_vpp_config()
self.send_and_assert_encapped(v4, map_src,
"2001::c0a8:0:0",
dmac=self.pg1.remote_hosts[3].mac)
+ #
+ # cleanup. The test infra's object registry will ensure
+ # the route is really gone and thus that the unresolve worked.
+ #
+ pre_res_route.remove_vpp_config()
+ self.vapi.ppcli("map params pre-resolve del ip6-nh 4001::1")
+
if __name__ == '__main__':
unittest.main(testRunner=VppTestRunner)