diff options
author | Andrey Zelenkov <zelenkov@nginx.com> | 2018-09-06 20:18:33 +0300 |
---|---|---|
committer | Andrey Zelenkov <zelenkov@nginx.com> | 2018-09-06 20:18:33 +0300 |
commit | 511a0fa7605e61f90e524edfbcbefa230573e32f (patch) | |
tree | 011538ece353c804605a05452daa344e8be2d2fd /test/test_php_basic.py | |
parent | 58d23eb5b4cc15a11fa4550dc165b6be4797525a (diff) | |
download | unit-511a0fa7605e61f90e524edfbcbefa230573e32f.tar.gz unit-511a0fa7605e61f90e524edfbcbefa230573e32f.tar.bz2 |
Tests: used relative path for configuration.
Diffstat (limited to 'test/test_php_basic.py')
-rw-r--r-- | test/test_php_basic.py | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/test/test_php_basic.py b/test/test_php_basic.py index 0205c634..9e0ce822 100644 --- a/test/test_php_basic.py +++ b/test/test_php_basic.py @@ -25,7 +25,7 @@ class TestUnitPHPBasic(unit.TestUnitControl): } def test_php_get_applications(self): - self.conf(self.conf_app, '/applications') + self.conf(self.conf_app, 'applications') conf = self.conf_get() @@ -42,9 +42,9 @@ class TestUnitPHPBasic(unit.TestUnitControl): 'applications') def test_php_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": "php", @@ -56,9 +56,9 @@ class TestUnitPHPBasic(unit.TestUnitControl): 'applications prefix') def test_php_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": "php", "processes": { "spare": 0 }, @@ -68,11 +68,11 @@ class TestUnitPHPBasic(unit.TestUnitControl): 'applications prefix 2') def test_php_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'), 'php', + self.assertEqual(self.conf_get('applications/app/type'), 'php', 'type') - self.assertEqual(self.conf_get('/applications/app/processes/spare'), 0, + self.assertEqual(self.conf_get('applications/app/processes/spare'), 0, 'spare processes') def test_php_get_listeners(self): @@ -84,27 +84,27 @@ class TestUnitPHPBasic(unit.TestUnitControl): def test_php_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_php_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_php_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_php_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" @@ -118,24 +118,24 @@ class TestUnitPHPBasic(unit.TestUnitControl): def test_php_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/root') - self.assertEqual(self.conf_get('/applications/app/root'), '/www', + self.conf('"/www"', 'applications/app/root') + self.assertEqual(self.conf_get('applications/app/root'), '/www', 'change application root') def test_php_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__': |