This repository has been archived by the owner on Oct 31, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
test.py
executable file
·297 lines (256 loc) · 10.6 KB
/
test.py
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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#!/opt/python/bin/python2.7
from __future__ import unicode_literals
import sys
import os
import unittest
from subprocess import Popen, call, check_call, PIPE
import signal
import time
import idea
import json
import threading
from BaseHTTPServer import HTTPServer
from BaseHTTPServer import BaseHTTPRequestHandler
import rlkeygen
from http import HttpClient
PROXY_PORT=12380
CREDIT_PORT=11170
SECRET='1234'
class MyHTTPServer(HTTPServer):
allow_reuse_address = True
class RequestHandler(BaseHTTPRequestHandler):
def do_POST(self):
length = int(self.headers.getheader('content-length'))
if self.rfile.read(length) == 'hi':
self.send_response(200)
self.send_header('Content-Length', '0')
self.end_headers()
else:
self.send_response(500)
self.send_header('Content-Length', '0')
self.end_headers()
def do_GET(self):
if self.path == "/apikey_required":
body = "Key Required";
self.send_response(200)
self.send_header('Content-Length', len(body))
self.send_header('Content-Type', 'text/plain')
self.end_headers()
self.wfile.write(body)
else:
self.send_response(200)
self.send_header('Content-Length', '0')
self.end_headers()
def serve_http(httpd):
httpd.serve_forever()
class TestProxyMixin:
@classmethod
def setUpClass(cls):
# start rl-proxy
with open('grandfathered_test_keys', 'w+') as f:
f.write('AAAA\n')
f.write('AAAB 1\n')
with open('blacklisted_test_keys', 'w+') as f:
f.write('FFFF\n')
cls.credit_proc = Popen([
'valgrind', '--log-file=creditserver_valgrind.log',
'./credit-server',
'--port', str(CREDIT_PORT),
'--reset-duration', '00:00:10',
])
cls.proxy_proc = Popen([
'valgrind', '--log-file=rlproxy_valgrind.log',
'./rl-proxy',
'--port', str(PROXY_PORT),
'--secret', SECRET,
'--backend', 'localhost:12480',
'--reset-duration', '00:00:10',
'--credit-server', 'localhost:%d' % CREDIT_PORT,
'--credit-limit', cls.default_credit_limit,
'--grandfather', 'grandfathered_test_keys',
'--blacklist', 'blacklisted_test_keys',
'--glog-v', '1',
])
cls.httpd = MyHTTPServer(('127.0.0.1', 12480), RequestHandler)
cls.httpd_thread = threading.Thread(target=serve_http, args=(cls.httpd,))
cls.httpd_thread.start()
cls.http = HttpClient('localhost', PROXY_PORT)
@classmethod
def tearDownClass(cls):
cls.proxy_proc.send_signal(signal.SIGINT)
cls.proxy_proc.wait()
cls.credit_proc.send_signal(signal.SIGINT)
cls.credit_proc.wait()
cls.httpd.shutdown()
cls.httpd_thread.join()
del cls.httpd
def test_00_rlkeygen(self):
apikey = rlkeygen.key_generate(SECRET, 1, 1, 0)
meta = rlkeygen.key_verify(SECRET, apikey)
self.assertTrue(meta != None)
self.assertEqual(1, meta['org_id'])
self.assertEqual(1, meta['app_id'])
self.assertEqual(0, meta['credits'])
self.assertEqual(None, meta['expires'])
def test_00_root_pass_through(self):
r, body = self.http.get('/')
self.assertEqual(200, r.status)
def test_00_credit_json(self):
r, body = self.http.get('/credit.json')
self.assertEqual(200, r.status)
def test_01_credit_jsonp(self):
r, body = self.http.get('/credit.json', callback='foo')
self.assertEqual(200, r.status)
self.assertTrue(body.startswith("foo("))
def test_02_credit_deduction_no_key(self):
for remaining in ['2', '1', '0']:
r, body = self.http.get('/test.json')
self.assertEqual(200, r.status)
self.assertEqual(remaining,
r.getheader('x-ratelimit-remaining', 'bad'))
r, body = self.http.get('/test.json')
self.assertEqual(503, r.status)
reset_time = float(r.getheader('x-ratelimit-reset', 'bad'))
sleep = reset_time - time.time()
self.assertTrue(sleep > 0)
time.sleep(sleep + 1)
r, body = self.http.get('/test.json')
self.assertEqual(200, r.status)
def test_02_post_with_key(self):
r, body = self.http.post('/test.json', 'hi', apikey='AAAA')
self.assertEqual(200, r.status)
def test_credit_deduction_grandfather_unlimited_key(self):
for remaining in ['16777215', '16777215']:
r, body = self.http.get('/test.json', apikey='AAAA')
self.assertEqual(200, r.status)
self.assertEqual(remaining,
r.getheader('x-ratelimit-remaining', 'bad'))
# check credit.json
r, body = self.http.get('/credit.json', apikey='AAAA')
self.assertEqual(200, r.status)
self.assertEqual('16777215',
r.getheader('x-ratelimit-remaining', 'bad'))
js = json.loads(body)
self.assertEqual(16777215,
js['response']['remaining'])
self.assertEqual('16777215',
r.getheader('x-ratelimit-limit', 'bad'))
self.assertEqual(16777215,
js['response']['limit'])
def test_credit_deduction_grandfather_limited_key(self):
# check credit.json
r, body = self.http.get('/credit.json', apikey='AAAB')
self.assertEqual(200, r.status)
self.assertEqual('1',
r.getheader('x-ratelimit-remaining', 'bad'))
js = json.loads(body)
self.assertEqual(1,
js['response']['remaining'])
self.assertEqual('1',
r.getheader('x-ratelimit-limit', 'bad'))
self.assertEqual(1,
js['response']['limit'])
for remaining in ['0']:
r, body = self.http.get('/test.json', apikey='AAAB')
self.assertEqual(200, r.status)
self.assertEqual(remaining,
r.getheader('x-ratelimit-remaining', 'bad'))
r, body = self.http.get('/test.json', apikey='AAAB')
self.assertEqual(503, r.status)
reset_time = float(r.getheader('x-ratelimit-reset', 'bad'))
sleep = reset_time - time.time()
self.assertTrue(sleep > 0)
time.sleep(sleep + 1)
r, body = self.http.get('/test.json', apikey='AAAB')
self.assertEqual(200, r.status)
def test_blacklist_key(self):
r, body = self.http.get('/test.json', apikey='FFFF')
self.assertEqual(403, r.status)
def test_credit_deduction_generated_key(self):
# this key will use the default credit limit
apikey = rlkeygen.key_generate(SECRET, 1, 1, 0)
r, body = self.http.get('/test.json', apikey=apikey)
self.assertEqual(200, r.status)
self.assertEqual('2',
r.getheader('x-ratelimit-remaining', 'bad'))
# this key will have a credit limit of 2
apikey = rlkeygen.key_generate(SECRET, 1, 1, 2)
r, body = self.http.get('/test.json', apikey=apikey)
self.assertEqual(200, r.status)
self.assertEqual('0',
r.getheader('x-ratelimit-remaining', 'bad'))
reset_time = float(r.getheader('x-ratelimit-reset', 'bad'))
r, body = self.http.get('/credit.json', apikey=apikey)
self.assertEqual(200, r.status)
self.assertEqual(reset_time,
float(r.getheader('x-ratelimit-reset', 'bad')))
js = json.loads(body)
self.assertEqual('0',
r.getheader('x-ratelimit-remaining', 'bad'))
self.assertEqual(0, js['response']['remaining'])
self.assertEqual(2, js['response']['limit'])
class TestProxy(TestProxyMixin, unittest.TestCase):
default_credit_limit = '3'
class TestProxyKeyRequired(TestProxyMixin, unittest.TestCase):
default_credit_limit = '0'
@classmethod
def setUpClass(cls):
# start rl-proxy
with open('grandfathered_test_keys', 'w+') as f:
f.write('AAAA\n')
f.write('AAAB 1\n')
cls.credit_proc = Popen([
'valgrind', '--log-file=creditserver_valgrind.log',
'./credit-server',
'--port', str(CREDIT_PORT),
'--reset-duration', '00:00:10',
])
cls.proxy_proc = Popen([
'valgrind', '--log-file=rlproxy_valgrind.log',
'./rl-proxy',
'--port', str(PROXY_PORT),
'--secret', SECRET,
'--backend', 'localhost:12480',
'--reset-duration', '00:00:10',
'--credit-server', 'localhost:%d' % CREDIT_PORT,
'--credit-limit', cls.default_credit_limit,
'--grandfather', 'grandfathered_test_keys',
'--glog-v', '1',
'--custom-errors',
])
cls.httpd = MyHTTPServer(('127.0.0.1', 12480), RequestHandler)
cls.httpd_thread = threading.Thread(target=serve_http, args=(cls.httpd,))
cls.httpd_thread.start()
cls.http = HttpClient('localhost', PROXY_PORT)
def test_02_credit_deduction_no_key(self):
r, body = self.http.get('/test.json')
self.assertEqual(403, r.status)
self.assertEqual('Apikey required', r.getheader('Warning', ''))
self.assertEqual('text/plain', r.getheader('Content-Type', ''))
self.assertEqual('Key Required', body)
def test_credit_deduction_generated_key(self):
# credit limit of 3 inside the key
apikey = rlkeygen.key_generate(SECRET, 1, 1, 3)
r, body = self.http.get('/test.json', apikey=apikey)
self.assertEqual(200, r.status)
self.assertEqual('2',
r.getheader('x-ratelimit-remaining', 'bad'))
# this key will have a credit limit of 2
apikey = rlkeygen.key_generate(SECRET, 1, 1, 2)
r, body = self.http.get('/test.json', apikey=apikey)
self.assertEqual(200, r.status)
self.assertEqual('0',
r.getheader('x-ratelimit-remaining', 'bad'))
reset_time = float(r.getheader('x-ratelimit-reset', 'bad'))
r, body = self.http.get('/credit.json', apikey=apikey)
self.assertEqual(200, r.status)
self.assertEqual(reset_time,
float(r.getheader('x-ratelimit-reset', 'bad')))
js = json.loads(body)
self.assertEqual('0',
r.getheader('x-ratelimit-remaining', 'bad'))
self.assertEqual(0, js['response']['remaining'])
self.assertEqual(2, js['response']['limit'])
if __name__ == '__main__':
runner = unittest.TextTestRunner(verbosity=2)
unittest.main(testRunner=runner)