mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
44 lines
1.0 KiB
Python
44 lines
1.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
Tests for the salt-run command
|
|
'''
|
|
# Import Python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing libs
|
|
from salttesting.helpers import ensure_in_syspath
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import salt libs
|
|
import integration
|
|
|
|
|
|
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)
|