1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
import unittest
import unit
class TestUnitPythonBasic(unit.TestUnitControl):
def setUpClass():
unit.TestUnit().check_modules('python')
conf_app = {
"app": {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
}
conf_basic = {
"listeners": {
"*:7080": {
"application": "app"
}
},
"applications": conf_app
}
def test_python_get_empty(self):
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')
def test_python_get_applications(self):
self.conf(self.conf_app, 'applications')
conf = self.conf_get()
self.assertEqual(conf['listeners'], {}, 'listeners')
self.assertEqual(conf['applications'],
{
"app": {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
},
'applications')
def test_python_get_applications_prefix(self):
self.conf(self.conf_app, 'applications')
self.assertEqual(self.conf_get('applications'),
{
"app": {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module":"wsgi"
}
},
'applications prefix')
def test_python_get_applications_prefix_2(self):
self.conf(self.conf_app, 'applications')
self.assertEqual(self.conf_get('applications/app'),
{
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
},
'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')
def test_python_get_listeners(self):
self.conf(self.conf_basic)
self.assertEqual(self.conf_get()['listeners'],
{"*:7080":{"application":"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')
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')
def test_python_change_listener(self):
self.conf(self.conf_basic)
self.conf({"*:7081":{"application":"app"}}, '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.assertEqual(self.conf_get('listeners'),
{
"*:7080": {
"application": "app"
},
"*:7082": {
"application": "app"
}
},
'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.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'),
'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__':
unittest.main()
|