mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
72 lines
1.8 KiB
Python
72 lines
1.8 KiB
Python
# Import python libs
|
|
import sys
|
|
|
|
# Import salt libs
|
|
from saltunittest import TestLoader, TextTestRunner
|
|
import integration
|
|
from integration import TestDaemon
|
|
|
|
|
|
class DataModuleTest(integration.ModuleCase):
|
|
'''
|
|
Validate the data module
|
|
'''
|
|
def _clear_db(self):
|
|
'''
|
|
Clear out the database
|
|
'''
|
|
self.run_function('data.clear')
|
|
|
|
def test_load_dump(self):
|
|
'''
|
|
data.load
|
|
data.dump
|
|
'''
|
|
self._clear_db()
|
|
self.assertTrue(self.run_function('data.dump', ['{"foo": "bar"}']))
|
|
self.assertEqual(self.run_function('data.load'), {'foo': 'bar'})
|
|
self._clear_db()
|
|
|
|
def test_get_update(self):
|
|
'''
|
|
data.getval
|
|
data.update
|
|
data.getvals
|
|
'''
|
|
self._clear_db()
|
|
self.assertTrue(
|
|
self.run_function(
|
|
'data.update',
|
|
['spam', 'eggs']
|
|
)
|
|
)
|
|
self.assertEqual(
|
|
self.run_function(
|
|
'data.getval',
|
|
['spam']
|
|
),
|
|
'eggs'
|
|
)
|
|
self.assertTrue(
|
|
self.run_function(
|
|
'data.update',
|
|
['unladen', 'swallow']
|
|
)
|
|
)
|
|
self.assertEqual(
|
|
self.run_function(
|
|
'data.getvals',
|
|
['spam', 'unladen']
|
|
),
|
|
('eggs', 'swallow')
|
|
)
|
|
self._clear_db()
|
|
|
|
if __name__ == "__main__":
|
|
loader = TestLoader()
|
|
tests = loader.loadTestsFromTestCase(DataModuleTest)
|
|
print('Setting up Salt daemons to execute tests')
|
|
with TestDaemon():
|
|
runner = TextTestRunner(verbosity=1).run(tests)
|
|
sys.exit(runner.wasSuccessful())
|