From 4376ab2a926b36c1131588069a8a9cdd2520073d Mon Sep 17 00:00:00 2001 From: Ole Troan Date: Wed, 3 Mar 2021 10:40:05 +0100 Subject: tests: use socket transport instead of shared memory Type: improvement Signed-off-by: Ole Troan Change-Id: I9e65c94a5a05047a5104e9361ea36eac77b40442 Signed-off-by: Ole Troan --- src/plugins/map/test/test_map.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/plugins/map') diff --git a/src/plugins/map/test/test_map.py b/src/plugins/map/test/test_map.py index 93ea3f06976..746f0aff2de 100644 --- a/src/plugins/map/test/test_map.py +++ b/src/plugins/map/test/test_map.py @@ -114,15 +114,16 @@ class TestMAP(VppTestCase): def test_api_map_domains_get(self): # Create a bunch of domains - domains = self.create_domains('130.67.0.0/24', '2001::/32', + no_domains = 4096 # This must be large enough to ensure VPP suspends + domains = self.create_domains('130.67.0.0/20', '2001::/32', '2001::1/128') - self.assertEqual(len(domains), 256) + self.assertEqual(len(domains), no_domains) d = [] cursor = 0 # Invalid cursor - rv, details = self.vapi.map_domains_get(cursor=1234) + rv, details = self.vapi.map_domains_get(cursor=no_domains+10) self.assertEqual(rv.retval, -7) # Delete a domain in the middle of walk @@ -136,7 +137,7 @@ class TestMAP(VppTestCase): self.assertEqual(rv.retval, -165) d = list(self.vapi.vpp.details_iter(self.vapi.map_domains_get)) - self.assertEqual(len(d), 255) + self.assertEqual(len(d), no_domains - 1) # Clean up for i in domains: -- cgit 1.2.3-korg