Merge "Remove all references to /home/opnfv/repos/functest"
[functest.git] / functest / cli / commands / cli_env.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 os
11 import pkg_resources
12
13 import click
14 import prettytable
15
16 from functest.utils.constants import CONST
17 import functest.utils.functest_utils as ft_utils
18
19
20 class CliEnv(object):
21
22     def __init__(self):
23         pass
24
25     def prepare(self):
26         if self.status(verbose=False) == 0:
27             answer = raw_input("It seems that the environment has been "
28                                "already prepared. Do you want to do "
29                                "it again? [y|n]\n")
30             while True:
31                 if answer.lower() in ["y", "yes"]:
32                     os.remove(CONST.__getattribute__('env_active'))
33                     break
34                 elif answer.lower() in ["n", "no"]:
35                     return
36                 else:
37                     answer = raw_input("Invalid answer. Please type [y|n]\n")
38
39         cmd = ("python %s start" % pkg_resources.resource_filename(
40             'functest', 'ci/prepare_env.py'))
41         ft_utils.execute_command(cmd)
42
43     def show(self):
44         def _get_value(attr, default='Unknown'):
45             return attr if attr else default
46
47         install_type = _get_value(CONST.__getattribute__('INSTALLER_TYPE'))
48         installer_ip = _get_value(CONST.__getattribute__('INSTALLER_IP'))
49         installer_info = ("%s, %s" % (install_type, installer_ip))
50         scenario = _get_value(CONST.__getattribute__('DEPLOY_SCENARIO'))
51         node = _get_value(CONST.__getattribute__('NODE_NAME'))
52         is_debug = _get_value(CONST.__getattribute__('CI_DEBUG'), 'false')
53         build_tag = CONST.__getattribute__('BUILD_TAG')
54         if build_tag is not None:
55             build_tag = build_tag.lstrip(
56                 "jenkins-").lstrip("functest").lstrip("-")
57
58         STATUS = "not ready"
59         if self.status(verbose=False) == 0:
60             STATUS = "ready"
61
62         msg = prettytable.PrettyTable(
63             header_style='upper', padding_width=5,
64             field_names=['Functest Environment', 'value'])
65         msg.add_row(['INSTALLER', installer_info])
66         msg.add_row(['SCENARIO', scenario])
67         msg.add_row(['POD', node])
68         if build_tag:
69             msg.add_row(['BUILD TAG', build_tag])
70         msg.add_row(['DEBUG FLAG', is_debug])
71         msg.add_row(['STATUS', STATUS])
72         click.echo(msg.get_string())
73
74     def status(self, verbose=True):
75         ret_val = 0
76         if not os.path.isfile(CONST.__getattribute__('env_active')):
77             if verbose:
78                 click.echo("Functest environment is not installed.\n")
79             ret_val = 1
80         elif verbose:
81             click.echo("Functest environment ready to run tests.\n")
82
83         return ret_val