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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
|
import unittest
import unit
class TestUnitConfiguration(unit.TestUnitControl):
def setUpClass():
unit.TestUnit().check_modules('python')
def test_json_empty(self):
self.assertIn('error', self.conf(''), 'empty')
def test_json_leading_zero(self):
self.assertIn('error', self.conf('00'), 'leading zero')
def test_json_unicode(self):
self.assertIn('success', self.conf(b"""
{
"ap\u0070": {
"type": "\u0070ython",
"processes": { "spare": 0 },
"path": "\u002Fapp",
"module": "wsgi"
}
}
""", 'applications'), 'unicode')
self.assertDictEqual(self.conf_get('applications'), {
"app": {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
}, 'unicode get')
def test_json_unicode_2(self):
self.assertIn('success', self.conf({
"приложение": {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
}, 'applications'), 'unicode 2')
self.assertIn('приложение', self.conf_get('applications'),
'unicode 2 get')
def test_json_unicode_number(self):
self.assertIn('error', self.conf(b"""
{
"app": {
"type": "python",
"processes": { "spare": \u0030 },
"path": "/app",
"module": "wsgi"
}
}
""", 'applications'), 'unicode number')
def test_applications_open_brace(self):
self.assertIn('error', self.conf('{', 'applications'), 'open brace')
def test_applications_string(self):
self.assertIn('error', self.conf('"{}"', 'applications'), 'string')
def test_applications_type_only(self):
self.skip_alerts.extend([
r'python module is empty',
r'failed to apply new conf',
r'process \d+ exited on signal'
])
self.assertIn('error', self.conf({
"app": {
"type": "python"
}
}, 'applications'), 'type only')
def test_applications_miss_quote(self):
self.assertIn('error', self.conf("""
{
app": {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
}
""", 'applications'), 'miss quote')
def test_applications_miss_colon(self):
self.assertIn('error', self.conf("""
{
"app" {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
}
""", 'applications'), 'miss colon')
def test_applications_miss_comma(self):
self.assertIn('error', self.conf("""
{
"app": {
"type": "python"
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
}
""", 'applications'), 'miss comma')
def test_applications_skip_spaces(self):
self.assertIn('success', self.conf(b'{ \n\r\t}', 'applications'),
'skip spaces')
def test_applications_relative_path(self):
self.assertIn('success', self.conf({
"app": {
"type": "python",
"processes": { "spare": 0 },
"path": "../app",
"module": "wsgi"
}
}, 'applications'), 'relative path')
@unittest.expectedFailure
def test_listeners_empty(self):
self.skip_sanitizer = True
self.skip_alerts.extend([
r'failed to apply previous configuration',
r'process \d+ exited on signal'
])
self.assertIn('error', self.conf({"*:7080":{}}, 'listeners'),
'listener empty')
def test_listeners_no_app(self):
self.assertIn('error', self.conf({"*:7080":{"application":"app"}},
'listeners'), 'listeners no app')
def test_listeners_wildcard(self):
self.assertIn('success', self.conf({
"listeners": {
"*:7080": {
"application":"app"
}
},
"applications": {
"app": {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
}
}), 'listeners wildcard')
def test_listeners_explicit(self):
self.assertIn('success', self.conf({
"listeners": {
"127.0.0.1:7080": {
"application":"app"
}
},
"applications": {
"app": {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
}
}), 'explicit')
def test_listeners_explicit_ipv6(self):
self.assertIn('success', self.conf({
"listeners": {
"[::1]:7080": {
"application":"app"
}
},
"applications": {
"app": {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
}
}), 'explicit ipv6')
def test_listeners_no_port(self):
self.skip_alerts.extend([
r'invalid listener "127\.0\.0\.1"',
r'failed to apply new conf',
r'process \d+ exited on signal'
])
self.assertIn('error', self.conf({
"listeners": {
"127.0.0.1": {
"application":"app"
}
},
"applications": {
"app": {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
}
}), 'no port')
@unittest.expectedFailure
def test_json_application_name_large(self):
self.skip_alerts.append(r'epoll_ctl.+failed')
name = "X" * 1024 * 1024
self.assertIn('success', self.conf({
"listeners": {
"*:7080": {
"application": name
}
},
"applications": {
name: {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
}
}
}))
@unittest.expectedFailure
def test_json_application_many(self):
self.skip_alerts.extend([
r'eventfd.+failed',
r'epoll_create.+failed',
r'failed to apply new conf'
])
apps = 999
conf = {
"applications":
{"app-" + str(a): {
"type": "python",
"processes": { "spare": 0 },
"path": "/app",
"module": "wsgi"
} for a in range(apps)
},
"listeners": {
"*:" + str(7000 + a): {
"application": "app-" + str(a)
} for a in range(apps)
}
}
self.assertIn('success', self.conf(conf))
if __name__ == '__main__':
TestUnitConfiguration.main()
|