mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
c4f5e231fa
Conflicts: doc/_themes/saltstack2/layout.html doc/conf.py doc/index.rst doc/ref/modules/all/salt.modules.hipchat.rst doc/topics/releases/index.rst salt/client/ssh/client.py salt/cloud/clouds/vsphere.py salt/modules/boto_dynamodb.py salt/modules/boto_route53.py salt/modules/data.py salt/modules/http.py salt/modules/tls.py salt/output/compact.py salt/states/boto_elb.py salt/states/linux_acl.py salt/states/rabbitmq_user.py salt/states/win_servermanager.py salt/utils/dictupdate.py salt/wheel/config.py
49 lines
1.1 KiB
Python
49 lines
1.1 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 import skipIf
|
|
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_active(self):
|
|
'''
|
|
jobs.active
|
|
'''
|
|
ret = self.run_run_plus('jobs.active')
|
|
self.assertEqual(ret['fun'], {})
|
|
self.assertEqual(ret['out'], [])
|
|
|
|
def test_lookup_jid(self):
|
|
'''
|
|
jobs.lookup_jid
|
|
'''
|
|
ret = self.run_run_plus('jobs.lookup_jid', '', '23974239742394')
|
|
self.assertEqual(ret['fun'], {})
|
|
self.assertEqual(ret['out'], [])
|
|
|
|
@skipIf(True, 'to be reenabled when #23623 is merged')
|
|
def test_list_jobs(self):
|
|
'''
|
|
jobs.list_jobs
|
|
'''
|
|
ret = self.run_run_plus('jobs.list_jobs')
|
|
self.assertIsInstance(ret['fun'], dict)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(ManageTest)
|