mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
35 lines
937 B
Python
35 lines
937 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
Tests for the salt-run command
|
|
'''
|
|
# Import Python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing libs
|
|
from tests.support.case import ShellCase
|
|
|
|
|
|
class ManageTest(ShellCase):
|
|
'''
|
|
Test the manage runner
|
|
'''
|
|
def test_up(self):
|
|
'''
|
|
manage.up
|
|
'''
|
|
ret = self.run_run_plus('manage.up')
|
|
self.assertIn('minion', ret['return'])
|
|
self.assertIn('sub_minion', ret['return'])
|
|
self.assertTrue(any('- minion' in out for out in ret['out']))
|
|
self.assertTrue(any('- sub_minion' in out for out in ret['out']))
|
|
|
|
def test_down(self):
|
|
'''
|
|
manage.down
|
|
'''
|
|
ret = self.run_run_plus('manage.down')
|
|
self.assertNotIn('minion', ret['return'])
|
|
self.assertNotIn('sub_minion', ret['return'])
|
|
self.assertNotIn('minion', ret['out'])
|
|
self.assertNotIn('sub_minion', ret['out'])
|