salt/tests/integration/runners/jobs.py

48 lines
1.0 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2012-05-28 03:24:45 +00:00
'''
Tests for the salt-run command
'''
# Import python libs
import sys
# Import Salt Testing libs
from salttesting.helpers import ensure_in_syspath
ensure_in_syspath('../../')
# Import salt libs
import integration
2012-05-28 03:24:45 +00:00
class ManageTest(integration.ShellCase):
'''
Test the manage runner
'''
def test_active(self):
'''
jobs.active
'''
ret = self.run_run_plus('jobs.active')
2012-11-04 10:22:18 +00:00
self.assertEqual(ret['fun'], {})
self.assertEqual(ret['out'], ['{}'])
2012-05-28 03:24:45 +00:00
def test_lookup_jid(self):
'''
jobs.lookup_jid
'''
ret = self.run_run_plus('jobs.lookup_jid', '', '23974239742394')
2012-11-04 10:22:18 +00:00
self.assertEqual(ret['fun'], {})
self.assertEqual(ret['out'], [])
2012-05-28 03:24:45 +00:00
2012-05-28 03:34:48 +00:00
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)