123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- # -*- coding: utf-8 -*-
- """
- :codeauthor: :email:`Alexandru Bleotu <alexandru.bleotu@morganstanley.com>`
- Tests for esxdatacenter proxy
- """
- # Import Python Libs
- from __future__ import absolute_import, print_function, unicode_literals
- import salt.exceptions
- # Import Salt Libs
- import salt.proxy.esxdatacenter as esxdatacenter
- from salt.config.schemas.esxdatacenter import EsxdatacenterProxySchema
- # Import Salt Testing Libs
- from tests.support.mixins import LoaderModuleMockMixin
- from tests.support.mock import MagicMock, patch
- from tests.support.unit import TestCase, skipIf
- # Import external libs
- try:
- import jsonschema
- HAS_JSONSCHEMA = True
- except ImportError:
- HAS_JSONSCHEMA = False
- @skipIf(not HAS_JSONSCHEMA, "jsonschema is required")
- class InitTestCase(TestCase, LoaderModuleMockMixin):
- """Tests for salt.proxy.esxdatacenter.init"""
- def setup_loader_modules(self):
- return {
- esxdatacenter: {
- "__virtual__": MagicMock(return_value="esxdatacenter"),
- "DETAILS": {},
- "__pillar__": {},
- }
- }
- def setUp(self):
- self.opts_userpass = {
- "proxy": {
- "proxytype": "esxdatacenter",
- "vcenter": "fake_vcenter",
- "datacenter": "fake_dc",
- "mechanism": "userpass",
- "username": "fake_username",
- "passwords": ["fake_password"],
- "protocol": "fake_protocol",
- "port": 100,
- }
- }
- self.opts_sspi = {
- "proxy": {
- "proxytype": "esxdatacenter",
- "vcenter": "fake_vcenter",
- "datacenter": "fake_dc",
- "mechanism": "sspi",
- "domain": "fake_domain",
- "principal": "fake_principal",
- "protocol": "fake_protocol",
- "port": 100,
- }
- }
- patches = (
- (
- "salt.proxy.esxdatacenter.merge",
- MagicMock(return_value=self.opts_sspi["proxy"]),
- ),
- )
- for mod, mock in patches:
- patcher = patch(mod, mock)
- patcher.start()
- self.addCleanup(patcher.stop)
- def test_merge(self):
- mock_pillar_proxy = MagicMock()
- mock_opts_proxy = MagicMock()
- mock_merge = MagicMock(return_value=self.opts_sspi["proxy"])
- with patch.dict(esxdatacenter.__pillar__, {"proxy": mock_pillar_proxy}):
- with patch("salt.proxy.esxdatacenter.merge", mock_merge):
- esxdatacenter.init(opts={"proxy": mock_opts_proxy})
- mock_merge.assert_called_once_with(mock_opts_proxy, mock_pillar_proxy)
- def test_esxdatacenter_schema(self):
- mock_json_validate = MagicMock()
- serialized_schema = EsxdatacenterProxySchema().serialize()
- with patch("salt.proxy.esxdatacenter.jsonschema.validate", mock_json_validate):
- esxdatacenter.init(self.opts_sspi)
- mock_json_validate.assert_called_once_with(
- self.opts_sspi["proxy"], serialized_schema
- )
- def test_invalid_proxy_input_error(self):
- with patch(
- "salt.proxy.esxdatacenter.jsonschema.validate",
- MagicMock(
- side_effect=jsonschema.exceptions.ValidationError("Validation Error")
- ),
- ):
- with self.assertRaises(salt.exceptions.InvalidConfigError) as excinfo:
- esxdatacenter.init(self.opts_userpass)
- self.assertEqual(excinfo.exception.strerror, "Validation Error")
- def test_no_username(self):
- opts = self.opts_userpass.copy()
- del opts["proxy"]["username"]
- with patch(
- "salt.proxy.esxdatacenter.merge", MagicMock(return_value=opts["proxy"])
- ):
- with self.assertRaises(salt.exceptions.InvalidConfigError) as excinfo:
- esxdatacenter.init(opts)
- self.assertEqual(
- excinfo.exception.strerror,
- "Mechanism is set to 'userpass', but no "
- "'username' key found in proxy config.",
- )
- def test_no_passwords(self):
- opts = self.opts_userpass.copy()
- del opts["proxy"]["passwords"]
- with patch(
- "salt.proxy.esxdatacenter.merge", MagicMock(return_value=opts["proxy"])
- ):
- with self.assertRaises(salt.exceptions.InvalidConfigError) as excinfo:
- esxdatacenter.init(opts)
- self.assertEqual(
- excinfo.exception.strerror,
- "Mechanism is set to 'userpass', but no "
- "'passwords' key found in proxy config.",
- )
- def test_no_domain(self):
- opts = self.opts_sspi.copy()
- del opts["proxy"]["domain"]
- with patch(
- "salt.proxy.esxdatacenter.merge", MagicMock(return_value=opts["proxy"])
- ):
- with self.assertRaises(salt.exceptions.InvalidConfigError) as excinfo:
- esxdatacenter.init(opts)
- self.assertEqual(
- excinfo.exception.strerror,
- "Mechanism is set to 'sspi', but no " "'domain' key found in proxy config.",
- )
- def test_no_principal(self):
- opts = self.opts_sspi.copy()
- del opts["proxy"]["principal"]
- with patch(
- "salt.proxy.esxdatacenter.merge", MagicMock(return_value=opts["proxy"])
- ):
- with self.assertRaises(salt.exceptions.InvalidConfigError) as excinfo:
- esxdatacenter.init(opts)
- self.assertEqual(
- excinfo.exception.strerror,
- "Mechanism is set to 'sspi', but no "
- "'principal' key found in proxy config.",
- )
- def test_find_credentials(self):
- mock_find_credentials = MagicMock(
- return_value=("fake_username", "fake_password")
- )
- with patch(
- "salt.proxy.esxdatacenter.merge",
- MagicMock(return_value=self.opts_userpass["proxy"]),
- ):
- with patch(
- "salt.proxy.esxdatacenter.find_credentials", mock_find_credentials
- ):
- esxdatacenter.init(self.opts_userpass)
- mock_find_credentials.assert_called_once_with()
- def test_details_userpass(self):
- mock_find_credentials = MagicMock(
- return_value=("fake_username", "fake_password")
- )
- with patch(
- "salt.proxy.esxdatacenter.merge",
- MagicMock(return_value=self.opts_userpass["proxy"]),
- ):
- with patch(
- "salt.proxy.esxdatacenter.find_credentials", mock_find_credentials
- ):
- esxdatacenter.init(self.opts_userpass)
- self.assertDictEqual(
- esxdatacenter.DETAILS,
- {
- "vcenter": "fake_vcenter",
- "datacenter": "fake_dc",
- "mechanism": "userpass",
- "username": "fake_username",
- "password": "fake_password",
- "passwords": ["fake_password"],
- "protocol": "fake_protocol",
- "port": 100,
- },
- )
- def test_details_sspi(self):
- esxdatacenter.init(self.opts_sspi)
- self.assertDictEqual(
- esxdatacenter.DETAILS,
- {
- "vcenter": "fake_vcenter",
- "datacenter": "fake_dc",
- "mechanism": "sspi",
- "domain": "fake_domain",
- "principal": "fake_principal",
- "protocol": "fake_protocol",
- "port": 100,
- },
- )
|