summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorHiroshi Yokoi <yokoi.hiroshi@po.ntts.co.jp>2015-02-25 17:44:17 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-02-25 22:06:17 +0900
commit3dd63d4afbfd19c67b0746e223de1657040e0da8 (patch)
treeaa073de7b07464f608c0aa26a9f051c8003ef346
parent149f1f2ea90e9d92a5839a45dcd8e533d0055efe (diff)
scenario_test: add --gobgp-log-debug option
-rw-r--r--test/scenario_test/docker_control.py43
-rw-r--r--test/scenario_test/noseplugin.py1
-rw-r--r--test/scenario_test/route_server_ipv4_v6_test.py3
-rw-r--r--test/scenario_test/route_server_malformed_test.py4
-rw-r--r--test/scenario_test/route_server_test.py3
5 files changed, 34 insertions, 20 deletions
diff --git a/test/scenario_test/docker_control.py b/test/scenario_test/docker_control.py
index 1b32314f..70b494fa 100644
--- a/test/scenario_test/docker_control.py
+++ b/test/scenario_test/docker_control.py
@@ -195,27 +195,29 @@ def create_config_dir():
local(cmd, capture=True)
-def make_startup_file():
+def make_startup_file(log_opt=""):
+
file_buff = '#!/bin/bash' + '\n'
file_buff += 'cd /go/src/github.com/osrg/gobgp' + '\n'
file_buff += 'git pull origin master' + '\n'
file_buff += 'go get -v' + '\n'
file_buff += 'go build' + '\n'
- file_buff += './gobgp -f ' + SHARE_VOLUME + '/gobgpd.conf > ' + SHARE_VOLUME + '/gobgpd.log'
+ file_buff += './gobgp -f ' + SHARE_VOLUME + '/gobgpd.conf ' + log_opt + ' > ' + SHARE_VOLUME + '/gobgpd.log'
cmd = "echo \"" + file_buff + "\" > " + CONFIG_DIR + "/" + STARTUP_FILE_NAME
local(cmd, capture=True)
cmd = "chmod 755 " + CONFIG_DIRR + STARTUP_FILE_NAME
local(cmd, capture=True)
-def make_startup_file_use_local_gobgp():
+def make_startup_file_use_local_gobgp(log_opt=""):
+
file_buff = '#!/bin/bash' + '\n'
file_buff += 'rm -rf /go/src/github.com/osrg/gobgp' + '\n'
file_buff += 'cp -r ' + SHARE_VOLUME + '/gobgp /go/src/github.com/osrg/' + '\n'
file_buff += 'cd /go/src/github.com/osrg/gobgp' + '\n'
file_buff += 'go get -v' + '\n'
file_buff += 'go build' + '\n'
- file_buff += './gobgp -f ' + SHARE_VOLUME + '/gobgpd.conf > ' + SHARE_VOLUME + '/gobgpd.log'
+ file_buff += './gobgp -f ' + SHARE_VOLUME + '/gobgpd.conf ' + log_opt + ' > ' + SHARE_VOLUME + '/gobgpd.log'
cmd = "echo \"" + file_buff + "\" > " + CONFIG_DIR + "/" + STARTUP_FILE_NAME
local(cmd, capture=True)
cmd = "chmod 755 " + CONFIG_DIRR + STARTUP_FILE_NAME
@@ -347,7 +349,7 @@ def reload_config():
print "complete append docker container."
-def init_test_env_executor(quagga_num, use_local, go_path):
+def init_test_env_executor(quagga_num, use_local, go_path, log_debug=False):
print "start initialization of test environment."
if docker_container_check() or bridge_setting_check():
@@ -363,6 +365,9 @@ def init_test_env_executor(quagga_num, use_local, go_path):
# run gobgp docker container
docker_container_run_gobgp(BRIDGE_0)
+ # set log option
+ opt = "-l debug" if log_debug else ""
+
# execute local gobgp program in the docker container if the input option is local
if use_local:
print "execute gobgp program in local machine."
@@ -371,14 +376,14 @@ def init_test_env_executor(quagga_num, use_local, go_path):
gobgp_path = re.sub(A_PART_OF_CURRENT_DIR, "", pwd)
cmd = "cp -r " + gobgp_path + " " + CONFIG_DIRR
local(cmd, capture=True)
- make_startup_file_use_local_gobgp()
+ make_startup_file_use_local_gobgp(log_opt=opt)
else:
print "scenario_test directory is not."
print "execute gobgp program of osrg/master in github."
- make_startup_file()
+ make_startup_file(log_opt=opt)
else:
print "execute gobgp program of osrg/master in github."
- make_startup_file()
+ make_startup_file(log_opt=opt)
change_owner_to_root(CONFIG_DIR)
start_gobgp()
@@ -390,7 +395,7 @@ def init_test_env_executor(quagga_num, use_local, go_path):
print "complete initialization of test environment."
-def init_ipv6_test_env_executor(quagga_num, use_local, go_path):
+def init_ipv6_test_env_executor(quagga_num, use_local, go_path, log_debug=False):
print "start initialization of test environment."
if docker_container_check() or bridge_setting_check():
@@ -406,6 +411,9 @@ def init_ipv6_test_env_executor(quagga_num, use_local, go_path):
# run gobgp docker container
docker_container_run_gobgp(BRIDGE_0)
+ # set log option
+ opt = "-l debug" if log_debug else ""
+
# execute local gobgp program in the docker container if the input option is local
if use_local:
print "execute gobgp program in local machine."
@@ -414,14 +422,14 @@ def init_ipv6_test_env_executor(quagga_num, use_local, go_path):
gobgp_path = re.sub(A_PART_OF_CURRENT_DIR, "", pwd)
cmd = "cp -r " + gobgp_path + " " + CONFIG_DIRR
local(cmd, capture=True)
- make_startup_file_use_local_gobgp()
+ make_startup_file_use_local_gobgp(log_opt=opt)
else:
print "scenario_test directory is not."
print "execute gobgp program of osrg/master in github."
- make_startup_file()
+ make_startup_file(log_opt=opt)
else:
print "execute gobgp program of osrg/master in github."
- make_startup_file()
+ make_startup_file(log_opt=opt)
change_owner_to_root(CONFIG_DIR)
start_gobgp()
@@ -433,7 +441,7 @@ def init_ipv6_test_env_executor(quagga_num, use_local, go_path):
print "complete initialization of test environment."
-def init_malformed_test_env_executor(conf_file, use_local):
+def init_malformed_test_env_executor(conf_file, use_local, log_debug=False):
print "start initialization of exabgp test environment."
if docker_container_check() or bridge_setting_check():
@@ -459,6 +467,9 @@ def init_malformed_test_env_executor(conf_file, use_local):
# run exabgp docker container
docker_container_run_exabgp(BRIDGE_0)
+ # set log option
+ opt = "-l debug" if log_debug else ""
+
# execute local gobgp program in the docker container if the input option is local
if use_local:
print "execute gobgp program in local machine."
@@ -467,14 +478,14 @@ def init_malformed_test_env_executor(conf_file, use_local):
gobgp_path = re.sub(A_PART_OF_CURRENT_DIR, "", pwd)
cmd = "cp -r " + gobgp_path + " " + CONFIG_DIRR
local(cmd, capture=True)
- make_startup_file_use_local_gobgp()
+ make_startup_file_use_local_gobgp(log_opt=opt)
else:
print "scenario_test directory is not."
print "execute gobgp program of osrg/master in github."
- make_startup_file()
+ make_startup_file(log_opt=opt)
else:
print "execute gobgp program of osrg/master in github."
- make_startup_file()
+ make_startup_file(log_opt=opt)
change_owner_to_root(CONFIG_DIR)
change_exagbp_version()
diff --git a/test/scenario_test/noseplugin.py b/test/scenario_test/noseplugin.py
index d2cb32bf..daabeb20 100644
--- a/test/scenario_test/noseplugin.py
+++ b/test/scenario_test/noseplugin.py
@@ -10,6 +10,7 @@ class OptionParser(Plugin):
super(OptionParser, self).options(parser, env=env)
parser.add_option('--use-local', action="store_true", dest="use_local", default=False)
parser.add_option('--go-path', action="store", dest="go_path", default="")
+ parser.add_option('--gobgp-log-debug', action="store_true", dest="gobgp_log_debug", default=False)
def configure(self, options, conf):
super(OptionParser, self).configure(options, conf)
diff --git a/test/scenario_test/route_server_ipv4_v6_test.py b/test/scenario_test/route_server_ipv4_v6_test.py
index 361c1572..5ba17959 100644
--- a/test/scenario_test/route_server_ipv4_v6_test.py
+++ b/test/scenario_test/route_server_ipv4_v6_test.py
@@ -58,7 +58,8 @@ class GoBGPIPv6Test(unittest.TestCase):
use_local = parser_option.use_local
go_path = parser_option.go_path
- fab.init_ipv6_test_env_executor(self.quagga_num, use_local, go_path)
+ log_debug = parser_option.gobgp_log_debug
+ fab.init_ipv6_test_env_executor(self.quagga_num, use_local, go_path, log_debug)
print "please wait (" + str(self.initial_wait_time) + " second)"
time.sleep(self.initial_wait_time)
fab.docker_container_ipv6_quagga_append_executor([3, 4], go_path)
diff --git a/test/scenario_test/route_server_malformed_test.py b/test/scenario_test/route_server_malformed_test.py
index addcc69a..0e63c060 100644
--- a/test/scenario_test/route_server_malformed_test.py
+++ b/test/scenario_test/route_server_malformed_test.py
@@ -74,11 +74,11 @@ def test_malformed_packet():
sys.exit(1)
use_local = parser_option.use_local
-
+ log_debug = parser_option.gobgp_log_debug
for pkey in pattern:
conf_file = pwd + "/exabgp_test_conf/" + pkey
if os.path.isfile(conf_file) is True:
- fab.init_malformed_test_env_executor(pkey, use_local)
+ fab.init_malformed_test_env_executor(pkey, use_local, log_debug)
print "please wait (" + str(initial_wait_time) + " second)"
time.sleep(initial_wait_time)
yield check_func, pkey, pattern[pkey]
diff --git a/test/scenario_test/route_server_test.py b/test/scenario_test/route_server_test.py
index 03a27581..dbaa0d43 100644
--- a/test/scenario_test/route_server_test.py
+++ b/test/scenario_test/route_server_test.py
@@ -58,7 +58,8 @@ class GoBGPTest(unittest.TestCase):
use_local = parser_option.use_local
go_path = parser_option.go_path
- fab.init_test_env_executor(self.quagga_num, use_local, go_path)
+ log_debug = parser_option.gobgp_log_debug
+ fab.init_test_env_executor(self.quagga_num, use_local, go_path, log_debug)
print "please wait " + str(self.initial_wait_time) + " second"
time.sleep(self.initial_wait_time)