# -*- coding: utf-8 -*- ''' Tests for the salt-run command ''' # Import Python libs from __future__ import absolute_import, print_function, unicode_literals # Import Salt Testing libs from tests.support.case import ShellCase import logging log = logging.getLogger(__name__) class ManageTest(ShellCase): ''' Test the manage runner ''' def test_cache(self): ''' Store, list, fetch, then flush data ''' # Store the data ret = self.run_run_plus( 'cache.store', bank='cachetest/runner', key='test_cache', data='The time has come the walrus said', ) # Make sure we can see the new key ret = self.run_run_plus('cache.list', bank='cachetest/runner') self.assertIn('test_cache', ret['return']) # Make sure we can see the new data ret = self.run_run_plus('cache.fetch', bank='cachetest/runner', key='test_cache') self.assertIn('The time has come the walrus said', ret['return']) # Make sure we can delete the data ret = self.run_run_plus('cache.flush', bank='cachetest/runner', key='test_cache') ret = self.run_run_plus('cache.list', bank='cachetest/runner') self.assertNotIn('test_cache', ret['return']) def test_cache_invalid(self): ''' Store, list, fetch, then flush data ''' # Store the data ret = self.run_run_plus( 'cache.store', ) # Make sure we can see the new key expected = 'Passed invalid arguments:' self.assertIn(expected, ret['return']) def test_grains(self): ''' Test cache.grains ''' # Store the data ret = self.run_run_plus( 'cache.grains', tgt='minion' ) self.assertIn('minion', ret['return']) def test_pillar(self): ''' Test cache.pillar ''' # Store the data ret = self.run_run_plus( 'cache.pillar', tgt='minion' ) self.assertIn('minion', ret['return']) def test_mine(self): ''' Test cache.mine ''' # Store the data ret = self.run_run_plus( 'cache.mine', tgt='minion' ) self.assertIn('minion', ret['return'])