mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 17:09:03 +00:00
37 lines
992 B
Python
37 lines
992 B
Python
# Import python libs
|
|
import sys
|
|
|
|
# Import salt libs
|
|
from saltunittest import TestLoader, TextTestRunner
|
|
import integration
|
|
from integration import TestDaemon
|
|
|
|
|
|
class SysModuleTest(integration.ModuleCase):
|
|
'''
|
|
Validate the sys module
|
|
'''
|
|
def test_list_functions(self):
|
|
'''
|
|
sys.list_functions
|
|
'''
|
|
funcs = self.run_function('sys.list_functions')
|
|
self.assertTrue('hosts.list_hosts' in funcs)
|
|
self.assertTrue('pkg.install' in funcs)
|
|
|
|
def test_list_modules(self):
|
|
'''
|
|
sys.list_moduels
|
|
'''
|
|
mods = self.run_function('sys.list_modules')
|
|
self.assertTrue('hosts' in mods)
|
|
self.assertTrue('pkg' in mods)
|
|
|
|
if __name__ == "__main__":
|
|
loader = TestLoader()
|
|
tests = loader.loadTestsFromTestCase(SysModuleTest)
|
|
print('Setting up Salt daemons to execute tests')
|
|
with TestDaemon():
|
|
runner = TextTestRunner(verbosity=1).run(tests)
|
|
sys.exit(runner.wasSuccessful())
|