123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- # -*- coding: utf-8 -*-
- '''
- Tests for the supervisord state
- '''
- # Import python lins
- from __future__ import absolute_import, unicode_literals, print_function
- import os
- import time
- import subprocess
- # Import Salt Testing libs
- from tests.support.runtests import RUNTIME_VARS
- from tests.support.case import ModuleCase
- from tests.support.unit import skipIf
- from tests.support.mixins import SaltReturnAssertsMixin
- # Import salt libs
- import salt.utils.path
- from salt.modules.virtualenv_mod import KNOWN_BINARY_NAMES
- # Import 3rd-party libs
- from salt.ext import six
- @skipIf(six.PY3, 'supervisor does not work under python 3')
- @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')
- class SupervisordTest(ModuleCase, SaltReturnAssertsMixin):
- '''
- Validate the supervisord states.
- '''
- def setUp(self):
- super(SupervisordTest, self).setUp()
- self.venv_test_dir = os.path.join(RUNTIME_VARS.TMP, 'supervisortests')
- self.venv_dir = os.path.join(self.venv_test_dir, 'venv')
- self.supervisor_sock = os.path.join(self.venv_dir, 'supervisor.sock')
- if not os.path.exists(self.venv_dir):
- os.makedirs(self.venv_test_dir)
- self.run_function('virtualenv.create', [self.venv_dir])
- self.run_function(
- 'pip.install', [], pkgs='supervisor', bin_env=self.venv_dir)
- 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):
- self.run_state(
- 'file.managed', name=self.supervisor_conf,
- source='salt://supervisor.conf', template='jinja',
- context={
- 'supervisor_sock': self.supervisor_sock,
- 'virtual_env': self.venv_dir,
- 'autostart': autostart
- }
- )
- if not os.path.exists(self.supervisor_conf):
- self.skipTest('failed to create supervisor config file')
- self.supervisor_proc = subprocess.Popen(
- [self.supervisord, '-c', self.supervisor_conf]
- )
- if self.supervisor_proc.poll() is not None:
- self.skipTest('failed to start supervisord')
- timeout = 10
- while not os.path.exists(self.supervisor_sock):
- if timeout == 0:
- self.skipTest(
- 'supervisor socket not found - failed to start supervisord'
- )
- break
- else:
- time.sleep(1)
- timeout -= 1
- def tearDown(self):
- 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)
- self.supervisor_proc.wait()
- del self.supervisor_proc
- del self.venv_test_dir
- del self.venv_dir
- del self.supervisord
- del self.supervisor_conf
- del self.supervisor_sock
- 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)
- self.assertInSaltReturn('sleep_service', ret, ['changes'])
- 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)
- self.assertNotInSaltReturn('sleep_service', ret, ['changes'])
- 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)
- self.assertInSaltReturn('sleep_service', ret, ['changes'])
- def test_running_notexists(self):
- '''
- supervisord.running restart = False
- When service doesn't exist.
- '''
- self.start_supervisord(autostart=True)
- ret = self.run_state(
- 'supervisord.running', name='does_not_exist',
- bin_env=self.venv_dir, conf_file=self.supervisor_conf
- )
- self.assertSaltFalseReturn(ret)
- 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)
- self.assertInSaltReturn('sleep_service', ret, ['changes'])
- def test_restart_stopped(self):
- '''
- supervisord.running restart = True
- When service is stopped.
- '''
- self.start_supervisord(autostart=False)
- ret = self.run_state(
- 'supervisord.running', name='sleep_service',
- restart=True,
- bin_env=self.venv_dir, conf_file=self.supervisor_conf
- )
- self.assertSaltTrueReturn(ret)
- self.assertInSaltReturn('sleep_service', ret, ['changes'])
- 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)
- self.assertInSaltReturn('sleep_service', ret, ['changes'])
- 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
- )
- self.assertSaltFalseReturn(ret)
- self.assertNotInSaltReturn('sleep_service', ret, ['changes'])
- def test_dead_started(self):
- '''
- supervisord.dead
- When service is running.
- '''
- self.start_supervisord(autostart=True)
- 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_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)
|