diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-07-03 15:56:14 +0900 |
---|---|---|
committer | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-07-03 16:02:05 +0900 |
commit | 0e9893229b97a1a3e5633610363e67554cff6b94 (patch) | |
tree | c12cd63fc2df40eed8eb878f9eb56620a9ba7b08 /test/scenario_test | |
parent | b37dff1ff97beadc6cd842b7e9f742da02fec7b5 (diff) |
test: stop using gobgp monitor command
gobgp monitor command can failed to get notification.
stop using it in case
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'test/scenario_test')
-rw-r--r-- | test/scenario_test/bgp_router_test.py | 76 | ||||
-rw-r--r-- | test/scenario_test/lib/gobgp.py | 38 |
2 files changed, 29 insertions, 85 deletions
diff --git a/test/scenario_test/bgp_router_test.py b/test/scenario_test/bgp_router_test.py index 5d71ff85..35fd940a 100644 --- a/test/scenario_test/bgp_router_test.py +++ b/test/scenario_test/bgp_router_test.py @@ -27,9 +27,6 @@ from itertools import chain class GoBGPTestBase(unittest.TestCase): - wait_per_retry = 5 - retry_limit = 15 - @classmethod def setUpClass(cls): gobgp_ctn_image_name = 'osrg/gobgp' @@ -76,43 +73,24 @@ class GoBGPTestBase(unittest.TestCase): for q in self.quaggas.itervalues(): # paths expected to exist in gobgp's global rib routes = q.routes.keys() - # gobgp's global rib - global_rib = [p['prefix'] for p in self.gobgp.get_global_rib()] - - for p in global_rib: - if p in routes: - routes.remove(p) - - if len(routes) == 0: - continue - - gobgp = '/go/bin/gobgp' - cmd = 'docker exec {0} {1}' \ - ' monitor global rib -j'.format(self.gobgp.name, gobgp) - - print '[localhost] local:', cmd - - process = subprocess.Popen(cmd, shell=True, - stdout=subprocess.PIPE, - stderr=subprocess.PIPE) + timeout = 120 + interval = 1 + count = 0 + while True: + # gobgp's global rib + global_rib = [p['prefix'] for p in self.gobgp.get_global_rib()] - poll = select.epoll() - poll.register(process.stdout, select.POLLIN) + for p in global_rib: + if p in routes: + routes.remove(p) - timeout = 120.0 + if len(routes) == 0: + break - while True: - result = poll.poll(timeout) - if result: - line = process.stdout.readline() - path = json.loads(line)['nlri']['prefix'] - if path in routes: - routes.remove(path) - - if len(routes) == 0: - return - continue - raise Exception('timeout') + time.sleep(interval) + count += interval + if count >= timeout: + raise Exception('timeout') # check gobgp properly add it's own asn to aspath def test_03_check_gobgp_adj_out_rib(self): @@ -123,15 +101,17 @@ class GoBGPTestBase(unittest.TestCase): # check routes are properly advertised to all BGP speaker def test_04_check_quagga_global_rib(self): + interval = 1 + timeout = int(120/interval) for q in self.quaggas.itervalues(): done = False - for _ in range(self.retry_limit): + for _ in range(timeout): if done: break global_rib = q.get_global_rib() global_rib = [p['prefix'] for p in global_rib] if len(global_rib) < len(self.quaggas): - time.sleep(self.wait_per_retry) + time.sleep(interval) continue self.assertTrue(len(global_rib) == len(self.quaggas)) @@ -215,21 +195,23 @@ class GoBGPTestBase(unittest.TestCase): q2.wait_for(expected_state=BGP_FSM_ESTABLISHED, peer=q5) q3.wait_for(expected_state=BGP_FSM_ESTABLISHED, peer=q5) - done = False - for _ in range(self.retry_limit): - paths = q1.get_global_rib('10.0.6.0/24') + timeout = 120 + interval = 1 + count = 0 + while True: + paths = self.gobgp.get_adj_rib_out(q1, '10.0.6.0/24') if len(paths) > 0: path = paths[0] - print "{0}'s nexthop is {1}".format(path['prefix'], + print "{0}'s nexthop is {1}".format(path['nlri']['prefix'], path['nexthop']) n_addrs = [i[1].split('/')[0] for i in self.gobgp.ip_addrs] if path['nexthop'] in n_addrs: - done = True break - time.sleep(self.wait_per_retry) - if not done: - self.assertTrue(False) + time.sleep(interval) + count += interval + if count >= timeout: + raise Exception('timeout') def test_10_originate_path(self): self.gobgp.add_route('10.10.0.0/24') diff --git a/test/scenario_test/lib/gobgp.py b/test/scenario_test/lib/gobgp.py index 1bfcf5fe..11eeeb96 100644 --- a/test/scenario_test/lib/gobgp.py +++ b/test/scenario_test/lib/gobgp.py @@ -16,8 +16,6 @@ from base import * import json import toml -import subprocess -import select from itertools import chain @@ -124,42 +122,6 @@ class GoBGPContainer(BGPContainer): output = local(cmd, capture=True) return json.loads(output)['info']['bgp_state'] - def wait_for(self, expected_state, peer, timeout=120): - state = self.get_neighbor_state(peer) - y = colors.yellow - print y("{0}'s peer {1} state: {2}".format(self.router_id, - peer.router_id, - state)) - if state == expected_state: - return - - peer_addr = self.peers[peer]['neigh_addr'].split('/')[0] - gobgp = '/go/bin/gobgp' - cmd = 'docker exec {0} {1} monitor neighbor {2} -j'.format(self.name, - gobgp, - peer_addr) - process = subprocess.Popen(cmd, shell=True, - stdout=subprocess.PIPE, - stderr=subprocess.PIPE) - - print '[localhost] local:', cmd - - poll = select.epoll() - poll.register(process.stdout, select.POLLIN) - - while True: - result = poll.poll(float(timeout)) - if result: - line = process.stdout.readline() - info = json.loads(line)['info'] - print y("{0}'s peer {1} state: {2}".format(self.router_id, - peer.router_id, - info['bgp_state'])) - if info['bgp_state'] == expected_state: - return - continue - raise Exception('timeout') - def create_config(self): config = {'Global': {'As': self.asn, 'RouterId': self.router_id}} for peer, info in self.peers.iteritems(): |