123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- # -*- coding: utf-8 -*-
- """
- :codeauthor: `Anthony Shaw <anthonyshaw@apache.org>`
- tests.unit.cloud.clouds.gce_test
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- """
- # Import Python libs
- from __future__ import absolute_import, print_function, unicode_literals
- # Import Salt Libs
- from salt.cloud.clouds import gce
- from salt.exceptions import SaltCloudSystemExit
- from salt.utils.versions import LooseVersion
- # Import Salt Testing Libs
- from tests.support.mixins import LoaderModuleMockMixin
- from tests.support.mock import __version__ as mock_version
- from tests.support.mock import patch
- from tests.support.unit import TestCase
- try:
- import libcloud.security
- HAS_LIBCLOUD = True
- except ImportError:
- HAS_LIBCLOUD = False
- VM_NAME = "kings_landing"
- DUMMY_TOKEN = {
- "refresh_token": None,
- "client_id": "dany123",
- "client_secret": "lalalalalalala",
- "grant_type": "refresh_token",
- }
- # Use certifi if installed
- try:
- if HAS_LIBCLOUD:
- # This work-around for Issue #32743 is no longer needed for libcloud >=
- # 1.4.0. However, older versions of libcloud must still be supported
- # with this work-around. This work-around can be removed when the
- # required minimum version of libcloud is 2.0.0 (See PR #40837 - which
- # is implemented in Salt 2018.3.0).
- if LooseVersion(libcloud.__version__) < LooseVersion("1.4.0"):
- import certifi
- libcloud.security.CA_CERTS_PATH.append(certifi.where())
- except ImportError:
- pass
- class GCETestCase(TestCase, LoaderModuleMockMixin):
- """
- Unit TestCase for salt.cloud.clouds.gce module.
- """
- def setup_loader_modules(self):
- return {
- gce: {
- "__active_provider_name__": "",
- "__opts__": {
- "providers": {
- "my-google-cloud": {
- "gce": {
- "project": "daenerys-cloud",
- "service_account_email_address": "dany@targaryen.westeros.cloud",
- "service_account_private_key": "/home/dany/PRIVKEY.pem",
- "driver": "gce",
- "ssh_interface": "public_ips",
- }
- }
- }
- },
- }
- }
- def test_destroy_call(self):
- """
- Tests that a SaltCloudSystemExit is raised when trying to call destroy
- with --function or -f.
- """
- self.assertRaises(
- SaltCloudSystemExit, gce.destroy, vm_name=VM_NAME, call="function"
- )
- def test_fail_virtual_missing_deps(self):
- # Missing deps
- with patch("salt.config.check_driver_dependencies", return_value=False):
- v = gce.__virtual__()
- self.assertEqual(v, False)
- def test_fail_virtual_deps_missing_config(self):
- with patch("salt.config.check_driver_dependencies", return_value=True):
- with patch("salt.config.is_provider_configured", return_value=False):
- v = gce.__virtual__()
- self.assertEqual(v, False)
- def test_import(self):
- """
- Test that the module picks up installed deps
- """
- with patch("salt.config.check_driver_dependencies", return_value=True) as p:
- get_deps = gce.get_dependencies()
- self.assertEqual(get_deps, True)
- if LooseVersion(mock_version) >= LooseVersion("2.0.0"):
- self.assert_called_once(p)
- def test_provider_matches(self):
- """
- Test that the first configured instance of a gce driver is matched
- """
- p = gce.get_configured_provider()
- self.assertNotEqual(p, None)
|