add doctor test case 65/6765/5
authorRyota MIBU <r-mibu@cq.jp.nec.com>
Thu, 14 Jan 2016 15:25:09 +0000 (00:25 +0900)
committerRyota MIBU <r-mibu@cq.jp.nec.com>
Fri, 15 Jan 2016 09:24:47 +0000 (18:24 +0900)
Change-Id: Ia40face4cb32247542d5841e00caafb2cf927c2e
Signed-off-by: Ryota MIBU <r-mibu@cq.jp.nec.com>
docker/run_tests.sh
testcases/config_functest.yaml
testcases/features/doctor.py [new file with mode: 0644]
testcases/functest_utils.py

index d6faff2..4fd505b 100755 (executable)
@@ -129,7 +129,12 @@ function run_test(){
         "promise")
             info "Running PROMISE test case..."
             # TODO
-   esac
+        ;;
+        "doctor")
+            info "Running Doctor test..."
+            python ${FUNCTEST_REPO_DIR}/testcases/features/doctor.py
+        ;;
+    esac
 }
 
 
index 1063715..14724c6 100644 (file)
@@ -17,6 +17,7 @@ general:
         dir_repo_bgpvpn:    /home/opnfv/repos/bgpvpn
         dir_repo_onos:      /home/opnfv/repos/onos
         dir_repo_promise:   /home/opnfv/repos/promise
+        dir_repo_doctor:    /home/opnfv/repos/doctor
         dir_functest:       /home/opnfv/functest
         dir_results:        /home/opnfv/functest/results
         dir_functest_conf:  /home/opnfv/functest/conf
diff --git a/testcases/features/doctor.py b/testcases/features/doctor.py
new file mode 100644 (file)
index 0000000..a68c31c
--- /dev/null
@@ -0,0 +1,64 @@
+#!/usr/bin/python
+#
+# Copyright (c) 2015 All rights reserved
+# This program and the accompanying materials
+# are made available under the terms of the Apache License, Version 2.0
+# which accompanies this distribution, and is available at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# 0.1: This script boots the VM1 and allocates IP address from Nova
+# Later, the VM2 boots then execute cloud-init to ping VM1.
+# After successful ping, both the VMs are deleted.
+# 0.2: measure test duration and publish results under json format
+#
+#
+
+import os
+import time
+import sys
+import yaml
+
+
+with open('/home/opnfv/functest/conf/config_functest.yaml') as f:
+    functest_yaml = yaml.safe_load(f)
+
+dirs = functest_yaml.get('general').get('directories')
+FUNCTEST_REPO = dirs.get('dir_repo_functest')
+DOCTOR_REPO = dirs.get('dir_repo_doctor')
+TEST_DB_URL = functest_yaml.get('results').get('test_db_url')
+
+sys.path.append('%s/testcases' % FUNCTEST_REPO)
+import functest_utils
+
+
+def main():
+    cmd = 'cd %s/tests && ./run.sh' % DOCTOR_REPO
+    start_time_ts = time.time()
+
+    ret = functest_utils.execute_command(cmd, exit_on_error=False)
+
+    end_time_ts = time.time()
+    duration = round(end_time_ts - start_time_ts, 1)
+    if ret:
+        test_status = 'OK'
+    else:
+        test_status = 'NOK'
+
+    details = {
+        'timestart': start_time_ts,
+        'duration': duration,
+        'status': test_status,
+    }
+    pod_name = functest_utils.get_pod_name()
+    git_version = functest_utils.get_git_branch(DOCTOR_REPO)
+    functest_utils.push_results_to_db(TEST_DB_URL,
+                                      'doctor-notification',
+                                      None,
+                                      pod_name,
+                                      git_version,
+                                      details)
+
+
+if __name__ == '__main__':
+    main()
index e7641b0..a104182 100644 (file)
@@ -577,7 +577,7 @@ def download_url(url, dest_path):
     return True
 
 
-def execute_command(cmd, logger=None):
+def execute_command(cmd, logger=None, exit_on_error=True):
     """
     Execute Linux command
     """
@@ -596,7 +596,9 @@ def execute_command(cmd, logger=None):
     else:
         if logger:
             logger.error("Error when executing command %s" % cmd)
-        exit(-1)
+        if exit_on_error:
+            exit(-1)
+        return False
 
 
 def get_git_branch(repo_path):
@@ -646,7 +648,8 @@ def push_results_to_db(db_url, case_name, logger, pod_name,
     headers = {'Content-Type': 'application/json'}
     try:
         r = requests.post(url, data=json.dumps(params), headers=headers)
-        logger.debug(r)
+        if logger:
+            logger.debug(r)
         return True
     except:
         print "Error:", sys.exc_info()[0]