Disable all missing-docstring warnings in unit tests
[functest.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 # pylint: disable=missing-docstring
10
11 import logging
12 import unittest
13 import os
14
15 import mock
16
17 from functest.cli.commands import cli_os
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.snapshot_file = 'test_snapshot_file'
29         self.cli_os = cli_os.CliOpenStack()
30
31     def test_ping_endpoint_default(self):
32         self.cli_os.os_auth_url = self.os_auth_url
33         self.cli_os.endpoint_ip = self.endpoint_ip
34         with mock.patch('functest.cli.commands.cli_os.os.system',
35                         return_value=0):
36             self.assertEqual(self.cli_os.ping_endpoint(), 0)
37
38     @mock.patch('functest.cli.commands.cli_os.exit', side_effect=Exception)
39     @mock.patch('functest.cli.commands.cli_os.click.echo')
40     def test_ping_endpoint_missing_auth_url(self, mock_click_echo,
41                                             mock_exit):
42         with self.assertRaises(Exception):
43             self.cli_os.os_auth_url = None
44             self.cli_os.ping_endpoint()
45             mock_click_echo.assert_called_once_with("Source the OpenStack "
46                                                     "credentials first '. "
47                                                     "$creds'")
48
49     @mock.patch('functest.cli.commands.cli_os.exit')
50     @mock.patch('functest.cli.commands.cli_os.click.echo')
51     def test_ping_endpoint_os_system_fails(self, mock_click_echo,
52                                            mock_exit):
53         self.cli_os.os_auth_url = self.os_auth_url
54         self.cli_os.endpoint_ip = self.endpoint_ip
55         with mock.patch('functest.cli.commands.cli_os.os.system',
56                         return_value=1):
57             self.cli_os.ping_endpoint()
58             mock_click_echo.assert_called_once_with("Cannot talk to the "
59                                                     "endpoint %s\n" %
60                                                     self.endpoint_ip)
61             mock_exit.assert_called_once_with(0)
62
63     def test_check(self):
64         with mock.patch.object(self.cli_os, 'ping_endpoint'), \
65             mock.patch('functest.cli.commands.cli_os.check_deployment.'
66                        'CheckDeployment') as mock_check_deployment:
67             self.cli_os.check()
68             self.assertTrue(mock_check_deployment.called)
69
70     @mock.patch('functest.cli.commands.cli_os.click.echo')
71     def test_show_credentials(self, mock_click_echo):
72         key = 'OS_KEY'
73         value = 'OS_VALUE'
74         with mock.patch.dict(os.environ, {key: value}):
75             self.cli_os.show_credentials()
76             mock_click_echo.assert_any_call("{}={}".format(key, value))
77
78
79 if __name__ == "__main__":
80     logging.disable(logging.CRITICAL)
81     unittest.main(verbosity=2)