2013-11-27 11:19:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2012-09-17 19:34:50 +00:00
|
|
|
'''
|
|
|
|
Tests for the supervisord state
|
|
|
|
'''
|
2013-06-25 08:18:18 +00:00
|
|
|
|
|
|
|
# Import python lins
|
2018-01-24 20:47:14 +00:00
|
|
|
from __future__ import absolute_import, unicode_literals, print_function
|
2012-09-25 21:32:42 +00:00
|
|
|
import os
|
2013-05-29 10:39:09 +00:00
|
|
|
import time
|
2013-06-25 08:18:18 +00:00
|
|
|
import subprocess
|
2013-05-28 23:18:12 +00:00
|
|
|
|
2013-06-27 12:52:42 +00:00
|
|
|
# Import Salt Testing libs
|
2017-04-03 16:04:09 +00:00
|
|
|
from tests.support.case import ModuleCase
|
2017-02-27 13:58:07 +00:00
|
|
|
from tests.support.unit import skipIf
|
2017-04-03 16:04:09 +00:00
|
|
|
from tests.support.paths import TMP
|
2017-04-02 16:09:47 +00:00
|
|
|
from tests.support.mixins import SaltReturnAssertsMixin
|
2012-09-17 19:34:50 +00:00
|
|
|
|
2013-06-25 08:18:18 +00:00
|
|
|
# Import salt libs
|
Use explicit unicode strings + break up salt.utils
This PR is part of what will be an ongoing effort to use explicit
unicode strings in Salt. Because Python 3 does not suport Python 2's raw
unicode string syntax (i.e. `ur'\d+'`), we must use
`salt.utils.locales.sdecode()` to ensure that the raw string is unicode.
However, because of how `salt/utils/__init__.py` has evolved into the
hulking monstrosity it is today, this means importing a large module in
places where it is not needed, which could negatively impact
performance. For this reason, this PR also breaks out some of the
functions from `salt/utils/__init__.py` into new/existing modules under
`salt/utils/`. The long term goal will be that the modules within this
directory do not depend on importing `salt.utils`.
A summary of the changes in this PR is as follows:
* Moves the following functions from `salt.utils` to new locations
(including a deprecation warning if invoked from `salt.utils`):
`to_bytes`, `to_str`, `to_unicode`, `str_to_num`, `is_quoted`,
`dequote`, `is_hex`, `is_bin_str`, `rand_string`,
`contains_whitespace`, `clean_kwargs`, `invalid_kwargs`, `which`,
`which_bin`, `path_join`, `shlex_split`, `rand_str`, `is_windows`,
`is_proxy`, `is_linux`, `is_darwin`, `is_sunos`, `is_smartos`,
`is_smartos_globalzone`, `is_smartos_zone`, `is_freebsd`, `is_netbsd`,
`is_openbsd`, `is_aix`
* Moves the functions already deprecated by @rallytime to the bottom of
`salt/utils/__init__.py` for better organization, so we can keep the
deprecated ones separate from the ones yet to be deprecated as we
continue to break up `salt.utils`
* Updates `salt/*.py` and all files under `salt/client/` to use explicit
unicode string literals.
* Gets rid of implicit imports of `salt.utils` (e.g. `from salt.utils
import foo` becomes `import salt.utils.foo as foo`).
* Renames the `test.rand_str` function to `test.random_hash` to more
accurately reflect what it does
* Modifies `salt.utils.stringutils.random()` (née `salt.utils.rand_string()`)
such that it returns a string matching the passed size. Previously
this function would get `size` bytes from `os.urandom()`,
base64-encode it, and return the result, which would in most cases not
be equal to the passed size.
2017-07-25 01:47:15 +00:00
|
|
|
import salt.utils.path
|
2014-01-11 19:19:29 +00:00
|
|
|
from salt.modules.virtualenv_mod import KNOWN_BINARY_NAMES
|
2013-06-25 08:18:18 +00:00
|
|
|
|
2017-03-06 18:28:53 +00:00
|
|
|
# Import 3rd-party libs
|
Use explicit unicode strings + break up salt.utils
This PR is part of what will be an ongoing effort to use explicit
unicode strings in Salt. Because Python 3 does not suport Python 2's raw
unicode string syntax (i.e. `ur'\d+'`), we must use
`salt.utils.locales.sdecode()` to ensure that the raw string is unicode.
However, because of how `salt/utils/__init__.py` has evolved into the
hulking monstrosity it is today, this means importing a large module in
places where it is not needed, which could negatively impact
performance. For this reason, this PR also breaks out some of the
functions from `salt/utils/__init__.py` into new/existing modules under
`salt/utils/`. The long term goal will be that the modules within this
directory do not depend on importing `salt.utils`.
A summary of the changes in this PR is as follows:
* Moves the following functions from `salt.utils` to new locations
(including a deprecation warning if invoked from `salt.utils`):
`to_bytes`, `to_str`, `to_unicode`, `str_to_num`, `is_quoted`,
`dequote`, `is_hex`, `is_bin_str`, `rand_string`,
`contains_whitespace`, `clean_kwargs`, `invalid_kwargs`, `which`,
`which_bin`, `path_join`, `shlex_split`, `rand_str`, `is_windows`,
`is_proxy`, `is_linux`, `is_darwin`, `is_sunos`, `is_smartos`,
`is_smartos_globalzone`, `is_smartos_zone`, `is_freebsd`, `is_netbsd`,
`is_openbsd`, `is_aix`
* Moves the functions already deprecated by @rallytime to the bottom of
`salt/utils/__init__.py` for better organization, so we can keep the
deprecated ones separate from the ones yet to be deprecated as we
continue to break up `salt.utils`
* Updates `salt/*.py` and all files under `salt/client/` to use explicit
unicode string literals.
* Gets rid of implicit imports of `salt.utils` (e.g. `from salt.utils
import foo` becomes `import salt.utils.foo as foo`).
* Renames the `test.rand_str` function to `test.random_hash` to more
accurately reflect what it does
* Modifies `salt.utils.stringutils.random()` (née `salt.utils.rand_string()`)
such that it returns a string matching the passed size. Previously
this function would get `size` bytes from `os.urandom()`,
base64-encode it, and return the result, which would in most cases not
be equal to the passed size.
2017-07-25 01:47:15 +00:00
|
|
|
from salt.ext import six
|
2012-09-17 19:34:50 +00:00
|
|
|
|
2017-03-06 18:28:53 +00:00
|
|
|
|
|
|
|
@skipIf(six.PY3, 'supervisor does not work under python 3')
|
Use explicit unicode strings + break up salt.utils
This PR is part of what will be an ongoing effort to use explicit
unicode strings in Salt. Because Python 3 does not suport Python 2's raw
unicode string syntax (i.e. `ur'\d+'`), we must use
`salt.utils.locales.sdecode()` to ensure that the raw string is unicode.
However, because of how `salt/utils/__init__.py` has evolved into the
hulking monstrosity it is today, this means importing a large module in
places where it is not needed, which could negatively impact
performance. For this reason, this PR also breaks out some of the
functions from `salt/utils/__init__.py` into new/existing modules under
`salt/utils/`. The long term goal will be that the modules within this
directory do not depend on importing `salt.utils`.
A summary of the changes in this PR is as follows:
* Moves the following functions from `salt.utils` to new locations
(including a deprecation warning if invoked from `salt.utils`):
`to_bytes`, `to_str`, `to_unicode`, `str_to_num`, `is_quoted`,
`dequote`, `is_hex`, `is_bin_str`, `rand_string`,
`contains_whitespace`, `clean_kwargs`, `invalid_kwargs`, `which`,
`which_bin`, `path_join`, `shlex_split`, `rand_str`, `is_windows`,
`is_proxy`, `is_linux`, `is_darwin`, `is_sunos`, `is_smartos`,
`is_smartos_globalzone`, `is_smartos_zone`, `is_freebsd`, `is_netbsd`,
`is_openbsd`, `is_aix`
* Moves the functions already deprecated by @rallytime to the bottom of
`salt/utils/__init__.py` for better organization, so we can keep the
deprecated ones separate from the ones yet to be deprecated as we
continue to break up `salt.utils`
* Updates `salt/*.py` and all files under `salt/client/` to use explicit
unicode string literals.
* Gets rid of implicit imports of `salt.utils` (e.g. `from salt.utils
import foo` becomes `import salt.utils.foo as foo`).
* Renames the `test.rand_str` function to `test.random_hash` to more
accurately reflect what it does
* Modifies `salt.utils.stringutils.random()` (née `salt.utils.rand_string()`)
such that it returns a string matching the passed size. Previously
this function would get `size` bytes from `os.urandom()`,
base64-encode it, and return the result, which would in most cases not
be equal to the passed size.
2017-07-25 01:47:15 +00:00
|
|
|
@skipIf(salt.utils.path.which_bin(KNOWN_BINARY_NAMES) is None, 'virtualenv not installed')
|
|
|
|
@skipIf(salt.utils.path.which('supervisorctl') is None, 'supervisord not installed')
|
2017-04-03 16:04:09 +00:00
|
|
|
class SupervisordTest(ModuleCase, SaltReturnAssertsMixin):
|
2012-09-17 19:34:50 +00:00
|
|
|
'''
|
|
|
|
Validate the supervisord states.
|
|
|
|
'''
|
2012-09-25 21:32:42 +00:00
|
|
|
def setUp(self):
|
|
|
|
super(SupervisordTest, self).setUp()
|
2013-05-29 11:54:57 +00:00
|
|
|
|
2017-04-03 16:04:09 +00:00
|
|
|
self.venv_test_dir = os.path.join(TMP, 'supervisortests')
|
2013-05-28 23:18:12 +00:00
|
|
|
self.venv_dir = os.path.join(self.venv_test_dir, 'venv')
|
2013-05-29 10:39:09 +00:00
|
|
|
self.supervisor_sock = os.path.join(self.venv_dir, 'supervisor.sock')
|
2013-05-28 23:18:12 +00:00
|
|
|
|
2013-05-29 11:54:57 +00:00
|
|
|
if not os.path.exists(self.venv_dir):
|
|
|
|
os.makedirs(self.venv_test_dir)
|
|
|
|
self.run_function('virtualenv.create', [self.venv_dir])
|
2013-06-25 08:18:18 +00:00
|
|
|
self.run_function(
|
|
|
|
'pip.install', [], pkgs='supervisor', bin_env=self.venv_dir)
|
2013-05-28 23:18:12 +00:00
|
|
|
|
|
|
|
self.supervisord = os.path.join(self.venv_dir, 'bin', 'supervisord')
|
|
|
|
if not os.path.exists(self.supervisord):
|
|
|
|
self.skipTest('Failed to installe supervisor in test virtualenv')
|
|
|
|
|
|
|
|
self.supervisor_conf = os.path.join(self.venv_dir, 'supervisor.conf')
|
|
|
|
|
|
|
|
def start_supervisord(self, autostart=True):
|
2013-06-25 08:18:18 +00:00
|
|
|
self.run_state(
|
|
|
|
'file.managed', name=self.supervisor_conf,
|
|
|
|
source='salt://supervisor.conf', template='jinja',
|
2013-05-28 23:18:12 +00:00
|
|
|
context={
|
2013-06-25 08:18:18 +00:00
|
|
|
'supervisor_sock': self.supervisor_sock,
|
2013-05-28 23:18:12 +00:00
|
|
|
'virtual_env': self.venv_dir,
|
|
|
|
'autostart': autostart
|
|
|
|
}
|
|
|
|
)
|
|
|
|
if not os.path.exists(self.supervisor_conf):
|
|
|
|
self.skipTest('failed to create supervisor config file')
|
2013-06-25 08:18:18 +00:00
|
|
|
self.supervisor_proc = subprocess.Popen(
|
|
|
|
[self.supervisord, '-c', self.supervisor_conf]
|
|
|
|
)
|
2013-05-28 23:18:12 +00:00
|
|
|
if self.supervisor_proc.poll() is not None:
|
|
|
|
self.skipTest('failed to start supervisord')
|
2013-05-29 10:39:09 +00:00
|
|
|
timeout = 10
|
|
|
|
while not os.path.exists(self.supervisor_sock):
|
|
|
|
if timeout == 0:
|
2013-06-25 08:18:18 +00:00
|
|
|
self.skipTest(
|
|
|
|
'supervisor socket not found - failed to start supervisord'
|
|
|
|
)
|
2013-05-29 10:39:09 +00:00
|
|
|
break
|
|
|
|
else:
|
|
|
|
time.sleep(1)
|
|
|
|
timeout -= 1
|
2013-05-28 23:18:12 +00:00
|
|
|
|
|
|
|
def tearDown(self):
|
2013-06-25 08:18:18 +00:00
|
|
|
if hasattr(self, 'supervisor_proc') and \
|
|
|
|
self.supervisor_proc.poll() is not None:
|
|
|
|
self.run_function(
|
|
|
|
'supervisord.custom', ['shutdown'],
|
|
|
|
conf_file=self.supervisor_conf, bin_env=self.venv_dir)
|
2013-05-28 23:18:12 +00:00
|
|
|
self.supervisor_proc.wait()
|
2017-03-06 16:45:59 +00:00
|
|
|
del self.supervisor_proc
|
|
|
|
del self.venv_test_dir
|
|
|
|
del self.venv_dir
|
|
|
|
del self.supervisord
|
|
|
|
del self.supervisor_conf
|
|
|
|
del self.supervisor_sock
|
2013-05-28 23:18:12 +00:00
|
|
|
|
|
|
|
def test_running_stopped(self):
|
|
|
|
'''
|
|
|
|
supervisord.running restart = False
|
|
|
|
When service is stopped.
|
|
|
|
'''
|
|
|
|
self.start_supervisord(autostart=False)
|
|
|
|
ret = self.run_state(
|
|
|
|
'supervisord.running', name='sleep_service',
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
|
|
|
)
|
|
|
|
self.assertSaltTrueReturn(ret)
|
2013-08-18 05:01:38 +00:00
|
|
|
self.assertInSaltReturn('sleep_service', ret, ['changes'])
|
2013-05-28 23:18:12 +00:00
|
|
|
|
|
|
|
def test_running_started(self):
|
|
|
|
'''
|
|
|
|
supervisord.running restart = False
|
|
|
|
When service is running.
|
|
|
|
'''
|
|
|
|
self.start_supervisord(autostart=True)
|
|
|
|
ret = self.run_state(
|
|
|
|
'supervisord.running', name='sleep_service',
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
|
|
|
)
|
|
|
|
self.assertSaltTrueReturn(ret)
|
2013-08-18 04:58:42 +00:00
|
|
|
self.assertNotInSaltReturn('sleep_service', ret, ['changes'])
|
2013-05-28 23:18:12 +00:00
|
|
|
|
|
|
|
def test_running_needsupdate(self):
|
|
|
|
'''
|
|
|
|
supervisord.running restart = False
|
|
|
|
When service needs to be added.
|
|
|
|
'''
|
|
|
|
self.start_supervisord(autostart=False)
|
|
|
|
self.run_function('supervisord.remove', [
|
|
|
|
'sleep_service',
|
|
|
|
None,
|
|
|
|
self.supervisor_conf,
|
|
|
|
self.venv_dir
|
|
|
|
])
|
|
|
|
ret = self.run_state(
|
|
|
|
'supervisord.running', name='sleep_service',
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
|
|
|
)
|
|
|
|
self.assertSaltTrueReturn(ret)
|
2013-08-18 05:01:38 +00:00
|
|
|
self.assertInSaltReturn('sleep_service', ret, ['changes'])
|
2012-09-25 21:32:42 +00:00
|
|
|
|
2013-05-28 23:18:12 +00:00
|
|
|
def test_running_notexists(self):
|
2012-09-17 19:34:50 +00:00
|
|
|
'''
|
|
|
|
supervisord.running restart = False
|
2013-05-28 23:18:12 +00:00
|
|
|
When service doesn't exist.
|
2012-09-17 19:34:50 +00:00
|
|
|
'''
|
2013-05-28 23:18:12 +00:00
|
|
|
self.start_supervisord(autostart=True)
|
2012-10-19 15:28:38 +00:00
|
|
|
ret = self.run_state(
|
2013-05-28 23:18:12 +00:00
|
|
|
'supervisord.running', name='does_not_exist',
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
2012-12-07 17:03:24 +00:00
|
|
|
)
|
|
|
|
self.assertSaltFalseReturn(ret)
|
2012-09-17 19:34:50 +00:00
|
|
|
|
2013-05-28 23:18:12 +00:00
|
|
|
def test_restart_started(self):
|
|
|
|
'''
|
|
|
|
supervisord.running restart = True
|
|
|
|
When service is running.
|
|
|
|
'''
|
|
|
|
self.start_supervisord(autostart=True)
|
|
|
|
ret = self.run_state(
|
|
|
|
'supervisord.running', name='sleep_service',
|
|
|
|
restart=True,
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
|
|
|
)
|
|
|
|
self.assertSaltTrueReturn(ret)
|
2013-08-18 05:01:38 +00:00
|
|
|
self.assertInSaltReturn('sleep_service', ret, ['changes'])
|
2013-05-28 23:18:12 +00:00
|
|
|
|
|
|
|
def test_restart_stopped(self):
|
2012-09-17 19:34:50 +00:00
|
|
|
'''
|
|
|
|
supervisord.running restart = True
|
2013-05-28 23:18:12 +00:00
|
|
|
When service is stopped.
|
2012-09-17 19:34:50 +00:00
|
|
|
'''
|
2013-05-28 23:18:12 +00:00
|
|
|
self.start_supervisord(autostart=False)
|
2012-09-17 19:34:50 +00:00
|
|
|
ret = self.run_state(
|
2013-05-28 23:18:12 +00:00
|
|
|
'supervisord.running', name='sleep_service',
|
|
|
|
restart=True,
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
|
|
|
)
|
|
|
|
self.assertSaltTrueReturn(ret)
|
2013-08-18 05:01:38 +00:00
|
|
|
self.assertInSaltReturn('sleep_service', ret, ['changes'])
|
2013-05-28 23:18:12 +00:00
|
|
|
|
|
|
|
def test_restart_needsupdate(self):
|
|
|
|
'''
|
|
|
|
supervisord.running restart = True
|
|
|
|
When service needs to be added.
|
|
|
|
'''
|
|
|
|
self.start_supervisord(autostart=False)
|
|
|
|
self.run_function('supervisord.remove', [
|
|
|
|
'sleep_service',
|
|
|
|
None,
|
|
|
|
self.supervisor_conf,
|
|
|
|
self.venv_dir
|
|
|
|
])
|
|
|
|
ret = self.run_state(
|
|
|
|
'supervisord.running', name='sleep_service',
|
|
|
|
restart=True,
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
|
|
|
)
|
|
|
|
self.assertSaltTrueReturn(ret)
|
2013-08-18 05:01:38 +00:00
|
|
|
self.assertInSaltReturn('sleep_service', ret, ['changes'])
|
2013-05-28 23:18:12 +00:00
|
|
|
|
|
|
|
def test_restart_notexists(self):
|
|
|
|
'''
|
|
|
|
supervisord.running restart = True
|
|
|
|
When service does not exist.
|
|
|
|
'''
|
|
|
|
self.start_supervisord(autostart=True)
|
|
|
|
ret = self.run_state(
|
|
|
|
'supervisord.running', name='does_not_exist',
|
|
|
|
restart=True,
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
2012-12-07 17:03:24 +00:00
|
|
|
)
|
|
|
|
self.assertSaltFalseReturn(ret)
|
2013-08-18 04:58:42 +00:00
|
|
|
self.assertNotInSaltReturn('sleep_service', ret, ['changes'])
|
2012-09-24 08:45:31 +00:00
|
|
|
|
2013-05-28 23:18:12 +00:00
|
|
|
def test_dead_started(self):
|
2012-09-24 08:45:31 +00:00
|
|
|
'''
|
|
|
|
supervisord.dead
|
2013-05-28 23:18:12 +00:00
|
|
|
When service is running.
|
2012-09-24 08:45:31 +00:00
|
|
|
'''
|
2013-05-28 23:18:12 +00:00
|
|
|
self.start_supervisord(autostart=True)
|
2012-09-24 08:45:31 +00:00
|
|
|
ret = self.run_state(
|
2013-05-28 23:18:12 +00:00
|
|
|
'supervisord.dead', name='sleep_service',
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
2012-12-07 17:03:24 +00:00
|
|
|
)
|
2013-05-28 23:18:12 +00:00
|
|
|
self.assertSaltTrueReturn(ret)
|
|
|
|
|
|
|
|
def test_dead_stopped(self):
|
|
|
|
'''
|
|
|
|
supervisord.dead
|
|
|
|
When service is stopped.
|
|
|
|
'''
|
|
|
|
self.start_supervisord(autostart=False)
|
|
|
|
ret = self.run_state(
|
|
|
|
'supervisord.dead', name='sleep_service',
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
|
|
|
)
|
|
|
|
self.assertSaltTrueReturn(ret)
|
|
|
|
|
|
|
|
def test_dead_removed(self):
|
|
|
|
'''
|
|
|
|
supervisord.dead
|
|
|
|
When service needs to be added.
|
|
|
|
'''
|
|
|
|
self.start_supervisord(autostart=False)
|
|
|
|
self.run_function('supervisord.remove', [
|
|
|
|
'sleep_service',
|
|
|
|
None,
|
|
|
|
self.supervisor_conf,
|
|
|
|
self.venv_dir
|
|
|
|
])
|
|
|
|
ret = self.run_state(
|
|
|
|
'supervisord.dead', name='sleep_service',
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
|
|
|
)
|
|
|
|
self.assertSaltTrueReturn(ret)
|
|
|
|
|
|
|
|
def test_dead_notexists(self):
|
|
|
|
'''
|
|
|
|
supervisord.dead
|
|
|
|
When service does not exist.
|
|
|
|
'''
|
|
|
|
self.start_supervisord(autostart=True)
|
|
|
|
ret = self.run_state(
|
|
|
|
'supervisord.dead', name='does_not_exist',
|
|
|
|
bin_env=self.venv_dir, conf_file=self.supervisor_conf
|
|
|
|
)
|
|
|
|
self.assertSaltTrueReturn(ret)
|