Tests: used relative path for configuration.
This commit is contained in:
@@ -29,13 +29,13 @@ class TestUnitPythonBasic(unit.TestUnitControl):
|
||||
{'listeners': {}, 'applications': {}}, 'empty')
|
||||
|
||||
def test_python_get_prefix_listeners(self):
|
||||
self.assertEqual(self.conf_get('/listeners'), {}, 'listeners prefix')
|
||||
self.assertEqual(self.conf_get('listeners'), {}, 'listeners prefix')
|
||||
|
||||
def test_python_get_prefix_applications(self):
|
||||
self.assertEqual(self.conf_get('/applications'), {}, 'applications prefix')
|
||||
self.assertEqual(self.conf_get('applications'), {}, 'applications prefix')
|
||||
|
||||
def test_python_get_applications(self):
|
||||
self.conf(self.conf_app, '/applications')
|
||||
self.conf(self.conf_app, 'applications')
|
||||
|
||||
conf = self.conf_get()
|
||||
|
||||
@@ -52,9 +52,9 @@ class TestUnitPythonBasic(unit.TestUnitControl):
|
||||
'applications')
|
||||
|
||||
def test_python_get_applications_prefix(self):
|
||||
self.conf(self.conf_app, '/applications')
|
||||
self.conf(self.conf_app, 'applications')
|
||||
|
||||
self.assertEqual(self.conf_get('/applications'),
|
||||
self.assertEqual(self.conf_get('applications'),
|
||||
{
|
||||
"app": {
|
||||
"type": "python",
|
||||
@@ -66,9 +66,9 @@ class TestUnitPythonBasic(unit.TestUnitControl):
|
||||
'applications prefix')
|
||||
|
||||
def test_python_get_applications_prefix_2(self):
|
||||
self.conf(self.conf_app, '/applications')
|
||||
self.conf(self.conf_app, 'applications')
|
||||
|
||||
self.assertEqual(self.conf_get('/applications/app'),
|
||||
self.assertEqual(self.conf_get('applications/app'),
|
||||
{
|
||||
"type": "python",
|
||||
"processes": { "spare": 0 },
|
||||
@@ -78,11 +78,11 @@ class TestUnitPythonBasic(unit.TestUnitControl):
|
||||
'applications prefix 2')
|
||||
|
||||
def test_python_get_applications_prefix_3(self):
|
||||
self.conf(self.conf_app, '/applications')
|
||||
self.conf(self.conf_app, 'applications')
|
||||
|
||||
self.assertEqual(self.conf_get('/applications/app/type'), 'python',
|
||||
self.assertEqual(self.conf_get('applications/app/type'), 'python',
|
||||
'type')
|
||||
self.assertEqual(self.conf_get('/applications/app/processes/spare'), 0,
|
||||
self.assertEqual(self.conf_get('applications/app/processes/spare'), 0,
|
||||
'spare')
|
||||
|
||||
def test_python_get_listeners(self):
|
||||
@@ -94,27 +94,27 @@ class TestUnitPythonBasic(unit.TestUnitControl):
|
||||
def test_python_get_listeners_prefix(self):
|
||||
self.conf(self.conf_basic)
|
||||
|
||||
self.assertEqual(self.conf_get('/listeners'),
|
||||
self.assertEqual(self.conf_get('listeners'),
|
||||
{"*:7080":{"application":"app"}}, 'listeners prefix')
|
||||
|
||||
def test_python_get_listeners_prefix_2(self):
|
||||
self.conf(self.conf_basic)
|
||||
|
||||
self.assertEqual(self.conf_get('/listeners/*:7080'),
|
||||
self.assertEqual(self.conf_get('listeners/*:7080'),
|
||||
{"application":"app"}, 'listeners prefix 2')
|
||||
|
||||
def test_python_change_listener(self):
|
||||
self.conf(self.conf_basic)
|
||||
self.conf({"*:7081":{"application":"app"}}, '/listeners')
|
||||
self.conf({"*:7081":{"application":"app"}}, 'listeners')
|
||||
|
||||
self.assertEqual(self.conf_get('/listeners'),
|
||||
self.assertEqual(self.conf_get('listeners'),
|
||||
{"*:7081": {"application":"app"}}, 'change listener')
|
||||
|
||||
def test_python_add_listener(self):
|
||||
self.conf(self.conf_basic)
|
||||
self.conf({"application":"app"}, '/listeners/*:7082')
|
||||
self.conf({"application":"app"}, 'listeners/*:7082')
|
||||
|
||||
self.assertEqual(self.conf_get('/listeners'),
|
||||
self.assertEqual(self.conf_get('listeners'),
|
||||
{
|
||||
"*:7080": {
|
||||
"application": "app"
|
||||
@@ -128,24 +128,24 @@ class TestUnitPythonBasic(unit.TestUnitControl):
|
||||
def test_python_change_application(self):
|
||||
self.conf(self.conf_basic)
|
||||
|
||||
self.conf('30', '/applications/app/processes/max')
|
||||
self.assertEqual(self.conf_get('/applications/app/processes/max'), 30,
|
||||
self.conf('30', 'applications/app/processes/max')
|
||||
self.assertEqual(self.conf_get('applications/app/processes/max'), 30,
|
||||
'change application max')
|
||||
|
||||
self.conf('"/www"', '/applications/app/path')
|
||||
self.assertEqual(self.conf_get('/applications/app/path'), '/www',
|
||||
self.conf('"/www"', 'applications/app/path')
|
||||
self.assertEqual(self.conf_get('applications/app/path'), '/www',
|
||||
'change application path')
|
||||
|
||||
def test_python_delete(self):
|
||||
self.conf(self.conf_basic)
|
||||
|
||||
self.assertIn('error', self.conf_delete('/applications/app'),
|
||||
self.assertIn('error', self.conf_delete('applications/app'),
|
||||
'delete app before listener')
|
||||
self.assertIn('success', self.conf_delete('/listeners/*:7080'),
|
||||
self.assertIn('success', self.conf_delete('listeners/*:7080'),
|
||||
'delete listener')
|
||||
self.assertIn('success', self.conf_delete('/applications/app'),
|
||||
self.assertIn('success', self.conf_delete('applications/app'),
|
||||
'delete app after listener')
|
||||
self.assertIn('error', self.conf_delete('/applications/app'),
|
||||
self.assertIn('error', self.conf_delete('applications/app'),
|
||||
'delete app again')
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
Reference in New Issue
Block a user