# -*- coding: utf-8 -*- ''' :codeauthor: :email:`Mike Place ` ''' # Import python libraries from __future__ import absolute_import import os import shutil # Import Salt testing libraries from salttesting import TestCase, skipIf from salttesting.mock import NO_MOCK, NO_MOCK_REASON from salt.utils.cache import context_cache # Import Salt libraries import salt.payload import salt.utils __context__ = {'a': 'b'} __opts__ = {'cachedir': '/tmp'} @skipIf(NO_MOCK, NO_MOCK_REASON) class ContextCacheTest(TestCase): ''' Test case for salt.utils.cache.ContextCache ''' def setUp(self): ''' Clear the cache before every test ''' context_dir = os.path.join(__opts__['cachedir'], 'context') if os.path.isdir(context_dir): shutil.rmtree(context_dir) def test_set_cache(self): ''' Tests to ensure the cache is written correctly ''' @context_cache def _test_set_cache(): ''' This will inherit globals from the test module itself. Normally these are injected by the salt loader [salt.loader] ''' pass _test_set_cache() target_cache_file = os.path.join(__opts__['cachedir'], 'context', '{0}.p'.format(__name__)) self.assertTrue(os.path.isfile(target_cache_file), 'Context cache did not write cache file') # Test manual de-serialize with salt.utils.fopen(target_cache_file, 'rb') as fp_: target_cache_data = salt.payload.Serial(__opts__).load(fp_) self.assertDictEqual(__context__, target_cache_data) # Test cache de-serialize cc = salt.utils.cache.ContextCache(__opts__, __name__) retreived_cache = cc.get_cache_context() self.assertDictEqual(retreived_cache, __context__) def test_refill_cache(self): ''' Tests to ensure that the context cache can rehydrate a wrapped function ''' # First populate the cache @context_cache def _test_set_cache(): pass _test_set_cache() # Then try to rehydate a func @context_cache def _test_refill_cache(comparison_context): self.assertEqual(__context__, comparison_context) global __context__ __context__ = {} _test_refill_cache({'a': 'b'}) # Compare to the context before it was emptied