summaryrefslogtreecommitdiffstats
path: root/testcases/vnf/vIMS
diff options
context:
space:
mode:
authorboucherv <valentin.boucher@orange.com>2016-07-13 16:48:28 +0200
committerboucherv <valentin.boucher@orange.com>2016-07-13 17:30:22 +0200
commit4cc4bc0f88091246ac1bf3dcea89e4b281d64e1e (patch)
tree4e9fe02e9f7ee40d6375be83455b997ab6b7ed61 /testcases/vnf/vIMS
parent94cb165d12487fccd83864788728c6f103b4cb50 (diff)
Improve timeout management with python
JIRA: FUNCTEST-368 Change-Id: I9f7a6adc807c63694fc5d9fb8a81ad1d2d9d3225 Signed-off-by: boucherv <valentin.boucher@orange.com>
Diffstat (limited to 'testcases/vnf/vIMS')
-rw-r--r--testcases/vnf/vIMS/orchestrator.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/testcases/vnf/vIMS/orchestrator.py b/testcases/vnf/vIMS/orchestrator.py
index c61f654ca..f52afe1bc 100644
--- a/testcases/vnf/vIMS/orchestrator.py
+++ b/testcases/vnf/vIMS/orchestrator.py
@@ -10,7 +10,7 @@
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
########################################################################
-import subprocess
+import subprocess32 as subprocess
import os
import shutil
import yaml
@@ -109,7 +109,7 @@ class orchestrator:
script += ("cfy local create-requirements -o requirements.txt " +
"-p openstack-manager-blueprint.yaml; ")
script += "pip install -r requirements.txt; "
- script += ("timeout 1800 cfy bootstrap --install-plugins " +
+ script += ("cfy bootstrap --install-plugins " +
"-p openstack-manager-blueprint.yaml -i inputs.yaml; ")
cmd = "/bin/bash -c '" + script + "'"
error = execute_command(cmd, self.logger)
@@ -199,7 +199,7 @@ class orchestrator:
self.logger.error("Clearwater undeployment failed")
-def execute_command(cmd, logger):
+def execute_command(cmd, logger, timeout=1800):
"""
Execute Linux command
"""
@@ -207,7 +207,8 @@ def execute_command(cmd, logger):
logger.debug('Executing command : {}'.format(cmd))
output_file = "output.txt"
f = open(output_file, 'w+')
- p = subprocess.call(cmd, shell=True, stdout=f, stderr=subprocess.STDOUT)
+ p = subprocess.call(cmd, shell=True, stdout=f,
+ stderr=subprocess.STDOUT, timeout=timeout)
f.close()
f = open(output_file, 'r')
result = f.read()