mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
51 lines
1.3 KiB
Python
51 lines
1.3 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
unit tests for the cache runner
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.mixins import LoaderModuleMockMixin
|
|
from tests.support.paths import TMP
|
|
from tests.support.unit import skipIf, TestCase
|
|
from tests.support.mock import (
|
|
NO_MOCK,
|
|
NO_MOCK_REASON,
|
|
patch
|
|
)
|
|
|
|
# Import Salt Libs
|
|
import salt.runners.cache as cache
|
|
import salt.utils.master
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class CacheTest(TestCase, LoaderModuleMockMixin):
|
|
'''
|
|
Validate the cache runner
|
|
'''
|
|
def setup_loader_modules(self):
|
|
return {cache: {'__opts__': {'cache': 'localfs', 'pki_dir': TMP, 'key_cache': True}}}
|
|
|
|
def test_grains(self):
|
|
'''
|
|
test cache.grains runner
|
|
'''
|
|
mock_minion = ['Larry']
|
|
mock_ret = {}
|
|
self.assertEqual(cache.grains(minion=mock_minion), mock_ret)
|
|
|
|
mock_data = 'grain stuff'
|
|
|
|
class MockMaster(object):
|
|
def __init__(self, *args, **kwargs):
|
|
pass
|
|
|
|
def get_minion_grains(self):
|
|
return mock_data
|
|
|
|
with patch.object(salt.utils.master, 'MasterPillarUtil', MockMaster):
|
|
self.assertEqual(cache.grains(), mock_data)
|