summaryrefslogtreecommitdiffhomepage
path: root/test/test_python_basic.py
diff options
context:
space:
mode:
authorAndrei Belov <defan@nginx.com>2019-05-30 17:44:29 +0300
committerAndrei Belov <defan@nginx.com>2019-05-30 17:44:29 +0300
commit4921df052be8437d912f3c60faa9a667890e4498 (patch)
tree3678c551f148a0d177721597de978c090237f205 /test/test_python_basic.py
parent3b7a7ff2aa5840d4238584410ee1ebc6860fb9c5 (diff)
parent7da320a93af07765e79c929287704936c431f3cd (diff)
downloadunit-4921df052be8437d912f3c60faa9a667890e4498.tar.gz
unit-4921df052be8437d912f3c60faa9a667890e4498.tar.bz2
Merged with the default branch.1.9.0-1
Diffstat (limited to 'test/test_python_basic.py')
-rw-r--r--test/test_python_basic.py156
1 files changed, 93 insertions, 63 deletions
diff --git a/test/test_python_basic.py b/test/test_python_basic.py
index b5179dea..9987e886 100644
--- a/test/test_python_basic.py
+++ b/test/test_python_basic.py
@@ -1,38 +1,35 @@
-import unittest
-import unit
+from unit.control import TestControl
-class TestUnitPythonBasic(unit.TestUnitControl):
- def setUpClass():
- unit.TestUnit().check_modules('python')
+class TestPythonBasic(TestControl):
+ prerequisites = ['python']
conf_app = {
"app": {
"type": "python",
- "processes": { "spare": 0 },
+ "processes": {"spare": 0},
"path": "/app",
- "module": "wsgi"
+ "module": "wsgi",
}
}
conf_basic = {
- "listeners": {
- "*:7080": {
- "application": "app"
- }
- },
- "applications": conf_app
+ "listeners": {"*:7080": {"pass": "applications/app"}},
+ "applications": conf_app,
}
def test_python_get_empty(self):
- self.assertEqual(self.conf_get(),
- {'listeners': {}, 'applications': {}}, 'empty')
+ self.assertEqual(
+ self.conf_get(), {'listeners': {}, 'applications': {}}, 'empty'
+ )
def test_python_get_prefix_listeners(self):
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')
@@ -40,113 +37,146 @@ class TestUnitPythonBasic(unit.TestUnitControl):
conf = self.conf_get()
self.assertEqual(conf['listeners'], {}, 'listeners')
- self.assertEqual(conf['applications'],
+ self.assertEqual(
+ conf['applications'],
{
"app": {
"type": "python",
- "processes": { "spare": 0 },
+ "processes": {"spare": 0},
"path": "/app",
- "module": "wsgi"
+ "module": "wsgi",
}
},
- 'applications')
+ 'applications',
+ )
def test_python_get_applications_prefix(self):
self.conf(self.conf_app, 'applications')
- self.assertEqual(self.conf_get('applications'),
+ self.assertEqual(
+ self.conf_get('applications'),
{
"app": {
"type": "python",
- "processes": { "spare": 0 },
+ "processes": {"spare": 0},
"path": "/app",
- "module":"wsgi"
+ "module": "wsgi",
}
},
- 'applications prefix')
+ 'applications prefix',
+ )
def test_python_get_applications_prefix_2(self):
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 },
+ "processes": {"spare": 0},
"path": "/app",
- "module": "wsgi"
+ "module": "wsgi",
},
- 'applications prefix 2')
+ 'applications prefix 2',
+ )
def test_python_get_applications_prefix_3(self):
self.conf(self.conf_app, 'applications')
- self.assertEqual(self.conf_get('applications/app/type'), 'python',
- 'type')
- self.assertEqual(self.conf_get('applications/app/processes/spare'), 0,
- 'spare')
+ self.assertEqual(
+ self.conf_get('applications/app/type'), 'python', 'type'
+ )
+ self.assertEqual(
+ self.conf_get('applications/app/processes/spare'), 0, 'spare'
+ )
def test_python_get_listeners(self):
self.conf(self.conf_basic)
- self.assertEqual(self.conf_get()['listeners'],
- {"*:7080":{"application":"app"}}, 'listeners')
+ self.assertEqual(
+ self.conf_get()['listeners'],
+ {"*:7080": {"pass": "applications/app"}},
+ 'listeners',
+ )
def test_python_get_listeners_prefix(self):
self.conf(self.conf_basic)
- self.assertEqual(self.conf_get('listeners'),
- {"*:7080":{"application":"app"}}, 'listeners prefix')
+ self.assertEqual(
+ self.conf_get('listeners'),
+ {"*:7080": {"pass": "applications/app"}},
+ 'listeners prefix',
+ )
def test_python_get_listeners_prefix_2(self):
self.conf(self.conf_basic)
- self.assertEqual(self.conf_get('listeners/*:7080'),
- {"application":"app"}, 'listeners prefix 2')
+ self.assertEqual(
+ self.conf_get('listeners/*:7080'),
+ {"pass": "applications/app"},
+ 'listeners prefix 2',
+ )
def test_python_change_listener(self):
self.conf(self.conf_basic)
- self.conf({"*:7081":{"application":"app"}}, 'listeners')
+ self.conf({"*:7081": {"pass": "applications/app"}}, 'listeners')
- self.assertEqual(self.conf_get('listeners'),
- {"*:7081": {"application":"app"}}, 'change listener')
+ self.assertEqual(
+ self.conf_get('listeners'),
+ {"*:7081": {"pass": "applications/app"}},
+ 'change listener',
+ )
def test_python_add_listener(self):
self.conf(self.conf_basic)
- self.conf({"application":"app"}, 'listeners/*:7082')
+ self.conf({"pass": "applications/app"}, 'listeners/*:7082')
- self.assertEqual(self.conf_get('listeners'),
+ self.assertEqual(
+ self.conf_get('listeners'),
{
- "*:7080": {
- "application": "app"
- },
- "*:7082": {
- "application": "app"
- }
+ "*:7080": {"pass": "applications/app"},
+ "*:7082": {"pass": "applications/app"},
},
- 'add listener')
+ 'add listener',
+ )
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,
- 'change application 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',
- 'change application 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'),
- 'delete app before listener')
- self.assertIn('success', self.conf_delete('listeners/*:7080'),
- 'delete listener')
- self.assertIn('success', self.conf_delete('applications/app'),
- 'delete app after listener')
- self.assertIn('error', self.conf_delete('applications/app'),
- 'delete app again')
+ self.assertIn(
+ 'error',
+ self.conf_delete('applications/app'),
+ 'delete app before listener',
+ )
+ self.assertIn(
+ 'success', self.conf_delete('listeners/*:7080'), 'delete listener'
+ )
+ self.assertIn(
+ 'success',
+ self.conf_delete('applications/app'),
+ 'delete app after listener',
+ )
+ self.assertIn(
+ 'error', self.conf_delete('applications/app'), 'delete app again'
+ )
+
if __name__ == '__main__':
- TestUnitPythonBasic.main()
+ TestPythonBasic.main()