Add tests for overstate requisites

This commit is contained in:
Thomas S Hatch 2013-06-10 18:42:20 -06:00
parent e228768961
commit 9752b21343

View File

@ -0,0 +1,33 @@
'''
Tests for the salt-run command
'''
# Import python libs
import sys
import os
# Import Salt Modules
from saltunittest import TestLoader, TextTestRunner
import integration
from integration import TestDaemon
class ManageTest(integration.ShellCase):
'''
Test the manage runner
'''
def test_over(self):
'''
state.over
'''
os_fn = os.path.join(integration.FILES, 'over/req_fail.sls')
ret = '\n'.join(self.run_run('state.over os_fn={0}'.format(os_fn)))
self.assertIn('Requisite fail_stage failed for stage', ret)
if __name__ == "__main__":
loader = TestLoader()
tests = loader.loadTestsFromTestCase(ManageTest)
print('Setting up Salt daemons to execute tests')
with TestDaemon():
runner = TextTestRunner(verbosity=1).run(tests)
sys.exit(runner.wasSuccessful())