123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331 |
- # -*- coding: utf-8 -*-
- """
- Tests for the Azure Blob External Pillar.
- """
- # Import python libs
- from __future__ import absolute_import, print_function, unicode_literals
- import os
- import pickle
- import tempfile
- import time
- import salt.config
- import salt.loader
- # Import Salt Libs
- import salt.pillar.azureblob as azureblob
- import salt.utils.files
- from tests.support.mixins import LoaderModuleMockMixin
- from tests.support.mock import MagicMock, patch
- # Import Salt Testing libs
- from tests.support.unit import TestCase, skipIf
- # Import Azure libs
- HAS_LIBS = False
- try:
- # pylint: disable=no-name-in-module
- from azure.storage.blob import BlobServiceClient
- # pylint: enable=no-name-in-module
- HAS_LIBS = True
- except ImportError:
- pass
- class MockBlob(dict):
- """
- Creates a Mock Blob object.
- """
- name = ""
- def __init__(self):
- super(MockBlob, self).__init__(
- {
- "container": None,
- "name": "test.sls",
- "prefix": None,
- "delimiter": "/",
- "results_per_page": None,
- "location_mode": None,
- }
- )
- class MockContainerClient(object):
- """
- Creates a Mock ContainerClient.
- """
- def __init__(self):
- pass
- def walk_blobs(self, *args, **kwargs):
- yield MockBlob()
- def get_blob_client(self, *args, **kwargs):
- pass
- class MockBlobServiceClient(object):
- """
- Creates a Mock BlobServiceClient.
- """
- def __init__(self):
- pass
- def get_container_client(self, *args, **kwargs):
- container_client = MockContainerClient()
- return container_client
- @skipIf(HAS_LIBS is False, "The azure.storage.blob module must be installed.")
- class AzureBlobTestCase(TestCase, LoaderModuleMockMixin):
- """
- TestCase for salt.pillar.azureblob ext_pillar.
- """
- def setup_loader_modules(self):
- self.opts = salt.config.DEFAULT_MASTER_OPTS.copy()
- utils = salt.loader.utils(self.opts)
- return {
- azureblob: {"__opts__": self.opts, "__utils__": utils},
- }
- def test__init_expired(self):
- """
- Tests the result of _init when the cache is expired.
- """
- container = "test"
- multiple_env = False
- environment = "base"
- blob_cache_expire = 0 # The cache will be expired
- blob_client = MockBlobServiceClient()
- cache_file = tempfile.NamedTemporaryFile()
- # Patches the _get_containers_cache_filename module so that it returns the name of the new tempfile that
- # represents the cache file
- with patch.object(
- azureblob,
- "_get_containers_cache_filename",
- MagicMock(return_value=str(cache_file.name)),
- ):
- # Patches the from_connection_string module of the BlobServiceClient class so that a connection string does
- # not need to be given. Additionally it returns example blob data used by the ext_pillar.
- with patch.object(
- BlobServiceClient,
- "from_connection_string",
- MagicMock(return_value=blob_client),
- ):
- ret = azureblob._init(
- "", container, multiple_env, environment, blob_cache_expire
- )
- cache_file.close()
- self.assertEqual(
- ret,
- {
- "base": {
- "test": [
- {
- "container": None,
- "name": "test.sls",
- "prefix": None,
- "delimiter": "/",
- "results_per_page": None,
- "location_mode": None,
- }
- ]
- }
- },
- )
- def test__init_not_expired(self):
- """
- Tests the result of _init when the cache is not expired.
- """
- container = "test"
- multiple_env = False
- environment = "base"
- blob_cache_expire = (time.time()) * (
- time.time()
- ) # The cache will not be expired
- metadata = {
- "base": {
- "test": [
- {"name": "base/secret.sls", "relevant": "include.sls"},
- {"name": "blobtest.sls", "irrelevant": "ignore.sls"},
- ]
- }
- }
- cache_file = tempfile.NamedTemporaryFile()
- # Pickles the metadata and stores it in cache_file
- with salt.utils.files.fopen(str(cache_file), "wb") as fp_:
- pickle.dump(metadata, fp_)
- # Patches the _get_containers_cache_filename module so that it returns the name of the new tempfile that
- # represents the cache file
- with patch.object(
- azureblob,
- "_get_containers_cache_filename",
- MagicMock(return_value=str(cache_file.name)),
- ):
- # Patches the _read_containers_cache_file module so that it returns what it normally would if the new
- # tempfile representing the cache file was passed to it
- plugged = azureblob._read_containers_cache_file(str(cache_file))
- with patch.object(
- azureblob,
- "_read_containers_cache_file",
- MagicMock(return_value=plugged),
- ):
- ret = azureblob._init(
- "", container, multiple_env, environment, blob_cache_expire
- )
- fp_.close()
- os.remove(str(fp_.name))
- cache_file.close()
- self.assertEqual(ret, metadata)
- def test__get_cache_dir(self):
- """
- Tests the result of _get_cache_dir.
- """
- ret = azureblob._get_cache_dir()
- self.assertEqual(ret, "/var/cache/salt/master/pillar_azureblob")
- def test__get_cached_file_name(self):
- """
- Tests the result of _get_cached_file_name.
- """
- container = "test"
- saltenv = "base"
- path = "base/secret.sls"
- ret = azureblob._get_cached_file_name(container, saltenv, path)
- self.assertEqual(
- ret, "/var/cache/salt/master/pillar_azureblob/base/test/base/secret.sls"
- )
- def test__get_containers_cache_filename(self):
- """
- Tests the result of _get_containers_cache_filename.
- """
- container = "test"
- ret = azureblob._get_containers_cache_filename(container)
- self.assertEqual(
- ret, "/var/cache/salt/master/pillar_azureblob/test-files.cache"
- )
- def test__refresh_containers_cache_file(self):
- """
- Tests the result of _refresh_containers_cache_file to ensure that it successfully copies blob data into a
- cache file.
- """
- blob_client = MockBlobServiceClient()
- container = "test"
- cache_file = tempfile.NamedTemporaryFile()
- with patch.object(
- BlobServiceClient,
- "from_connection_string",
- MagicMock(return_value=blob_client),
- ):
- ret = azureblob._refresh_containers_cache_file(
- "", container, cache_file.name
- )
- cache_file.close()
- self.assertEqual(
- ret,
- {
- "base": {
- "test": [
- {
- "container": None,
- "name": "test.sls",
- "prefix": None,
- "delimiter": "/",
- "results_per_page": None,
- "location_mode": None,
- }
- ]
- }
- },
- )
- def test__read_containers_cache_file(self):
- """
- Tests the result of _read_containers_cache_file to make sure that it successfully loads in pickled metadata.
- """
- metadata = {
- "base": {
- "test": [
- {"name": "base/secret.sls", "relevant": "include.sls"},
- {"name": "blobtest.sls", "irrelevant": "ignore.sls"},
- ]
- }
- }
- cache_file = tempfile.NamedTemporaryFile()
- # Pickles the metadata and stores it in cache_file
- with salt.utils.files.fopen(str(cache_file), "wb") as fp_:
- pickle.dump(metadata, fp_)
- # Checks to see if _read_containers_cache_file can successfully read the pickled metadata from the cache file
- ret = azureblob._read_containers_cache_file(str(cache_file))
- fp_.close()
- os.remove(str(fp_.name))
- cache_file.close()
- self.assertEqual(ret, metadata)
- def test__find_files(self):
- """
- Tests the result of _find_files. Ensures it only finds files and not directories. Ensures it also ignore
- irrelevant files.
- """
- metadata = {
- "test": [
- {"name": "base/secret.sls"},
- {"name": "blobtest.sls", "irrelevant": "ignore.sls"},
- {"name": "base/"},
- ]
- }
- ret = azureblob._find_files(metadata)
- self.assertEqual(ret, {"test": ["base/secret.sls", "blobtest.sls"]})
- def test__find_file_meta1(self):
- """
- Tests the result of _find_file_meta when the metadata contains a blob with the specified path and a blob
- without the specified path.
- """
- metadata = {
- "base": {
- "test": [
- {"name": "base/secret.sls", "relevant": "include.sls"},
- {"name": "blobtest.sls", "irrelevant": "ignore.sls"},
- ]
- }
- }
- container = "test"
- saltenv = "base"
- path = "base/secret.sls"
- ret = azureblob._find_file_meta(metadata, container, saltenv, path)
- self.assertEqual(ret, {"name": "base/secret.sls", "relevant": "include.sls"})
- def test__find_file_meta2(self):
- """
- Tests the result of _find_file_meta when the saltenv in metadata does not match the specified saltenv.
- """
- metadata = {"wrong": {"test": [{"name": "base/secret.sls"}]}}
- container = "test"
- saltenv = "base"
- path = "base/secret.sls"
- ret = azureblob._find_file_meta(metadata, container, saltenv, path)
- self.assertEqual(ret, None)
- def test__find_file_meta3(self):
- """
- Tests the result of _find_file_meta when the container in metadata does not match the specified metadata.
- """
- metadata = {"base": {"wrong": [{"name": "base/secret.sls"}]}}
- container = "test"
- saltenv = "base"
- path = "base/secret.sls"
- ret = azureblob._find_file_meta(metadata, container, saltenv, path)
- self.assertEqual(ret, None)
|