salt/tests/integration/states/supervisord.py
Pedro Algarvio ec2486c9d8 Only test supervisor if conditions are proper. Refs #2026.
* Only the root user can run the supervisor state tests.
* Install supervisor on the travis-ci machine to run the tests.
2012-09-25 22:32:42 +01:00

40 lines
1.1 KiB
Python

'''
Tests for the supervisord state
'''
import os
import integration
class SupervisordTest(integration.ModuleCase):
'''
Validate the supervisord states.
'''
def setUp(self):
super(SupervisordTest, self).setUp()
ret = self.run_function('cmd.has_exec', ['supervisorctl'])
if not ret:
self.skipTest('supervisor not installed')
if os.geteuid() != 0:
self.skipTest('you must be this root to run this test')
def test_start(self):
'''
supervisord.running restart = False
'''
ret = self.run_state('supervisord.running', name='null_service')
self.assertTrue(ret)
# Unlikely we have a service called test on the test machine
self.assertFalse(ret.items()[0][1]['result'])
def test_restart(self):
'''
supervisord.running restart = True
'''
ret = self.run_state(
'supervisord.running', name='null_service', restart=True)
self.assertTrue(ret)
# Unlikely we have a service called test on the test machine
self.assertFalse(ret.items()[0][1]['result'])