diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2018-01-17 11:02:12 +0900 |
---|---|---|
committer | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2018-02-10 21:47:38 +0900 |
commit | aae35319a8421705f17e02e1a89aad9486ee713e (patch) | |
tree | 329d364d92a2901ea4140930af61692a2224e368 /test/scenario_test/route_server_as2_test.py | |
parent | 1fd46103728f0ed421a74a5fd6b96cb74b44bb38 (diff) |
test/lib/exabgp: Use exabgpcli to add/del routes
Currently, to advertise or withdraw routes with ExaBGPContainer, we need
to configure static routes via config file and restart ExaBGP daemon.
In other words, we can NOT send withdrawing advertisement with
ExaBGPContainer. Also, restating ExaBGP daemon frequently can make
scenario test unstable, and it should be avoided.
On the other hand, with ExaBGP version 4.0.5 or later(*), we can
advertise or withdraw routes using "exabgpcli" without restating ExaBGP
daemon (or writing application which calls ExaBGP's APIs).
This patch fixes to use "exabgpcli" and reduces the number of restating
ExaBGP daemon.
Note: According to this change, adding routes into ExaBGP should be
called after adding neighbor.
(*): "exabgpcli" is introduced at version 4.0.2, but has some bugs
related to Python 3 compatibility and FlowSpec rules combinations, then
we need to use version 4.0.5 or later.
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'test/scenario_test/route_server_as2_test.py')
-rw-r--r-- | test/scenario_test/route_server_as2_test.py | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/test/scenario_test/route_server_as2_test.py b/test/scenario_test/route_server_as2_test.py index bcff8f74..d60b4b21 100644 --- a/test/scenario_test/route_server_as2_test.py +++ b/test/scenario_test/route_server_as2_test.py @@ -53,16 +53,7 @@ class GoBGPTestBase(unittest.TestCase): for i in range(4)] ctns = [g1] + rs_clients - # advertise a route from route-server-clients - for idx, rs_client in enumerate(rs_clients): - route = '10.0.{0}.0/24'.format(idx + 1) - rs_client.add_route(route) - if idx < 2: - route = '10.0.10.0/24' - rs_client.add_route(route) - initial_wait_time = max(ctn.run() for ctn in ctns) - time.sleep(initial_wait_time) for i, rs_client in enumerate(rs_clients): @@ -72,6 +63,14 @@ class GoBGPTestBase(unittest.TestCase): as2 = True rs_client.add_peer(g1, as2=as2) + # advertise a route from route-server-clients + for idx, rs_client in enumerate(rs_clients): + route = '10.0.{0}.0/24'.format(idx + 1) + rs_client.add_route(route) + if idx < 2: + route = '10.0.10.0/24' + rs_client.add_route(route) + cls.gobgp = g1 cls.quaggas = {x.name: x for x in rs_clients} |