diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-01-22 11:41:34 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-02-10 23:42:01 -0800 |
commit | aa3cedc03a1595a3941de408d1f2c5ed6b0830ac (patch) | |
tree | 95c8803a0667adebca0a3cdd14897e4bd275a1b0 /test/lib/gobgp.py | |
parent | 023a498e4a90982095c870c5491770bf4952fc2b (diff) |
test: add graceful restart test
Diffstat (limited to 'test/lib/gobgp.py')
-rw-r--r-- | test/lib/gobgp.py | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/test/lib/gobgp.py b/test/lib/gobgp.py index 18e7ddc8..1f956587 100644 --- a/test/lib/gobgp.py +++ b/test/lib/gobgp.py @@ -42,12 +42,11 @@ class GoBGPContainer(BGPContainer): self.default_policy = None self.zebra = zebra - def _start_gobgp(self): - zebra_op = '' + def _start_gobgp(self, graceful_restart=False): c = CmdBuffer() c << '#!/bin/bash' c << '/go/bin/gobgpd -f {0}/gobgpd.conf -l {1} -p {2} > ' \ - '{0}/gobgpd.log 2>&1'.format(self.SHARED_VOLUME, self.log_level, zebra_op) + '{0}/gobgpd.log 2>&1'.format(self.SHARED_VOLUME, self.log_level, '-r' if graceful_restart else '') cmd = 'echo "{0:s}" > {1}/start.sh'.format(c, self.config_dir) local(cmd, capture=True) @@ -55,6 +54,9 @@ class GoBGPContainer(BGPContainer): local(cmd, capture=True) self.local("{0}/start.sh".format(self.SHARED_VOLUME), flag='-d') + def graceful_restart(self): + self.local("pkill -INT gobgpd") + def _start_zebra(self): cmd = 'cp {0}/zebra.conf {1}/'.format(self.SHARED_VOLUME, self.QUAGGA_VOLUME) self.local(cmd) @@ -213,6 +215,11 @@ class GoBGPContainer(BGPContainer): if info['is_rs_client']: n['route-server'] = {'config': {'route-server-client': True}} + if info['graceful_restart'] is not None: + n['graceful-restart'] = {'config': {'enabled': True, 'restart-time': 20}} + for afi_safi in afi_safi_list: + afi_safi['mp-graceful-restart'] = {'config': {'enabled': True}} + if info['is_rr_client']: clusterId = self.router_id if 'cluster_id' in info and info['cluster_id'] is not None: |