Add a flag in the CLI to report results to DB 81/26481/1
authorjose.lausuch <jose.lausuch@ericsson.com>
Sun, 25 Dec 2016 11:02:23 +0000 (12:02 +0100)
committerjose.lausuch <jose.lausuch@ericsson.com>
Sun, 25 Dec 2016 11:02:23 +0000 (12:02 +0100)
Change-Id: I155a7a8bc5457d013677f8b6e437fe27c31896ae
Signed-off-by: jose.lausuch <jose.lausuch@ericsson.com>
functest/cli/cli_base.py
functest/cli/commands/cli_testcase.py
functest/cli/commands/cli_tier.py

index 3b14fa3..cc697ed 100644 (file)
@@ -121,8 +121,11 @@ def testcase_show(testname):
 @click.option('-n', '--noclean', is_flag=True, default=False,
               help='The created openstack resources by the test'
               'will not be cleaned after the execution.')
-def testcase_run(testname, noclean):
-    _testcase.run(testname, noclean)
+@click.option('-r', '--report', is_flag=True, default=False,
+              help='Push results to the results DataBase. Only CI Pods'
+              'have rights to do that.')
+def testcase_run(testname, noclean, report):
+    _testcase.run(testname, noclean, report)
 
 
 @tier.command('list', help="Lists the available tiers.")
@@ -147,5 +150,8 @@ def tier_gettests(tiername):
 @click.option('-n', '--noclean', is_flag=True, default=False,
               help='The created openstack resources by the tests'
               'will not be cleaned after the execution.')
-def tier_run(tiername, noclean):
-    _tier.run(tiername, noclean)
+@click.option('-r', '--report', is_flag=True, default=False,
+              help='Push results to the results DataBase. Only CI Pods'
+              'have rights to do that.')
+def tier_run(tiername, noclean, report):
+    _tier.run(tiername, noclean, report)
index d019632..b656624 100644 (file)
@@ -42,7 +42,14 @@ class CliTestcase:
         click.echo(description)
 
     @staticmethod
-    def run(testname, noclean=False):
+    def run(testname, noclean=False, report=False):
+
+        flags = ""
+        if noclean:
+            flags += "-n "
+        if report:
+            flags += "-r "
+
         if testname == 'vacation':
             vacation.main()
         elif not os.path.isfile(CONST.env_active):
@@ -51,10 +58,6 @@ class CliTestcase:
         else:
             tests = testname.split(",")
             for test in tests:
-                if noclean:
-                    cmd = ("python %s/functest/ci/run_tests.py "
-                           "-n -t %s" % (CONST.dir_repo_functest, test))
-                else:
-                    cmd = ("python %s/functest/ci/run_tests.py "
-                           "-t %s" % (CONST.dir_repo_functest, test))
+                cmd = ("python %s/functest/ci/run_tests.py "
+                       "%s -t %s" % (CONST.dir_repo_functest, flags, test))
                 ft_utils.execute_command(cmd)
index 0120849..b9d25b6 100644 (file)
@@ -54,15 +54,18 @@ class CliTier:
             click.echo("Test cases in tier '%s':\n %s\n" % (tiername, tests))
 
     @staticmethod
-    def run(tiername, noclean=False):
+    def run(tiername, noclean=False, report=False):
+
+        flags = ""
+        if noclean:
+            flags += "-n "
+        if report:
+            flags += "-r "
+
         if not os.path.isfile(CONST.env_active):
             click.echo("Functest environment is not ready. "
                        "Run first 'functest env prepare'")
         else:
-            if noclean:
-                cmd = ("python %s/functest/ci/run_tests.py "
-                       "-n -t %s" % (CONST.dir_repo_functest, tiername))
-            else:
-                cmd = ("python %s/functest/ci/run_tests.py "
-                       "-t %s" % (CONST.dir_repo_functest, tiername))
+            cmd = ("python %s/functest/ci/run_tests.py "
+                   "%s -t %s" % (CONST.dir_repo_functest, flags, tiername))
             ft_utils.execute_command(cmd)