mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
65 lines
1.6 KiB
Python
65 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
tests.unit.utils.disk_cache_test
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
Test the salt disk cache objects
|
|
'''
|
|
|
|
# Import python libs
|
|
from __future__ import absolute_import
|
|
import os.path
|
|
import shutil
|
|
import tempfile
|
|
import time
|
|
|
|
# Import Salt Testing libs
|
|
from salttesting import TestCase
|
|
from salttesting.helpers import ensure_in_syspath
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import salt libs
|
|
from salt.utils import cache
|
|
|
|
|
|
class CacheDiskTestCase(TestCase):
|
|
|
|
def test_everything(self):
|
|
'''
|
|
Make sure you can instantiate, add, update, remove, expire
|
|
'''
|
|
try:
|
|
tmpdir = tempfile.mkdtemp()
|
|
path = os.path.join(tmpdir, 'CacheDisk_test')
|
|
|
|
# test instantiation
|
|
cd = cache.CacheDisk(0.1, path)
|
|
self.assertIsInstance(cd, cache.CacheDisk)
|
|
|
|
# test to make sure it looks like a dict
|
|
self.assertNotIn('foo', cd)
|
|
cd['foo'] = 'bar'
|
|
self.assertIn('foo', cd)
|
|
self.assertEqual(cd['foo'], 'bar')
|
|
del cd['foo']
|
|
self.assertNotIn('foo', cd)
|
|
|
|
# test persistence
|
|
cd['foo'] = 'bar'
|
|
cd2 = cache.CacheDisk(0.1, path)
|
|
self.assertIn('foo', cd2)
|
|
self.assertEqual(cd2['foo'], 'bar')
|
|
|
|
# test ttl
|
|
time.sleep(0.2)
|
|
self.assertNotIn('foo', cd)
|
|
self.assertNotIn('foo', cd2)
|
|
|
|
finally:
|
|
shutil.rmtree(tmpdir, ignore_errors=True)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(CacheDiskTestCase, needs_daemon=False)
|