CLI implementation
[functest.git] / cli / commands / cli_tier.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 import click
11 import os
12 import yaml
13
14 import functest.ci.tier_builder as tb
15 import functest.utils.functest_utils as ft_utils
16
17 """ global variables """
18 with open(os.environ["CONFIG_FUNCTEST_YAML"]) as f:
19     functest_yaml = yaml.safe_load(f)
20
21 REPOS_DIR = os.getenv('repos_dir')
22 FUNCTEST_REPO = ("%s/functest/" % REPOS_DIR)
23 FUNCTEST_CONF_DIR = functest_yaml.get("general").get(
24     "directories").get("dir_functest_conf")
25 ENV_FILE = FUNCTEST_CONF_DIR + "/env_active"
26
27
28 class CliTier:
29     def __init__(self):
30         CI_INSTALLER_TYPE = os.getenv('INSTALLER_TYPE')
31         CI_SCENARIO = os.getenv('DEPLOY_SCENARIO')
32         testcases = FUNCTEST_REPO + "/ci/testcases.yaml"
33         self.tiers = tb.TierBuilder(CI_INSTALLER_TYPE, CI_SCENARIO, testcases)
34
35     def list(self):
36         summary = ""
37         for tier in self.tiers.get_tiers():
38             summary += ("    - %s. %s:\n\t   %s\n"
39                         % (tier.get_order(),
40                            tier.get_name(),
41                            tier.get_test_names()))
42         click.echo(summary)
43
44     def show(self, tiername):
45         tier = self.tiers.get_tier(tiername)
46         if tier is None:
47             tier_names = self.tiers.get_tier_names()
48             click.echo("The tier with name '%s' does not exist. "
49                        "Available tiers are:\n  %s\n" % (tiername, tier_names))
50         else:
51             click.echo(self.tiers.get_tier(tiername))
52
53     def gettests(self, tiername):
54         tier = self.tiers.get_tier(tiername)
55         if tier is None:
56             tier_names = self.tiers.get_tier_names()
57             click.echo("The tier with name '%s' does not exist. "
58                        "Available tiers are:\n  %s\n" % (tiername, tier_names))
59         else:
60             tests = tier.get_test_names()
61             click.echo("Test cases in tier '%s':\n %s\n" % (tiername, tests))
62
63     def run(self, tiername):
64         if not os.path.isfile(ENV_FILE):
65             click.echo("Functest environment is not ready. "
66                        "Run first 'functest env prepare'")
67         else:
68             cmd = ("python /home/opnfv/repos/functest/ci/run_tests.py -t %s"
69                    % tiername)
70             ft_utils.execute_command(cmd)