X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Femuvim%2Ftest%2Funittests%2Ftest_sonata_dummy_gatekeeper.py;h=1b13158c4064eb369d7f7f0137e19b3ad64c1214;hb=21b311f35adb37dc67ff557b4ebf2285e559cb24;hp=cc7eddd85b684e667ef286de793be9ca4d3bcab2;hpb=3378093aff555df14c7b8e7febde039d2f4fbe5e;p=osm%2Fvim-emu.git diff --git a/src/emuvim/test/unittests/test_sonata_dummy_gatekeeper.py b/src/emuvim/test/unittests/test_sonata_dummy_gatekeeper.py index cc7eddd..1b13158 100755 --- a/src/emuvim/test/unittests/test_sonata_dummy_gatekeeper.py +++ b/src/emuvim/test/unittests/test_sonata_dummy_gatekeeper.py @@ -56,6 +56,7 @@ class testSonataDummyGatekeeper(SimpleTestTopology): sdkg1.connectDatacenter(self.dc[1]) # run the dummy gatekeeper (in another thread, don't block) sdkg1.start() + time.sleep(3) # start Mininet network self.startNet() time.sleep(1) @@ -138,7 +139,8 @@ class testSonataDummyGatekeeper(SimpleTestTopology): test_ip_list = list(ELAN_list) test_ip_list.remove(ip_address) for ip in test_ip_list: - p = self.net.ping([vnf],manualdestip=ip) + # only take ip address, without netmask + p = self.net.ping([vnf],manualdestip=ip.split('/')[0]) print p self.assertTrue(p <= 0.0) @@ -160,6 +162,7 @@ class testSonataDummyGatekeeper(SimpleTestTopology): sdkg1.connectDatacenter(self.dc[1]) # run the dummy gatekeeper (in another thread, don't block) sdkg1.start() + time.sleep(3) # start Mininet network self.startNet() time.sleep(1) @@ -215,6 +218,7 @@ class testSonataDummyGatekeeper(SimpleTestTopology): sdkg1.connectDatacenter(self.dc[1]) # run the dummy gatekeeper (in another thread, don't block) sdkg1.start() + time.sleep(3) # start Mininet network self.startNet() time.sleep(1)