Replace CONST.* by getattribute/setattr for cli
[functest.git] / functest / cli / commands / cli_testcase.py
1 #!/usr/bin/env python
2 #
3 # jose.lausuch@ericsson.com
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9
10 """ global variables """
11
12 import os
13
14 import click
15
16 import functest.ci.tier_builder as tb
17 from functest.utils.constants import CONST
18 import functest.utils.functest_utils as ft_utils
19 import functest.utils.functest_vacation as vacation
20
21
22 class CliTestcase(object):
23
24     def __init__(self):
25         self.tiers = tb.TierBuilder(
26             CONST.__getattribute__('INSTALLER_TYPE'),
27             CONST.__getattribute__('DEPLOY_SCENARIO'),
28             CONST.__getattribute__('functest_testcases_yaml'))
29
30     def list(self):
31         summary = ""
32         for tier in self.tiers.get_tiers():
33             for test in tier.get_tests():
34                 summary += (" %s\n" % test.get_name())
35         click.echo(summary)
36
37     def show(self, testname):
38         description = self.tiers.get_test(testname)
39         if description is None:
40             click.echo("The test case '%s' does not exist or is not supported."
41                        % testname)
42
43         click.echo(description)
44
45     @staticmethod
46     def run(testname, noclean=False, report=False):
47
48         flags = ""
49         if noclean:
50             flags += "-n "
51         if report:
52             flags += "-r "
53
54         if testname == 'vacation':
55             vacation.main()
56         elif not os.path.isfile(CONST.__getattribute__('env_active')):
57             click.echo("Functest environment is not ready. "
58                        "Run first 'functest env prepare'")
59         else:
60             tests = testname.split(",")
61             for test in tests:
62                 cmd = ("python %s/functest/ci/run_tests.py "
63                        "%s -t %s" %
64                        (CONST.__getattribute__('dir_repo_functest'),
65                         flags, test))
66                 ft_utils.execute_command(cmd)