Modify how to disable logging in unit test.
[functest-xtesting.git] / functest / tests / unit / cli / commands / test_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 import logging
11 import unittest
12 import os
13
14 import mock
15
16 from functest.cli.commands import cli_os
17 from functest.utils.constants import CONST
18
19
20 class CliOpenStackTesting(unittest.TestCase):
21
22     def setUp(self):
23         self.endpoint_ip = 'test_ip'
24         self.os_auth_url = 'http://test_ip:test_port/v2.0'
25         self.installer_type = 'test_installer_type'
26         self.installer_ip = 'test_installer_ip'
27         self.openstack_creds = 'test_openstack_creds'
28         self.dir_repo_functest = 'test_dir_repo_functest'
29         self.snapshot_file = 'test_snapshot_file'
30         self.cli_os = cli_os.CliOpenStack()
31
32     def test_ping_endpoint_default(self):
33         self.cli_os.os_auth_url = self.os_auth_url
34         self.cli_os.endpoint_ip = self.endpoint_ip
35         with mock.patch('functest.cli.commands.cli_os.os.system',
36                         return_value=0):
37             self.assertEqual(self.cli_os.ping_endpoint(), 0)
38
39     @mock.patch('functest.cli.commands.cli_os.exit', side_effect=Exception)
40     @mock.patch('functest.cli.commands.cli_os.click.echo')
41     def test_ping_endpoint_missing_auth_url(self, mock_click_echo,
42                                             mock_exit):
43         with self.assertRaises(Exception):
44             self.cli_os.os_auth_url = None
45             self.cli_os.ping_endpoint()
46             mock_click_echo.assert_called_once_with("Source the OpenStack "
47                                                     "credentials first '. "
48                                                     "$creds'")
49
50     @mock.patch('functest.cli.commands.cli_os.exit')
51     @mock.patch('functest.cli.commands.cli_os.click.echo')
52     def test_ping_endpoint_os_system_fails(self, mock_click_echo,
53                                            mock_exit):
54         self.cli_os.os_auth_url = self.os_auth_url
55         self.cli_os.endpoint_ip = self.endpoint_ip
56         with mock.patch('functest.cli.commands.cli_os.os.system',
57                         return_value=1):
58             self.cli_os.ping_endpoint()
59             mock_click_echo.assert_called_once_with("Cannot talk to the "
60                                                     "endpoint %s\n" %
61                                                     self.endpoint_ip)
62             mock_exit.assert_called_once_with(0)
63
64     @mock.patch('functest.cli.commands.cli_os.ft_utils.execute_command')
65     @mock.patch('functest.cli.commands.cli_os.os.path.isfile',
66                 return_value=False)
67     @mock.patch('functest.cli.commands.cli_os.click.echo')
68     def test_fetch_credentials_default(self, mock_click_echo,
69                                        mock_os_path,
70                                        mock_ftutils_execute):
71         CONST.INSTALLER_TYPE = self.installer_type
72         CONST.INSTALLER_IP = self.installer_ip
73         cmd = ("%s/releng/utils/fetch_os_creds.sh -d %s -i %s -a %s"
74                % (CONST.dir_repos,
75                   self.openstack_creds,
76                   self.installer_type,
77                   self.installer_ip))
78         self.cli_os.openstack_creds = self.openstack_creds
79         self.cli_os.fetch_credentials()
80         mock_click_echo.assert_called_once_with("Fetching credentials from "
81                                                 "installer node '%s' with "
82                                                 "IP=%s.." %
83                                                 (self.installer_type,
84                                                  self.installer_ip))
85         mock_ftutils_execute.assert_called_once_with(cmd, verbose=False)
86
87     @mock.patch('functest.cli.commands.cli_os.ft_utils.execute_command')
88     @mock.patch('functest.cli.commands.cli_os.os.path.isfile',
89                 return_value=False)
90     @mock.patch('functest.cli.commands.cli_os.click.echo')
91     def test_fetch_credentials_missing_installer_type(self, mock_click_echo,
92                                                       mock_os_path,
93                                                       mock_ftutils_execute):
94         installer_type = None
95         installer_ip = self.installer_ip
96         CONST.INSTALLER_TYPE = installer_type
97         CONST.INSTALLER_IP = installer_ip
98         cmd = ("%s/releng/utils/fetch_os_creds.sh -d %s -i %s -a %s"
99                % (CONST.dir_repos,
100                   self.openstack_creds,
101                   installer_type,
102                   installer_ip))
103         self.cli_os.openstack_creds = self.openstack_creds
104         self.cli_os.fetch_credentials()
105         mock_click_echo.assert_any_call("The environment variable "
106                                         "'INSTALLER_TYPE' is not"
107                                         "defined. Please export it")
108         mock_click_echo.assert_any_call("Fetching credentials from "
109                                         "installer node '%s' with "
110                                         "IP=%s.." %
111                                         (installer_type,
112                                          installer_ip))
113         mock_ftutils_execute.assert_called_once_with(cmd, verbose=False)
114
115     @mock.patch('functest.cli.commands.cli_os.ft_utils.execute_command')
116     @mock.patch('functest.cli.commands.cli_os.os.path.isfile',
117                 return_value=False)
118     @mock.patch('functest.cli.commands.cli_os.click.echo')
119     def test_fetch_credentials_missing_installer_ip(self, mock_click_echo,
120                                                     mock_os_path,
121                                                     mock_ftutils_execute):
122         installer_type = self.installer_type
123         installer_ip = None
124         CONST.INSTALLER_TYPE = installer_type
125         CONST.INSTALLER_IP = installer_ip
126         cmd = ("%s/releng/utils/fetch_os_creds.sh -d %s -i %s -a %s"
127                % (CONST.dir_repos,
128                   self.openstack_creds,
129                   installer_type,
130                   installer_ip))
131         self.cli_os.openstack_creds = self.openstack_creds
132         self.cli_os.fetch_credentials()
133         mock_click_echo.assert_any_call("The environment variable "
134                                         "'INSTALLER_IP' is not"
135                                         "defined. Please export it")
136         mock_click_echo.assert_any_call("Fetching credentials from "
137                                         "installer node '%s' with "
138                                         "IP=%s.." %
139                                         (installer_type,
140                                          installer_ip))
141         mock_ftutils_execute.assert_called_once_with(cmd, verbose=False)
142
143     @mock.patch('functest.cli.commands.cli_os.ft_utils.execute_command')
144     def test_check(self, mock_ftutils_execute):
145         with mock.patch.object(self.cli_os, 'ping_endpoint'):
146             CONST.dir_repo_functest = self.dir_repo_functest
147             cmd = CONST.dir_repo_functest + "/functest/ci/check_os.sh"
148             self.cli_os.check()
149             mock_ftutils_execute.assert_called_once_with(cmd, verbose=False)
150
151     @mock.patch('functest.cli.commands.cli_os.os.path.isfile',
152                 return_value=False)
153     @mock.patch('functest.cli.commands.cli_os.click.echo')
154     def test_snapshot_create(self, mock_click_echo, mock_os_path):
155         with mock.patch.object(self.cli_os, 'ping_endpoint'), \
156                 mock.patch('functest.cli.commands.cli_os.os_snapshot.main') \
157                 as mock_os_snapshot:
158             self.cli_os.snapshot_create()
159             mock_click_echo.assert_called_once_with("Generating Openstack "
160                                                     "snapshot...")
161             self.assertTrue(mock_os_snapshot.called)
162
163     @mock.patch('functest.cli.commands.cli_os.os.path.isfile',
164                 return_value=True)
165     @mock.patch('functest.cli.commands.cli_os.click.echo')
166     def test_snapshot_create_overwrite(self, mock_click_echo, mock_os_path):
167         with mock.patch('__builtin__.raw_input', return_value="y") \
168                 as mock_raw_input, \
169                 mock.patch.object(self.cli_os, 'ping_endpoint'), \
170                 mock.patch('functest.cli.commands.cli_os.os_snapshot.main') \
171                 as mock_os_snapshot:
172             self.cli_os.snapshot_create()
173             mock_click_echo.assert_called_once_with("Generating Openstack "
174                                                     "snapshot...")
175             mock_raw_input.assert_any_call("It seems there is already an "
176                                            "OpenStack snapshot. Do you want "
177                                            "to overwrite it with the current "
178                                            "OpenStack status? [y|n]\n")
179             self.assertTrue(mock_os_snapshot.called)
180
181     @mock.patch('functest.cli.commands.cli_os.os.path.isfile',
182                 return_value=False)
183     @mock.patch('functest.cli.commands.cli_os.click.echo')
184     def test_snapshot_show_missing_snap(self, mock_click_echo, mock_os_path):
185         self.cli_os.snapshot_show()
186         mock_click_echo.assert_called_once_with("There is no OpenStack "
187                                                 "snapshot created. To create "
188                                                 "one run the command "
189                                                 "'functest openstack "
190                                                 "snapshot-create'")
191
192     @mock.patch('functest.cli.commands.cli_os.os.path.isfile',
193                 return_value=True)
194     @mock.patch('functest.cli.commands.cli_os.click.echo')
195     def test_snapshot_show_default(self, mock_click_echo, mock_os_path):
196         with mock.patch('__builtin__.open', mock.mock_open(read_data='0')) \
197                 as m:
198             self.cli_os.snapshot_file = self.snapshot_file
199             self.cli_os.snapshot_show()
200             m.assert_called_once_with(self.snapshot_file, 'r')
201             mock_click_echo.assert_called_once_with("\n0")
202
203     @mock.patch('functest.cli.commands.cli_os.os.path.isfile',
204                 return_value=True)
205     @mock.patch('functest.cli.commands.cli_os.click.echo')
206     def test_clean(self, mock_click_echo, mock_os_path):
207         with mock.patch.object(self.cli_os, 'ping_endpoint'), \
208                 mock.patch('functest.cli.commands.cli_os.os_clean.main') \
209                 as mock_os_clean:
210             self.cli_os.clean()
211             self.assertTrue(mock_os_clean.called)
212
213     @mock.patch('functest.cli.commands.cli_os.os.path.isfile',
214                 return_value=False)
215     @mock.patch('functest.cli.commands.cli_os.click.echo')
216     def test_clean_missing_file(self, mock_click_echo, mock_os_path):
217         with mock.patch.object(self.cli_os, 'ping_endpoint'):
218             self.cli_os.clean()
219             mock_click_echo.assert_called_once_with("Not possible to clean "
220                                                     "OpenStack without a "
221                                                     "snapshot. This could "
222                                                     "cause problems. "
223                                                     "Run first the command "
224                                                     "'functest openstack "
225                                                     "snapshot-create'")
226
227     @mock.patch('functest.cli.commands.cli_os.click.echo')
228     def test_show_credentials(self, mock_click_echo):
229         key = 'OS_KEY'
230         value = 'OS_VALUE'
231         with mock.patch.dict(os.environ, {key: value}):
232             self.cli_os.show_credentials()
233             mock_click_echo.assert_any_call("{}={}".format(key, value))
234
235
236 if __name__ == "__main__":
237     logging.disable(logging.CRITICAL)
238     unittest.main(verbosity=2)