Merge "Added test cases for running the Python Tests included with SNAPS."
[functest-xtesting.git] / functest / cli / commands / cli_os.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
11 import os
12
13 import click
14
15 import functest.utils.functest_utils as ft_utils
16 import functest.utils.openstack_clean as os_clean
17 import functest.utils.openstack_snapshot as os_snapshot
18 import functest.utils.functest_constants as ft_constants
19
20
21 OPENSTACK_RC_FILE = ft_constants.OPENSTACK_CREDS
22 OPENSTACK_SNAPSHOT_FILE = ft_constants.OPENSTACK_SNAPSHOT_FILE
23
24
25 class CliOpenStack:
26
27     def __init__(self):
28         self.os_auth_url = ft_constants.OS_AUTH_URL
29         self.endpoint_ip = None
30         self.endpoint_port = None
31         if self.os_auth_url is not None:
32             self.endpoint_ip = self.os_auth_url.rsplit("/")[2].rsplit(":")[0]
33             self.endpoint_port = self.os_auth_url.rsplit("/")[2].rsplit(":")[1]
34
35     def ping_endpoint(self):
36         if self.os_auth_url is None:
37             click.echo("Source the OpenStack credentials first '. $creds'")
38             exit(0)
39         response = os.system("ping -c 1 " + self.endpoint_ip + ">/dev/null")
40         if response == 0:
41             return 0
42         else:
43             click.echo("Cannot talk to the endpoint %s\n" % self.endpoint_ip)
44             exit(0)
45
46     def show_credentials(self):
47         for key, value in os.environ.items():
48             if key.startswith('OS_'):
49                 click.echo("{}={}".format(key, value))
50
51     def fetch_credentials(self):
52         if os.path.isfile(OPENSTACK_RC_FILE):
53             answer = raw_input("It seems the RC file is already present. "
54                                "Do you want to overwrite it? [y|n]\n")
55             while True:
56                 if answer.lower() in ["y", "yes"]:
57                     break
58                 elif answer.lower() in ["n", "no"]:
59                     return
60                 else:
61                     answer = raw_input("Invalid answer. Please type [y|n]\n")
62
63         CI_INSTALLER_TYPE = ft_constants.CI_INSTALLER_TYPE
64         if CI_INSTALLER_TYPE is None:
65             click.echo("The environment variable 'INSTALLER_TYPE' is not"
66                        "defined. Please export it")
67         CI_INSTALLER_IP = ft_constants.CI_INSTALLER_IP
68         if CI_INSTALLER_IP is None:
69             click.echo("The environment variable 'INSTALLER_IP' is not"
70                        "defined. Please export it")
71         cmd = ("%s/releng/utils/fetch_os_creds.sh -d %s -i %s -a %s"
72                % (ft_constants.REPOS_DIR,
73                   OPENSTACK_RC_FILE,
74                   CI_INSTALLER_TYPE,
75                   CI_INSTALLER_IP))
76         click.echo("Fetching credentials from installer node '%s' with IP=%s.."
77                    % (CI_INSTALLER_TYPE, CI_INSTALLER_IP))
78         ft_utils.execute_command(cmd, verbose=False)
79
80     def check(self):
81         self.ping_endpoint()
82         cmd = ft_constants.FUNCTEST_REPO_DIR + "/functest/ci/check_os.sh"
83         ft_utils.execute_command(cmd, verbose=False)
84
85     def snapshot_create(self):
86         self.ping_endpoint()
87         if os.path.isfile(OPENSTACK_SNAPSHOT_FILE):
88             answer = raw_input("It seems there is already an OpenStack "
89                                "snapshot. Do you want to overwrite it with "
90                                "the current OpenStack status? [y|n]\n")
91             while True:
92                 if answer.lower() in ["y", "yes"]:
93                     break
94                 elif answer.lower() in ["n", "no"]:
95                     return
96                 else:
97                     answer = raw_input("Invalid answer. Please type [y|n]\n")
98
99         click.echo("Generating Openstack snapshot...")
100         os_snapshot.main()
101
102     def snapshot_show(self):
103         if not os.path.isfile(OPENSTACK_SNAPSHOT_FILE):
104             click.echo("There is no OpenStack snapshot created. To create "
105                        "one run the command "
106                        "'functest openstack snapshot-create'")
107             return
108         with open(OPENSTACK_SNAPSHOT_FILE, 'r') as yaml_file:
109             click.echo("\n%s"
110                        % yaml_file.read())
111
112     def clean(self):
113         self.ping_endpoint()
114         if not os.path.isfile(OPENSTACK_SNAPSHOT_FILE):
115             click.echo("Not possible to clean OpenStack without a snapshot. "
116                        "This could cause problems. "
117                        "Run first the command "
118                        "'functest openstack snapshot-create'")
119             return
120         os_clean.main()