salt/tests/unit/modules/test_vsphere.py

1442 lines
67 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
'''
:codeauthor: :email:`Nicole Thomas <nicole@saltstack.com>`
:codeauthor: :email:`Alexandru Bleotu <alexandru.bleotu@morganstanley.com>`
Tests for functions in salt.modules.vsphere
'''
# Import Python Libs
from __future__ import absolute_import
# Import Salt Libs
import salt.modules.vsphere as vsphere
from salt.exceptions import CommandExecutionError, VMwareSaltError, \
ArgumentValueError, VMwareObjectRetrievalError
# Import Salt Testing Libs
2017-03-21 17:58:19 +00:00
from tests.support.mixins import LoaderModuleMockMixin
from tests.support.unit import TestCase, skipIf
from tests.support.mock import (
MagicMock,
patch,
NO_MOCK,
NO_MOCK_REASON,
call
)
# Globals
HOST = '1.2.3.4'
USER = 'root'
PASSWORD = 'SuperSecret!'
ERROR = 'Some Testing Error Message'
2016-12-12 10:56:13 +00:00
@skipIf(NO_MOCK, NO_MOCK_REASON)
2017-03-21 17:58:19 +00:00
class VsphereTestCase(TestCase, LoaderModuleMockMixin):
'''
Unit TestCase for the salt.modules.vsphere module.
'''
def setup_loader_modules(self):
2017-04-10 13:00:57 +00:00
return {vsphere: {'__virtual__': MagicMock(return_value='vsphere')}}
# Tests for get_coredump_network_config function
def test_get_coredump_network_config_esxi_hosts_not_list(self):
'''
Tests CommandExecutionError is raised when esxi_hosts is provided,
but is not a list.
'''
self.assertRaises(CommandExecutionError,
vsphere.get_coredump_network_config,
HOST, USER, PASSWORD, esxi_hosts='foo')
def test_get_coredump_network_config_host_list_bad_retcode(self):
'''
Tests error message returned with list of esxi_hosts.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'Error': ERROR}},
vsphere.get_coredump_network_config(HOST, USER, PASSWORD, esxi_hosts=[host_1]))
def test_get_coredump_network_config_host_list_success(self):
'''
Tests successful function return when an esxi_host is provided.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
with patch('salt.modules.vsphere._format_coredump_stdout', MagicMock(return_value={})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'Coredump Config': {}}},
vsphere.get_coredump_network_config(HOST, USER, PASSWORD, esxi_hosts=[host_1]))
def test_get_coredump_network_config_bad_retcode(self):
'''
Tests error message given for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
self.assertEqual({HOST: {'Error': ERROR}},
vsphere.get_coredump_network_config(HOST, USER, PASSWORD))
def test_get_coredump_network_config_success(self):
'''
Tests successful function return for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
with patch('salt.modules.vsphere._format_coredump_stdout', MagicMock(return_value={})):
self.assertEqual({HOST: {'Coredump Config': {}}},
vsphere.get_coredump_network_config(HOST, USER, PASSWORD))
# Tests for coredump_network_enable function
def test_coredump_network_enable_esxi_hosts_not_list(self):
'''
Tests CommandExecutionError is raised when esxi_hosts is provided,
but is not a list.
'''
self.assertRaises(CommandExecutionError,
vsphere.coredump_network_enable,
HOST, USER, PASSWORD, True, esxi_hosts='foo')
def test_coredump_network_enable_host_list_bad_retcode(self):
'''
Tests error message returned with list of esxi_hosts.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'Error': ERROR}},
vsphere.coredump_network_enable(HOST, USER, PASSWORD, True, esxi_hosts=[host_1]))
def test_coredump_network_enable_host_list_success(self):
'''
Tests successful function return when an esxi_host is provided.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
with patch('salt.modules.vsphere._format_coredump_stdout', MagicMock(return_value={})):
enabled = True
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'Coredump Enabled': enabled}},
vsphere.coredump_network_enable(HOST, USER, PASSWORD, enabled, esxi_hosts=[host_1]))
def test_coredump_network_enable_bad_retcode(self):
'''
Tests error message given for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
self.assertEqual({HOST: {'Error': ERROR}},
vsphere.coredump_network_enable(HOST, USER, PASSWORD, True))
def test_coredump_network_enable_success(self):
'''
Tests successful function return for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
with patch('salt.modules.vsphere._format_coredump_stdout', MagicMock(return_value={})):
enabled = True
self.assertEqual({HOST: {'Coredump Enabled': enabled}},
vsphere.coredump_network_enable(HOST, USER, PASSWORD, enabled))
# Tests for set_coredump_network_config function
def test_set_coredump_network_config_esxi_hosts_not_list(self):
'''
Tests CommandExecutionError is raised when esxi_hosts is provided,
but is not a list.
'''
self.assertRaises(CommandExecutionError,
vsphere.set_coredump_network_config,
HOST, USER, PASSWORD, 'loghost', 'foo', esxi_hosts='bar')
def test_set_coredump_network_config_host_list_bad_retcode(self):
'''
Tests error message returned with list of esxi_hosts.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'retcode': 1, 'success': False}},
vsphere.set_coredump_network_config(HOST,
USER,
PASSWORD,
'dump-ip.test.com',
esxi_hosts=[host_1]))
def test_set_coredump_network_config_host_list_success(self):
'''
Tests successful function return when an esxi_host is provided.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'retcode': 0, 'success': True}},
vsphere.set_coredump_network_config(HOST,
USER,
PASSWORD,
'dump-ip.test.com',
esxi_hosts=[host_1]))
def test_set_coredump_network_config_bad_retcode(self):
'''
Tests error message given for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1})):
self.assertEqual({HOST: {'retcode': 1, 'success': False}},
vsphere.set_coredump_network_config(HOST,
USER,
PASSWORD,
'dump-ip.test.com'))
def test_set_coredump_network_config_success(self):
'''
Tests successful function return for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0})):
self.assertEqual({HOST: {'retcode': 0, 'success': True}},
vsphere.set_coredump_network_config(HOST,
USER,
PASSWORD,
'dump-ip.test.com'))
# Tests for get_firewall_status function
def test_get_firewall_status_esxi_hosts_not_list(self):
'''
Tests CommandExecutionError is raised when esxi_hosts is provided,
but is not a list.
'''
self.assertRaises(CommandExecutionError,
vsphere.get_firewall_status,
HOST, USER, PASSWORD, esxi_hosts='foo')
def test_get_firewall_status_host_list_bad_retcode(self):
'''
Tests error message returned with list of esxi_hosts.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'success': False, 'Error': ERROR, 'rulesets': None}},
vsphere.get_firewall_status(HOST, USER, PASSWORD, esxi_hosts=[host_1]))
def test_get_firewall_status_host_list_success(self):
'''
Tests successful function return when an esxi_host is provided.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'rulesets': {}, 'success': True}},
vsphere.get_firewall_status(HOST, USER, PASSWORD, esxi_hosts=[host_1]))
def test_get_firewall_status_bad_retcode(self):
'''
Tests error message given for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
self.assertEqual({HOST: {'success': False, 'Error': ERROR, 'rulesets': None}},
vsphere.get_firewall_status(HOST, USER, PASSWORD))
def test_get_firewall_status_success(self):
'''
Tests successful function return for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
self.assertEqual({HOST: {'rulesets': {}, 'success': True}},
vsphere.get_firewall_status(HOST, USER, PASSWORD))
# Tests for enable_firewall_ruleset function
def test_enable_firewall_ruleset_esxi_hosts_not_list(self):
'''
Tests CommandExecutionError is raised when esxi_hosts is provided,
but is not a list.
'''
self.assertRaises(CommandExecutionError,
vsphere.enable_firewall_ruleset,
HOST, USER, PASSWORD, 'foo', 'bar', esxi_hosts='baz')
# Tests for syslog_service_reload function
def test_syslog_service_reload_esxi_hosts_not_list(self):
'''
Tests CommandExecutionError is raised when esxi_hosts is provided,
but is not a list.
'''
self.assertRaises(CommandExecutionError,
vsphere.syslog_service_reload,
HOST, USER, PASSWORD, esxi_hosts='foo')
# Tests for set_syslog_config function.
# These tests only test the firewall=True and syslog_config == 'loghost' if block.
# The rest of the function is tested in the _set_syslog_config_helper tests below.
def test_set_syslog_config_esxi_hosts_not_list(self):
'''
Tests CommandExecutionError is raised when esxi_hosts is provided,
but is not a list, but we don't enter the 'loghost'/firewall loop.
'''
self.assertRaises(CommandExecutionError,
vsphere.set_syslog_config,
HOST, USER, PASSWORD, 'foo', 'bar', esxi_hosts='baz')
def test_set_syslog_config_esxi_hosts_not_list_firewall(self):
'''
Tests CommandExecutionError is raised when esxi_hosts is provided,
but is not a list, and we enter the 'loghost'/firewall loop.
'''
self.assertRaises(CommandExecutionError,
vsphere.set_syslog_config,
HOST, USER, PASSWORD, 'loghost', 'foo', firewall=True, esxi_hosts='bar')
def test_set_syslog_config_host_list_firewall_bad_retcode(self):
'''
Tests error message returned with list of esxi_hosts with 'loghost' as syslog_config.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.modules.vsphere.enable_firewall_ruleset',
MagicMock(return_value={'host_1.foo.com': {'retcode': 1, 'stdout': ERROR}})):
with patch('salt.modules.vsphere._set_syslog_config_helper',
MagicMock(return_value={})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'enable_firewall': {'message': ERROR, 'success': False}}},
vsphere.set_syslog_config(HOST,
USER,
PASSWORD,
'loghost',
'foo',
firewall=True,
esxi_hosts=[host_1]))
def test_set_syslog_config_host_list_firewall_success(self):
'''
Tests successful function return with list of esxi_hosts with 'loghost' as syslog_config.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.modules.vsphere.enable_firewall_ruleset',
MagicMock(return_value={'host_1.foo.com': {'retcode': 0}})):
with patch('salt.modules.vsphere._set_syslog_config_helper',
MagicMock(return_value={})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'enable_firewall': {'success': True}}},
vsphere.set_syslog_config(HOST,
USER,
PASSWORD,
'loghost',
'foo',
firewall=True,
esxi_hosts=[host_1]))
def test_set_syslog_config_firewall_bad_retcode(self):
'''
Tests error message given for a single ESXi host with 'loghost' as syslog_config.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.modules.vsphere.enable_firewall_ruleset',
MagicMock(return_value={HOST: {'retcode': 1, 'stdout': ERROR}})):
with patch('salt.modules.vsphere._set_syslog_config_helper',
MagicMock(return_value={})):
self.assertEqual({HOST: {'enable_firewall': {'message': ERROR, 'success': False}}},
vsphere.set_syslog_config(HOST,
USER,
PASSWORD,
'loghost',
'foo',
firewall=True))
def test_set_syslog_config_firewall_success(self):
'''
Tests successful function return for a single ESXi host with 'loghost' as syslog_config.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.modules.vsphere.enable_firewall_ruleset',
MagicMock(return_value={HOST: {'retcode': 0}})):
with patch('salt.modules.vsphere._set_syslog_config_helper',
MagicMock(return_value={})):
self.assertEqual({HOST: {'enable_firewall': {'success': True}}},
vsphere.set_syslog_config(HOST,
USER,
PASSWORD,
'loghost',
'foo',
firewall=True))
# Tests for get_syslog_config function
def test_get_syslog_config_esxi_hosts_not_list(self):
'''
Tests CommandExecutionError is raised when esxi_hosts is provided,
but is not a list.
'''
self.assertRaises(CommandExecutionError,
vsphere.get_syslog_config,
HOST, USER, PASSWORD, esxi_hosts='foo')
def test_get_syslog_config_host_list_bad_retcode(self):
'''
Tests error message returned with list of esxi_hosts.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'message': ERROR, 'success': False}},
vsphere.get_syslog_config(HOST, USER, PASSWORD, esxi_hosts=[host_1]))
def test_get_syslog_config_host_list_success(self):
'''
Tests successful function return when an esxi_host is provided.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'success': True}},
vsphere.get_syslog_config(HOST, USER, PASSWORD, esxi_hosts=[host_1]))
def test_get_syslog_config_bad_retcode(self):
'''
Tests error message given for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
self.assertEqual({HOST: {'message': ERROR, 'success': False}},
vsphere.get_syslog_config(HOST, USER, PASSWORD))
def test_get_syslog_config_success(self):
'''
Tests successful function return for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
self.assertEqual({HOST: {'success': True}},
vsphere.get_syslog_config(HOST, USER, PASSWORD))
# Tests for reset_syslog_config function
def test_reset_syslog_config_no_syslog_config(self):
'''
Tests CommandExecutionError is raised when a syslog_config parameter is missing.
'''
self.assertRaises(CommandExecutionError,
vsphere.reset_syslog_config,
HOST, USER, PASSWORD)
def test_reset_syslog_config_esxi_hosts_not_list(self):
'''
Tests CommandExecutionError is raised when esxi_hosts is provided,
but is not a list.
'''
self.assertRaises(CommandExecutionError,
vsphere.reset_syslog_config,
HOST, USER, PASSWORD, syslog_config='test', esxi_hosts='foo')
def test_reset_syslog_config_invalid_config_param(self):
'''
Tests error message returned when an invalid syslog_config parameter is provided.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={})):
error = 'Invalid syslog configuration parameter'
self.assertEqual({HOST: {'success': False, 'test': {'message': error, 'success': False}}},
vsphere.reset_syslog_config(HOST, USER, PASSWORD,
syslog_config='test'))
def test_reset_syslog_config_host_list_bad_retcode(self):
'''
Tests error message returned with list of esxi_hosts.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'success': False, 'logdir': {'message': ERROR, 'success': False}}},
vsphere.reset_syslog_config(HOST, USER, PASSWORD,
syslog_config='logdir',
esxi_hosts=[host_1]))
def test_reset_syslog_config_host_list_success(self):
'''
Tests successful function return when an esxi_host is provided.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
host_1 = 'host_1.foo.com'
self.assertEqual({host_1: {'success': True, 'loghost': {'success': True}}},
vsphere.reset_syslog_config(HOST, USER, PASSWORD,
syslog_config='loghost',
esxi_hosts=[host_1]))
def test_reset_syslog_config_bad_retcode(self):
'''
Tests error message given for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
self.assertEqual({HOST: {'success': False, 'logdir-unique': {'message': ERROR, 'success': False}}},
vsphere.reset_syslog_config(HOST, USER, PASSWORD,
syslog_config='logdir-unique'))
def test_reset_syslog_config_success(self):
'''
Tests successful function return for a single ESXi host.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
self.assertEqual({HOST: {'success': True, 'default-rotate': {'success': True}}},
vsphere.reset_syslog_config(HOST, USER, PASSWORD,
syslog_config='default-rotate'))
def test_reset_syslog_config_success_multiple_configs(self):
'''
Tests successful function return for a single ESXi host when passing in multiple syslog_config values.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
self.assertEqual({HOST: {'success': True,
'default-size': {'success': True},
'default-timeout': {'success': True}}},
vsphere.reset_syslog_config(HOST, USER, PASSWORD,
syslog_config='default-size,default-timeout'))
def test_reset_syslog_config_success_all_configs(self):
'''
Tests successful function return for a single ESXi host when passing in multiple syslog_config values.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0, 'stdout': ''})):
self.assertEqual({HOST: {'success': True,
'logdir': {'success': True},
'loghost': {'success': True},
'default-rotate': {'success': True},
'default-size': {'success': True},
'default-timeout': {'success': True},
'logdir-unique': {'success': True}}},
vsphere.reset_syslog_config(HOST, USER, PASSWORD,
syslog_config='all'))
# Tests for _reset_syslog_config_params function
def test_reset_syslog_config_params_no_valid_reset(self):
'''
Tests function returns False when an invalid syslog config is passed.
'''
valid_resets = ['hello', 'world']
config = 'foo'
ret = {'success': False, config: {'success': False, 'message': 'Invalid syslog configuration parameter'}}
self.assertEqual(ret, vsphere._reset_syslog_config_params(HOST, USER, PASSWORD,
'cmd', config, valid_resets))
def test_reset_syslog_config_params_error(self):
'''
Tests function returns False when the esxxli function returns an unsuccessful retcode.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
valid_resets = ['hello', 'world']
error_dict = {'success': False, 'message': ERROR}
ret = {'success': False, 'hello': error_dict, 'world': error_dict}
self.assertDictEqual(ret, vsphere._reset_syslog_config_params(HOST, USER, PASSWORD,
'cmd', valid_resets, valid_resets))
def test_reset_syslog_config_params_success(self):
'''
Tests function returns True when the esxxli function returns a successful retcode.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0})):
valid_resets = ['hello', 'world']
ret = {'success': True, 'hello': {'success': True}, 'world': {'success': True}}
self.assertDictEqual(ret, vsphere._reset_syslog_config_params(HOST, USER, PASSWORD,
'cmd', valid_resets, valid_resets))
# Tests for _set_syslog_config_helper function
def test_set_syslog_config_helper_no_valid_reset(self):
'''
Tests function returns False when an invalid syslog config is passed.
'''
config = 'foo'
ret = {'success': False, 'message': '\'{0}\' is not a valid config variable.'.format(config)}
self.assertEqual(ret, vsphere._set_syslog_config_helper(HOST, USER, PASSWORD, config, 'bar'))
def test_set_syslog_config_helper_bad_retcode(self):
'''
Tests function returns False when the esxcli function returns an unsuccessful retcode.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 1, 'stdout': ERROR})):
config = 'default-rotate'
self.assertEqual({config: {'success': False, 'message': ERROR}},
vsphere._set_syslog_config_helper(HOST, USER, PASSWORD, config, 'foo'))
def test_set_syslog_config_helper_success(self):
'''
Tests successful function return.
'''
2017-04-10 13:00:57 +00:00
with patch('salt.utils.vmware.esxcli', MagicMock(return_value={'retcode': 0})):
config = 'logdir'
self.assertEqual({config: {'success': True}},
vsphere._set_syslog_config_helper(HOST, USER, PASSWORD, config, 'foo'))
@skipIf(NO_MOCK, NO_MOCK_REASON)
2017-03-21 17:58:19 +00:00
class GetProxyTypeTestCase(TestCase, LoaderModuleMockMixin):
'''Tests for salt.modules.vsphere.get_proxy_type'''
def setup_loader_modules(self):
2017-04-10 13:00:57 +00:00
return {vsphere: {'__virtual__': MagicMock(return_value='vsphere')}}
def test_output(self):
with patch.dict(vsphere.__pillar__,
{'proxy': {'proxytype': 'fake_proxy_type'}}):
ret = vsphere.get_proxy_type()
self.assertEqual('fake_proxy_type', ret)
@skipIf(NO_MOCK, NO_MOCK_REASON)
2017-03-21 17:58:19 +00:00
class SupportsProxiesTestCase(TestCase, LoaderModuleMockMixin):
'''Tests for salt.modules.vsphere.supports_proxies decorator'''
def setup_loader_modules(self):
2017-04-10 13:00:57 +00:00
return {vsphere: {'__virtual__': MagicMock(return_value='vsphere')}}
def test_supported_proxy(self):
@vsphere.supports_proxies('supported')
def mock_function():
return 'fake_function'
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='supported')):
ret = mock_function()
self.assertEqual('fake_function', ret)
def test_unsupported_proxy(self):
@vsphere.supports_proxies('supported')
def mock_function():
return 'fake_function'
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='unsupported')):
with self.assertRaises(CommandExecutionError) as excinfo:
mock_function()
self.assertEqual('\'unsupported\' proxy is not supported by '
'function mock_function',
excinfo.exception.strerror)
@skipIf(NO_MOCK, NO_MOCK_REASON)
2017-03-21 17:58:19 +00:00
class _GetProxyConnectionDetailsTestCase(TestCase, LoaderModuleMockMixin):
'''Tests for salt.modules.vsphere._get_proxy_connection_details'''
def setup_loader_modules(self):
2017-04-10 13:00:57 +00:00
return {vsphere: {'__virtual__': MagicMock(return_value='vsphere')}}
def setUp(self):
self.esxi_host_details = {'host': 'fake_host',
'username': 'fake_username',
'password': 'fake_password',
'protocol': 'fake_protocol',
'port': 'fake_port',
'mechanism': 'fake_mechanism',
'principal': 'fake_principal',
'domain': 'fake_domain'}
self.esxi_vcenter_details = {'vcenter': 'fake_vcenter',
'username': 'fake_username',
'password': 'fake_password',
'protocol': 'fake_protocol',
'port': 'fake_port',
'mechanism': 'fake_mechanism',
'principal': 'fake_principal',
'domain': 'fake_domain'}
self.esxdatacenter_details = {'vcenter': 'fake_vcenter',
'datacenter': 'fake_dc',
'username': 'fake_username',
'password': 'fake_password',
'protocol': 'fake_protocol',
'port': 'fake_port',
'mechanism': 'fake_mechanism',
'principal': 'fake_principal',
'domain': 'fake_domain'}
self.esxcluster_details = {'vcenter': 'fake_vcenter',
'datacenter': 'fake_dc',
2017-09-11 09:57:42 +00:00
'cluster': 'fake_cluster',
'username': 'fake_username',
'password': 'fake_password',
'protocol': 'fake_protocol',
'port': 'fake_port',
'mechanism': 'fake_mechanism',
'principal': 'fake_principal',
'domain': 'fake_domain'}
self.vcenter_details = {'vcenter': 'fake_vcenter',
'username': 'fake_username',
'password': 'fake_password',
'protocol': 'fake_protocol',
'port': 'fake_port',
'mechanism': 'fake_mechanism',
'principal': 'fake_principal',
'domain': 'fake_domain'}
2017-03-21 17:58:19 +00:00
def tearDown(self):
for attrname in ('esxi_host_details', 'esxi_vcenter_details',
'esxdatacenter_details', 'esxcluster_details'):
2017-03-21 17:58:19 +00:00
try:
delattr(self, attrname)
except AttributeError:
continue
def test_esxi_proxy_host_details(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='esxi')):
with patch.dict(vsphere.__salt__,
{'esxi.get_details':
MagicMock(return_value=self.esxi_host_details)}):
ret = vsphere._get_proxy_connection_details()
self.assertEqual(('fake_host', 'fake_username', 'fake_password',
'fake_protocol', 'fake_port', 'fake_mechanism',
'fake_principal', 'fake_domain'), ret)
def test_esxdatacenter_proxy_details(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='esxdatacenter')):
with patch.dict(vsphere.__salt__,
{'esxdatacenter.get_details': MagicMock(
return_value=self.esxdatacenter_details)}):
ret = vsphere._get_proxy_connection_details()
self.assertEqual(('fake_vcenter', 'fake_username', 'fake_password',
'fake_protocol', 'fake_port', 'fake_mechanism',
'fake_principal', 'fake_domain'), ret)
def test_esxcluster_proxy_details(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='esxcluster')):
with patch.dict(vsphere.__salt__,
{'esxcluster.get_details': MagicMock(
return_value=self.esxcluster_details)}):
ret = vsphere._get_proxy_connection_details()
self.assertEqual(('fake_vcenter', 'fake_username', 'fake_password',
'fake_protocol', 'fake_port', 'fake_mechanism',
'fake_principal', 'fake_domain'), ret)
def test_esxi_proxy_vcenter_details(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='esxi')):
with patch.dict(vsphere.__salt__,
{'esxi.get_details':
MagicMock(
return_value=self.esxi_vcenter_details)}):
ret = vsphere._get_proxy_connection_details()
self.assertEqual(('fake_vcenter', 'fake_username', 'fake_password',
'fake_protocol', 'fake_port', 'fake_mechanism',
'fake_principal', 'fake_domain'), ret)
def test_vcenter_proxy_details(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='vcenter')):
with patch.dict(vsphere.__salt__,
{'vcenter.get_details': MagicMock(
return_value=self.vcenter_details)}):
ret = vsphere._get_proxy_connection_details()
self.assertEqual(('fake_vcenter', 'fake_username', 'fake_password',
'fake_protocol', 'fake_port', 'fake_mechanism',
'fake_principal', 'fake_domain'), ret)
def test_unsupported_proxy_details(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='unsupported')):
with self.assertRaises(CommandExecutionError) as excinfo:
ret = vsphere._get_proxy_connection_details()
self.assertEqual('\'unsupported\' proxy is not supported',
excinfo.exception.strerror)
@skipIf(NO_MOCK, NO_MOCK_REASON)
2017-03-21 17:58:19 +00:00
class GetsServiceInstanceViaProxyTestCase(TestCase, LoaderModuleMockMixin):
'''
Tests for salt.modules.vsphere.gets_service_instance_via_proxy
decorator
'''
def setup_loader_modules(self):
2017-04-10 13:00:57 +00:00
patcher = patch('salt.utils.vmware.get_service_instance', MagicMock())
patcher.start()
self.addCleanup(patcher.stop)
patcher = patch('salt.utils.vmware.disconnect', MagicMock())
patcher.start()
self.addCleanup(patcher.stop)
return {
vsphere: {
'__virtual__': MagicMock(return_value='vsphere'),
'_get_proxy_connection_details': MagicMock(),
}
}
def setUp(self):
self.mock_si = MagicMock()
self.mock_details1 = MagicMock()
self.mock_details2 = MagicMock()
2017-03-21 17:58:19 +00:00
def tearDown(self):
for attrname in ('mock_si', 'mock_details1', 'mock_details2'):
try:
delattr(self, attrname)
except AttributeError:
continue
def test_no_service_instance_or_kwargs_parameters(self):
@vsphere.gets_service_instance_via_proxy
def mock_function():
return 'fake_function'
with self.assertRaises(CommandExecutionError) as excinfo:
mock_function()
self.assertEqual('Function mock_function must have either a '
'\'service_instance\', or a \'**kwargs\' type '
'parameter', excinfo.exception.strerror)
def test___get_proxy_connection_details_call(self):
mock__get_proxy_connection_details = MagicMock()
2016-12-12 10:56:13 +00:00
@vsphere.gets_service_instance_via_proxy
def mock_function(service_instance=None):
return service_instance
with patch('salt.modules.vsphere._get_proxy_connection_details',
mock__get_proxy_connection_details):
mock_function()
mock__get_proxy_connection_details.assert_called_once_with()
def test_service_instance_named_parameter_no_value(self):
mock_get_service_instance = MagicMock(return_value=self.mock_si)
mock_disconnect = MagicMock()
2016-12-12 10:56:13 +00:00
@vsphere.gets_service_instance_via_proxy
def mock_function(service_instance=None):
return service_instance
with patch('salt.modules.vsphere._get_proxy_connection_details',
MagicMock(return_value=(self.mock_details1,
self.mock_details2))):
with patch('salt.utils.vmware.get_service_instance',
mock_get_service_instance):
with patch('salt.utils.vmware.disconnect', mock_disconnect):
ret = mock_function()
mock_get_service_instance.assert_called_once_with(self.mock_details1,
self.mock_details2)
mock_disconnect.assert_called_once_with(self.mock_si)
self.assertEqual(ret, self.mock_si)
def test_service_instance_kwargs_parameter_no_value(self):
mock_get_service_instance = MagicMock(return_value=self.mock_si)
mock_disconnect = MagicMock()
2016-12-12 10:56:13 +00:00
@vsphere.gets_service_instance_via_proxy
def mock_function(**kwargs):
return kwargs['service_instance']
with patch('salt.modules.vsphere._get_proxy_connection_details',
MagicMock(return_value=(self.mock_details1,
self.mock_details2))):
with patch('salt.utils.vmware.get_service_instance',
mock_get_service_instance):
with patch('salt.utils.vmware.disconnect', mock_disconnect):
ret = mock_function()
mock_get_service_instance.assert_called_once_with(self.mock_details1,
self.mock_details2)
mock_disconnect.assert_called_once_with(self.mock_si)
self.assertEqual(ret, self.mock_si)
def test_service_instance_positional_parameter_no_default_value(self):
mock_get_service_instance = MagicMock()
mock_disconnect = MagicMock()
2016-12-12 10:56:13 +00:00
@vsphere.gets_service_instance_via_proxy
def mock_function(service_instance):
return service_instance
with patch('salt.modules.vsphere._get_proxy_connection_details',
MagicMock(return_value=(self.mock_details1,
self.mock_details2))):
with patch('salt.utils.vmware.get_service_instance',
mock_get_service_instance):
with patch('salt.utils.vmware.disconnect', mock_disconnect):
ret = mock_function(self.mock_si)
self.assertEqual(mock_get_service_instance.call_count, 0)
self.assertEqual(mock_disconnect.call_count, 0)
self.assertEqual(ret, self.mock_si)
def test_service_instance_positional_parameter_with_default_value(self):
mock_get_service_instance = MagicMock()
mock_disconnect = MagicMock()
2016-12-12 10:56:13 +00:00
@vsphere.gets_service_instance_via_proxy
def mock_function(service_instance=None):
return service_instance
with patch('salt.modules.vsphere._get_proxy_connection_details',
MagicMock(return_value=(self.mock_details1,
self.mock_details2))):
with patch('salt.utils.vmware.get_service_instance',
mock_get_service_instance):
with patch('salt.utils.vmware.disconnect', mock_disconnect):
ret = mock_function(self.mock_si)
self.assertEqual(mock_get_service_instance.call_count, 0)
self.assertEqual(mock_disconnect.call_count, 0)
self.assertEqual(ret, self.mock_si)
def test_service_instance_named_parameter_with_default_value(self):
mock_get_service_instance = MagicMock()
mock_disconnect = MagicMock()
2016-12-12 10:56:13 +00:00
@vsphere.gets_service_instance_via_proxy
def mock_function(service_instance=None):
return service_instance
with patch('salt.modules.vsphere._get_proxy_connection_details',
MagicMock(return_value=(self.mock_details1,
self.mock_details2))):
with patch('salt.utils.vmware.get_service_instance',
mock_get_service_instance):
with patch('salt.utils.vmware.disconnect', mock_disconnect):
ret = mock_function(service_instance=self.mock_si)
self.assertEqual(mock_get_service_instance.call_count, 0)
self.assertEqual(mock_disconnect.call_count, 0)
self.assertEqual(ret, self.mock_si)
def test_service_instance_kwargs_parameter_passthrough(self):
mock_get_service_instance = MagicMock()
mock_disconnect = MagicMock()
2016-12-12 10:56:13 +00:00
@vsphere.gets_service_instance_via_proxy
def mock_function(**kwargs):
return kwargs['service_instance']
with patch('salt.modules.vsphere._get_proxy_connection_details',
MagicMock(return_value=(self.mock_details1,
self.mock_details2))):
with patch('salt.utils.vmware.get_service_instance',
mock_get_service_instance):
with patch('salt.utils.vmware.disconnect', mock_disconnect):
ret = mock_function(service_instance=self.mock_si)
self.assertEqual(mock_get_service_instance.call_count, 0)
self.assertEqual(mock_disconnect.call_count, 0)
self.assertEqual(ret, self.mock_si)
@skipIf(NO_MOCK, NO_MOCK_REASON)
2017-03-21 17:58:19 +00:00
class GetServiceInstanceViaProxyTestCase(TestCase, LoaderModuleMockMixin):
'''Tests for salt.modules.vsphere.get_service_instance_via_proxy'''
def setup_loader_modules(self):
2017-04-10 13:00:57 +00:00
patcher = patch('salt.utils.vmware.get_service_instance', MagicMock())
patcher.start()
self.addCleanup(patcher.stop)
return {
vsphere: {
'__virtual__': MagicMock(return_value='vsphere'),
'get_proxy_type': MagicMock(return_value='esxi'),
'_get_proxy_connection_details': MagicMock()
}
}
def test_supported_proxies(self):
supported_proxies = ['esxi', 'esxcluster', 'esxdatacenter', 'vcenter']
for proxy_type in supported_proxies:
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value=proxy_type)):
vsphere.get_service_instance_via_proxy()
def test_get_service_instance_call(self):
mock_connection_details = [MagicMock(), MagicMock(), MagicMock()]
mock_get_service_instance = MagicMock()
with patch('salt.modules.vsphere._get_proxy_connection_details',
MagicMock(return_value=mock_connection_details)):
with patch('salt.utils.vmware.get_service_instance',
mock_get_service_instance):
vsphere.get_service_instance_via_proxy()
mock_get_service_instance.assert_called_once_with(
*mock_connection_details)
def test_output(self):
mock_si = MagicMock()
with patch('salt.utils.vmware.get_service_instance',
MagicMock(return_value=mock_si)):
res = vsphere.get_service_instance_via_proxy()
self.assertEqual(res, mock_si)
@skipIf(NO_MOCK, NO_MOCK_REASON)
2017-03-21 17:58:19 +00:00
class DisconnectTestCase(TestCase, LoaderModuleMockMixin):
'''Tests for salt.modules.vsphere.disconnect'''
def setup_loader_modules(self):
2017-04-10 13:00:57 +00:00
self.mock_si = MagicMock()
self.addCleanup(delattr, self, 'mock_si')
patcher = patch('salt.utils.vmware.disconnect', MagicMock())
patcher.start()
self.addCleanup(patcher.stop)
return {
vsphere: {
'__virtual__': MagicMock(return_value='vsphere'),
'_get_proxy_connection_details': MagicMock(),
'get_proxy_type': MagicMock(return_value='esxi')
}
}
def test_supported_proxies(self):
supported_proxies = ['esxi', 'esxcluster', 'esxdatacenter', 'vcenter']
for proxy_type in supported_proxies:
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value=proxy_type)):
2017-04-10 13:00:57 +00:00
vsphere.disconnect(self.mock_si)
def test_disconnect_call(self):
mock_disconnect = MagicMock()
with patch('salt.utils.vmware.disconnect', mock_disconnect):
2017-04-10 13:00:57 +00:00
vsphere.disconnect(self.mock_si)
mock_disconnect.assert_called_once_with(self.mock_si)
def test_output(self):
2017-04-10 13:00:57 +00:00
res = vsphere.disconnect(self.mock_si)
self.assertEqual(res, True)
@skipIf(NO_MOCK, NO_MOCK_REASON)
2017-03-21 17:58:19 +00:00
class TestVcenterConnectionTestCase(TestCase, LoaderModuleMockMixin):
'''Tests for salt.modules.vsphere.test_vcenter_connection'''
def setup_loader_modules(self):
2017-04-10 13:00:57 +00:00
self.mock_si = MagicMock()
self.addCleanup(delattr, self, 'mock_si')
patcher = patch('salt.utils.vmware.get_service_instance', MagicMock(return_value=self.mock_si))
patcher.start()
self.addCleanup(patcher.stop)
patcher = patch('salt.utils.vmware.disconnect', MagicMock())
patcher.start()
self.addCleanup(patcher.stop)
patcher = patch('salt.utils.vmware.is_connection_to_a_vcenter', MagicMock())
patcher.start()
self.addCleanup(patcher.stop)
return {
vsphere: {
'__virtual__': MagicMock(return_value='vsphere'),
'_get_proxy_connection_details': MagicMock(),
'get_proxy_type': MagicMock(return_value='esxi')
}
}
def test_supported_proxies(self):
supported_proxies = ['esxi', 'esxcluster', 'esxdatacenter', 'vcenter']
for proxy_type in supported_proxies:
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value=proxy_type)):
vsphere.test_vcenter_connection()
def test_is_connection_to_a_vcenter_call_default_service_instance(self):
mock_is_connection_to_a_vcenter = MagicMock()
with patch('salt.utils.vmware.is_connection_to_a_vcenter',
mock_is_connection_to_a_vcenter):
vsphere.test_vcenter_connection()
2017-04-10 13:00:57 +00:00
mock_is_connection_to_a_vcenter.assert_called_once_with(self.mock_si)
def test_is_connection_to_a_vcenter_call_explicit_service_instance(self):
expl_mock_si = MagicMock()
mock_is_connection_to_a_vcenter = MagicMock()
with patch('salt.utils.vmware.is_connection_to_a_vcenter',
mock_is_connection_to_a_vcenter):
vsphere.test_vcenter_connection(expl_mock_si)
mock_is_connection_to_a_vcenter.assert_called_once_with(expl_mock_si)
def test_is_connection_to_a_vcenter_raises_vmware_salt_error(self):
exc = VMwareSaltError('VMwareSaltError')
with patch('salt.utils.vmware.is_connection_to_a_vcenter',
MagicMock(side_effect=exc)):
res = vsphere.test_vcenter_connection()
self.assertEqual(res, False)
def test_is_connection_to_a_vcenter_raises_non_vmware_salt_error(self):
exc = Exception('NonVMwareSaltError')
with patch('salt.utils.vmware.is_connection_to_a_vcenter',
MagicMock(side_effect=exc)):
with self.assertRaises(Exception) as excinfo:
res = vsphere.test_vcenter_connection()
self.assertEqual('NonVMwareSaltError', str(excinfo.exception))
def test_output_true(self):
with patch('salt.utils.vmware.is_connection_to_a_vcenter',
MagicMock(return_value=True)):
res = vsphere.test_vcenter_connection()
self.assertEqual(res, True)
def test_output_false(self):
with patch('salt.utils.vmware.is_connection_to_a_vcenter',
MagicMock(return_value=False)):
res = vsphere.test_vcenter_connection()
self.assertEqual(res, False)
@skipIf(NO_MOCK, NO_MOCK_REASON)
class ListDatacentersViaProxyTestCase(TestCase, LoaderModuleMockMixin):
'''Tests for salt.modules.vsphere.list_datacenters_via_proxy'''
def setup_loader_modules(self):
self.mock_si = MagicMock()
self.addCleanup(delattr, self, 'mock_si')
2017-07-21 07:15:33 +00:00
patcher = patch('salt.utils.vmware.get_service_instance',
MagicMock(return_value=self.mock_si))
patcher.start()
2017-07-21 07:15:33 +00:00
self.addCleanup(patcher.stop)
patcher = patch('salt.utils.vmware.get_datacenters', MagicMock())
patcher.start()
self.addCleanup(patcher.stop)
patcher = patch('salt.utils.vmware.get_managed_object_name',
MagicMock())
patcher.start()
self.addCleanup(patcher.stop)
return {
vsphere: {
'__virtual__': MagicMock(return_value='vsphere'),
'_get_proxy_connection_details': MagicMock(),
'get_proxy_type': MagicMock(return_value='esxdatacenter')
}
}
def test_supported_proxies(self):
supported_proxies = ['esxcluster', 'esxdatacenter', 'vcenter']
for proxy_type in supported_proxies:
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value=proxy_type)):
vsphere.list_datacenters_via_proxy()
def test_default_params(self):
mock_get_datacenters = MagicMock()
with patch('salt.utils.vmware.get_datacenters',
mock_get_datacenters):
vsphere.list_datacenters_via_proxy()
mock_get_datacenters.assert_called_once_with(self.mock_si,
get_all_datacenters=True)
def test_defined_service_instance(self):
mock_si = MagicMock()
mock_get_datacenters = MagicMock()
with patch('salt.utils.vmware.get_datacenters',
mock_get_datacenters):
vsphere.list_datacenters_via_proxy(service_instance=mock_si)
mock_get_datacenters.assert_called_once_with(mock_si,
get_all_datacenters=True)
def test_defined_datacenter_names(self):
mock_datacenters = MagicMock()
mock_get_datacenters = MagicMock()
with patch('salt.utils.vmware.get_datacenters',
mock_get_datacenters):
vsphere.list_datacenters_via_proxy(mock_datacenters)
mock_get_datacenters.assert_called_once_with(self.mock_si,
mock_datacenters)
def test_get_managed_object_name_calls(self):
mock_get_managed_object_name = MagicMock()
mock_dcs = [MagicMock(), MagicMock()]
with patch('salt.utils.vmware.get_datacenters',
MagicMock(return_value=mock_dcs)):
with patch('salt.utils.vmware.get_managed_object_name',
mock_get_managed_object_name):
vsphere.list_datacenters_via_proxy()
2017-07-20 23:07:09 +00:00
mock_get_managed_object_name.assert_has_calls([call(mock_dcs[0]),
call(mock_dcs[1])])
def test_returned_array(self):
with patch('salt.utils.vmware.get_datacenters',
MagicMock(return_value=[MagicMock(), MagicMock()])):
# 2 datacenters
with patch('salt.utils.vmware.get_managed_object_name',
MagicMock(side_effect=['fake_dc1', 'fake_dc2',
'fake_dc3'])):
# 3 possible names
res = vsphere.list_datacenters_via_proxy()
# Just the first two names are in the result
self.assertEqual(res, [{'name': 'fake_dc1'}, {'name': 'fake_dc2'}])
@skipIf(NO_MOCK, NO_MOCK_REASON)
class CreateDatacenterTestCase(TestCase, LoaderModuleMockMixin):
'''Tests for salt.modules.vsphere.create_datacenter'''
def setup_loader_modules(self):
self.mock_si = MagicMock()
self.addCleanup(delattr, self, 'mock_si')
patcher = patch('salt.utils.vmware.get_service_instance', MagicMock(return_value=self.mock_si))
patcher.start()
self.addCleanup(patcher.stop)
patcher = patch('salt.utils.vmware.create_datacenter', MagicMock())
patcher.start()
self.addCleanup(patcher.stop)
return {
vsphere: {
'__virtual__': MagicMock(return_value='vsphere'),
'_get_proxy_connection_details': MagicMock(),
'get_proxy_type': MagicMock(return_value='esxdatacenter')
}
}
def test_supported_proxies(self):
supported_proxies = ['esxdatacenter', 'vcenter']
for proxy_type in supported_proxies:
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value=proxy_type)):
vsphere.create_datacenter('fake_dc1')
def test_default_service_instance(self):
mock_create_datacenter = MagicMock()
with patch('salt.utils.vmware.create_datacenter',
mock_create_datacenter):
vsphere.create_datacenter('fake_dc1')
mock_create_datacenter.assert_called_once_with(self.mock_si,
'fake_dc1')
def test_defined_service_instance(self):
mock_si = MagicMock()
mock_create_datacenter = MagicMock()
with patch('salt.utils.vmware.create_datacenter',
mock_create_datacenter):
vsphere.create_datacenter('fake_dc1', service_instance=mock_si)
mock_create_datacenter.assert_called_once_with(mock_si, 'fake_dc1')
def test_returned_value(self):
res = vsphere.create_datacenter('fake_dc1')
self.assertEqual(res, {'create_datacenter': True})
@skipIf(NO_MOCK, NO_MOCK_REASON)
class ListClusterTestCase(TestCase, LoaderModuleMockMixin):
'''Tests for salt.modules.vsphere.list_cluster'''
def setup_loader_modules(self):
return {
vsphere: {
'__virtual__': MagicMock(return_value='vsphere'),
'_get_proxy_connection_details': MagicMock(),
'__salt__': {}
}
}
def setUp(self):
attrs = (('mock_si', MagicMock()),
('mock_dc', MagicMock()),
('mock_cl', MagicMock()),
('mock__get_cluster_dict', MagicMock()))
for attr, mock_obj in attrs:
setattr(self, attr, mock_obj)
self.addCleanup(delattr, self, attr)
attrs = (('mock_get_cluster', MagicMock(return_value=self.mock_cl)),)
for attr, mock_obj in attrs:
setattr(self, attr, mock_obj)
self.addCleanup(delattr, self, attr)
patches = (
('salt.utils.vmware.get_service_instance',
MagicMock(return_value=self.mock_si)),
('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='esxcluster')),
('salt.modules.vsphere._get_proxy_target',
MagicMock(return_value=self.mock_cl)),
('salt.utils.vmware.get_cluster', self.mock_get_cluster),
('salt.modules.vsphere._get_cluster_dict',
self.mock__get_cluster_dict))
for module, mock_obj in patches:
patcher = patch(module, mock_obj)
patcher.start()
self.addCleanup(patcher.stop)
# Patch __salt__ dunder
patcher = patch.dict(vsphere.__salt__,
{'esxcluster.get_details':
MagicMock(return_value={'cluster': 'cl'})})
patcher.start()
self.addCleanup(patcher.stop)
def test_supported_proxies(self):
supported_proxies = ['esxcluster', 'esxdatacenter']
for proxy_type in supported_proxies:
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value=proxy_type)):
vsphere.list_cluster(cluster='cl')
def test_default_service_instance(self):
mock__get_proxy_target = MagicMock()
with patch('salt.modules.vsphere._get_proxy_target',
mock__get_proxy_target):
vsphere.list_cluster()
mock__get_proxy_target.assert_called_once_with(self.mock_si)
def test_defined_service_instance(self):
mock_si = MagicMock()
mock__get_proxy_target = MagicMock()
with patch('salt.modules.vsphere._get_proxy_target',
mock__get_proxy_target):
vsphere.list_cluster(service_instance=mock_si)
mock__get_proxy_target.assert_called_once_with(mock_si)
def test_no_cluster_raises_argument_value_error(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='esxdatacenter')):
with patch('salt.modules.vsphere._get_proxy_target', MagicMock()):
with self.assertRaises(ArgumentValueError) as excinfo:
vsphere.list_cluster()
self.assertEqual(excinfo.exception.strerror,
'\'cluster\' needs to be specified')
def test_get_cluster_call(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='esxdatacenter')):
with patch('salt.modules.vsphere._get_proxy_target',
MagicMock(return_value=self.mock_dc)):
vsphere.list_cluster(cluster='cl')
self.mock_get_cluster.assert_called_once_with(self.mock_dc, 'cl')
def test__get_cluster_dict_call(self):
vsphere.list_cluster()
self.mock__get_cluster_dict.assert_called_once_with('cl', self.mock_cl)
@skipIf(NO_MOCK, NO_MOCK_REASON)
class RenameDatastoreTestCase(TestCase, LoaderModuleMockMixin):
'''Tests for salt.modules.vsphere.rename_datastore'''
def setup_loader_modules(self):
return {
vsphere: {
'__virtual__': MagicMock(return_value='vsphere'),
'_get_proxy_connection_details': MagicMock(),
'get_proxy_type': MagicMock(return_value='esxdatacenter')
}
}
def setUp(self):
self.mock_si = MagicMock()
self.mock_target = MagicMock()
self.mock_ds_ref = MagicMock()
self.mock_get_datastores = MagicMock(return_value=[self.mock_ds_ref])
self.mock_rename_datastore = MagicMock()
patches = (
('salt.utils.vmware.get_service_instance',
MagicMock(return_value=self.mock_si)),
('salt.modules.vsphere._get_proxy_target',
MagicMock(return_value=self.mock_target)),
('salt.utils.vmware.get_datastores',
self.mock_get_datastores),
('salt.utils.vmware.rename_datastore',
self.mock_rename_datastore))
for mod, mock in patches:
patcher = patch(mod, mock)
patcher.start()
self.addCleanup(patcher.stop)
def tearDown(self):
for attr in ('mock_si', 'mock_target', 'mock_ds_ref',
'mock_get_datastores', 'mock_rename_datastore'):
delattr(self, attr)
def test_supported_proxes(self):
supported_proxies = ['esxi', 'esxcluster', 'esxdatacenter']
for proxy_type in supported_proxies:
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value=proxy_type)):
vsphere.rename_datastore('current_ds_name', 'new_ds_name')
def test_default_service_instance(self):
mock__get_proxy_target = MagicMock()
with patch('salt.modules.vsphere._get_proxy_target',
mock__get_proxy_target):
vsphere.rename_datastore('current_ds_name', 'new_ds_name')
mock__get_proxy_target.assert_called_once_with(self.mock_si)
def test_defined_service_instance(self):
mock_si = MagicMock()
mock__get_proxy_target = MagicMock()
with patch('salt.modules.vsphere._get_proxy_target',
mock__get_proxy_target):
vsphere.rename_datastore('current_ds_name', 'new_ds_name',
service_instance=mock_si)
mock__get_proxy_target.assert_called_once_with(mock_si)
def test_get_datastore_call(self):
vsphere.rename_datastore('current_ds_name', 'new_ds_name')
self.mock_get_datastores.assert_called_once_with(
self.mock_si, self.mock_target,
datastore_names=['current_ds_name'])
def test_get_no_datastores(self):
with patch('salt.utils.vmware.get_datastores',
MagicMock(return_value=[])):
with self.assertRaises(VMwareObjectRetrievalError) as excinfo:
vsphere.rename_datastore('current_ds_name', 'new_ds_name')
self.assertEqual(excinfo.exception.strerror,
'Datastore \'current_ds_name\' was not found')
def test_rename_datastore_call(self):
vsphere.rename_datastore('current_ds_name', 'new_ds_name')
self.mock_rename_datastore.assert_called_once_with(
self.mock_ds_ref, 'new_ds_name')
@skipIf(NO_MOCK, NO_MOCK_REASON)
class _GetProxyTargetTestCase(TestCase, LoaderModuleMockMixin):
'''Tests for salt.modules.vsphere._get_proxy_target'''
def setup_loader_modules(self):
return {
vsphere: {
'__virtual__': MagicMock(return_value='vsphere'),
'_get_proxy_connection_details': MagicMock(),
'get_proxy_type': MagicMock(return_value='esxdatacenter')
}
}
def setUp(self):
attrs = (('mock_si', MagicMock()),
('mock_dc', MagicMock()),
('mock_cl', MagicMock()),
('mock_root', MagicMock()))
for attr, mock_obj in attrs:
setattr(self, attr, mock_obj)
self.addCleanup(delattr, self, attr)
attrs = (('mock_get_datacenter', MagicMock(return_value=self.mock_dc)),
('mock_get_cluster', MagicMock(return_value=self.mock_cl)),
('mock_get_root_folder',
MagicMock(return_value=self.mock_root)))
for attr, mock_obj in attrs:
setattr(self, attr, mock_obj)
self.addCleanup(delattr, self, attr)
patches = (
('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='esxcluster')),
('salt.utils.vmware.is_connection_to_a_vcenter',
MagicMock(return_value=True)),
('salt.modules.vsphere._get_esxcluster_proxy_details',
MagicMock(return_value=(None, None, None, None, None, None, None,
None, 'datacenter', 'cluster'))),
('salt.modules.vsphere._get_esxdatacenter_proxy_details',
MagicMock(return_value=(None, None, None, None, None, None, None,
None, 'datacenter'))),
('salt.utils.vmware.get_datacenter', self.mock_get_datacenter),
('salt.utils.vmware.get_cluster', self.mock_get_cluster),
('salt.utils.vmware.get_root_folder', self.mock_get_root_folder))
for module, mock_obj in patches:
patcher = patch(module, mock_obj)
patcher.start()
self.addCleanup(patcher.stop)
def test_supported_proxies(self):
supported_proxies = ['esxcluster', 'esxdatacenter']
for proxy_type in supported_proxies:
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value=proxy_type)):
vsphere._get_proxy_target(self.mock_si)
def test_connected_to_esxi(self):
with patch('salt.utils.vmware.is_connection_to_a_vcenter',
MagicMock(return_value=False)):
with self.assertRaises(CommandExecutionError) as excinfo:
vsphere._get_proxy_target(self.mock_si)
self.assertEqual(excinfo.exception.strerror,
'\'_get_proxy_target\' not supported when '
'connected via the ESXi host')
def test_get_cluster_call(self):
#with patch('salt.modules.vsphere.get_proxy_type',
# MagicMock(return_value='esxcluster')):
vsphere._get_proxy_target(self.mock_si)
self.mock_get_datacenter.assert_called_once_with(self.mock_si,
'datacenter')
self.mock_get_cluster.assert_called_once_with(self.mock_dc, 'cluster')
def test_esxcluster_proxy_return(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='esxcluster')):
ret = vsphere._get_proxy_target(self.mock_si)
self.assertEqual(ret, self.mock_cl)
def test_get_datacenter_call(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='esxdatacenter')):
vsphere._get_proxy_target(self.mock_si)
self.mock_get_datacenter.assert_called_once_with(self.mock_si,
'datacenter')
self.assertEqual(self.mock_get_cluster.call_count, 0)
def test_esxdatacenter_proxy_return(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='esxdatacenter')):
ret = vsphere._get_proxy_target(self.mock_si)
self.assertEqual(ret, self.mock_dc)
def test_vcenter_proxy_return(self):
with patch('salt.modules.vsphere.get_proxy_type',
MagicMock(return_value='vcenter')):
ret = vsphere._get_proxy_target(self.mock_si)
self.mock_get_root_folder.assert_called_once_with(self.mock_si)
self.assertEqual(ret, self.mock_root)