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