mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
29 lines
850 B
Python
29 lines
850 B
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
Tests for various minion timeouts
|
|
'''
|
|
|
|
# Import Python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing libs
|
|
from tests.support.case import ShellCase
|
|
|
|
|
|
class MinionTimeoutTestCase(ShellCase):
|
|
'''
|
|
Test minion timing functions
|
|
'''
|
|
def test_long_running_job(self):
|
|
'''
|
|
Test that we will wait longer than the job timeout for a minion to
|
|
return.
|
|
'''
|
|
# Launch the command
|
|
sleep_length = 30
|
|
ret = self.run_salt('minion test.sleep {0}'.format(sleep_length), timeout=45)
|
|
self.assertTrue(isinstance(ret, list), 'Return is not a list. Minion'
|
|
' may have returned error: {0}'.format(ret))
|
|
self.assertTrue('True' in ret[1], 'Minion did not return True after '
|
|
'{0} seconds.'.format(sleep_length))
|