salt/tests/integration/runners/manage.py

41 lines
993 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2012-05-28 03:02:29 +00:00
'''
Tests for the salt-run command
'''
# Import Salt Testing libs
from salttesting.helpers import ensure_in_syspath
ensure_in_syspath('../../')
2012-05-28 03:02:29 +00:00
# Import salt libs
import integration
2012-05-28 03:02:29 +00:00
class ManageTest(integration.ShellCase):
'''
Test the manage runner
'''
def test_up(self):
'''
manage.up
'''
ret = self.run_run_plus('manage.up')
self.assertIn('minion', ret['fun'])
self.assertIn('sub_minion', ret['fun'])
self.assertIn('minion', ret['out'])
self.assertIn('sub_minion', ret['out'])
def test_down(self):
'''
manage.down
'''
ret = self.run_run_plus('manage.down')
self.assertNotIn('minion', ret['fun'])
self.assertNotIn('sub_minion', ret['fun'])
self.assertNotIn('minion', ret['out'])
self.assertNotIn('sub_minion', ret['out'])
if __name__ == '__main__':
from integration import run_tests
run_tests(ManageTest)