-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrequest_handler_test.py
445 lines (356 loc) · 11.5 KB
/
request_handler_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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
import pytest
from unittest.mock import patch, MagicMock
from aikido_zen.thread.thread_cache import get_cache, ThreadCache
from .request_handler import request_handler
from ...background_process.service_config import ServiceConfig
from ...context import Context, current_context
@pytest.fixture
def mock_context():
"""Fixture to create a mock context."""
context = MagicMock()
context.route = "/test/route"
context.method = "GET"
context.get_route_metadata.return_value = {
"route": "/test/route",
"method": "GET",
"url": "http://localhost:8080/test/route",
}
return context
@pytest.fixture(autouse=True)
def run_around_tests():
get_cache().reset()
current_context.set(None)
yield
get_cache().reset()
current_context.set(None)
def test_post_response_useful_route(mock_context):
"""Test post_response when the route is useful."""
cache = get_cache() # Creates a new cache
assert cache.routes.routes == {}
with patch("aikido_zen.context.get_current_context", return_value=mock_context):
request_handler("post_response", status_code=200)
# Check that the route was initialized and updated
assert cache.routes.routes == {
"GET:/test/route": {
"apispec": {},
"hits": 1,
"method": "GET",
"path": "/test/route",
"hits_delta_since_sync": 1,
}
}
@patch("aikido_zen.background_process.get_comms")
def test_post_response_not_useful_route(mock_get_comms, mock_context):
"""Test post_response when the route is not useful."""
comms = MagicMock()
mock_get_comms.return_value = comms
cache = ThreadCache() # Creates a new cache
assert cache.routes.routes == {}
with patch("aikido_zen.context.get_current_context", return_value=mock_context):
request_handler("post_response", status_code=500)
assert cache.routes.routes == {}
comms.send_data_to_bg_process.assert_not_called()
@patch("aikido_zen.background_process.get_comms")
def test_post_response_no_context(mock_get_comms):
"""Test post_response when there is no context."""
comms = MagicMock()
mock_get_comms.return_value = comms
cache = ThreadCache() # Creates a new cache
assert cache.routes.routes == {}
# Simulate no context
with patch("aikido_zen.context.get_current_context", return_value=None):
result = request_handler("post_response", status_code=200)
assert cache.routes.routes == {}
comms.send_data_to_bg_process.assert_not_called()
# Test firewall lists
def set_context(remote_address, user_agent=""):
Context(
context_obj={
"remote_address": remote_address,
"method": "POST",
"url": "http://localhost:4000",
"query": {"abc": "def"},
"headers": {"USER_AGENT": user_agent},
"body": None,
"cookies": {},
"source": "flask",
"route": "/posts/:number",
"user": None,
"executed_middleware": False,
}
).set_as_current_context()
def create_service_config(blocked_ips=None):
config = ServiceConfig(
endpoints=[
{
"method": "POST",
"route": "/posts/:number",
"graphql": False,
"allowedIPAddresses": ["1.1.1.1", "2.2.2.2", "3.3.3.3"],
}
],
last_updated_at=None,
blocked_uids=set(),
bypassed_ips=[],
received_any_stats=False,
)
if blocked_ips:
config.set_blocked_ips(blocked_ips)
get_cache().config = config
return config
def test_blocked_ip():
# Arrange
set_context("192.168.1.1")
blocked_ips = [
{"source": "test", "description": "Blocked for testing", "ips": ["192.168.1.1"]}
]
config = create_service_config(blocked_ips)
config.endpoints[0]["allowedIPAddresses"] = [] # Clear allowed ips for endpoint
# Act
result = request_handler("pre_response")
# Assert
assert result == (
"Your IP address is blocked due to Blocked for testing (Your IP: 192.168.1.1)",
403,
)
def test_allowed_ip():
# Arrange
set_context("1.1.1.1")
blocked_ips = [
{"source": "test", "description": "Blocked for testing", "ips": ["192.168.1.1"]}
]
create_service_config(blocked_ips)
# Act
result = request_handler("pre_response")
# Assert
assert result is None
def test_invalid_context():
# Arrange
create_service_config()
# Act
result = request_handler("pre_response")
# Assert
assert result is None
def test_not_allowed_ip():
# Arrange
set_context("192.168.1.3")
blocked_ips = [
{"source": "test", "description": "Blocked for testing", "ips": ["192.168.1.1"]}
]
create_service_config(blocked_ips)
# Act
result = request_handler("pre_response")
# Assert
assert result == (
"Your IP address is not allowed to access this resource. (Your IP: 192.168.1.3)",
403,
)
def test_bypassed_ip():
# Arrange
set_context("1.1.1.1") # This IP is in the allowed list
blocked_ips = [
{"source": "test", "description": "Blocked for testing", "ips": ["192.168.1.1"]}
]
config = create_service_config(blocked_ips)
config.bypassed_ips.add("1.1.1.1")
# Act
result = request_handler("pre_response")
# Assert
assert result is None # Should be allowed since it's in the bypass list
def test_ip_allowed_by_endpoint():
# Arrange
set_context("2.2.2.2") # This IP is in the allowed list
blocked_ips = [
{"source": "test", "description": "Blocked for testing", "ips": ["192.168.1.1"]}
]
config = create_service_config(blocked_ips)
# Act
result = request_handler("pre_response")
# Assert
assert result is None # Should be allowed since it's in the allowed list
def test_ip_not_allowed_by_endpoint():
# Arrange
set_context("4.4.4.4") # Not in the allowed list
blocked_ips = [
{"source": "test", "description": "Blocked for testing", "ips": ["192.168.1.1"]}
]
config = create_service_config(blocked_ips)
# Act
result = request_handler("pre_response")
# Assert
assert result == (
"Your IP address is not allowed to access this resource. (Your IP: 4.4.4.4)",
403,
)
def test_first_checks_resource_blocked():
# Arrange
set_context("192.168.1.1") # This IP is blocked
blocked_ips = [
{
"source": "test",
"description": "Blocked for testing",
"ips": ["192.168.1.1", "192.168.1.2"],
}
]
create_service_config(blocked_ips)
# Act
result = request_handler("pre_response")
# Assert
assert result == (
"Your IP address is not allowed to access this resource. (Your IP: 192.168.1.1)",
403,
)
def test_allowed_for_endpoint_but_blocked():
# Arrange
set_context("1.1.1.1") # This IP is blocked
blocked_ips = [
{
"source": "test",
"description": "Blocked for testing",
"ips": ["192.168.1.1", "192.168.1.2", "1.1.1.0/24"],
}
]
create_service_config(blocked_ips)
# Act
result = request_handler("pre_response")
# Assert
assert result == (
"Your IP address is blocked due to Blocked for testing (Your IP: 1.1.1.1)",
403,
)
def test_allowed_for_endpoint_but_not_in_allowlist_and_blocked():
# Arrange
set_context("1.1.1.1") # This IP is blocked
blocked_ips = [
{
"source": "test",
"description": "Blocked for testing",
"ips": ["192.168.1.1", "192.168.1.2", "1.1.1.0/24"],
}
]
config = create_service_config(blocked_ips)
config.set_allowed_ips(
[
{
"source": "test",
"description": "Allowed ranges",
"ips": ["4.4.4.0/24"],
}
]
)
# Act
result = request_handler("pre_response")
# Assert
assert result == (
"Your IP address is not allowed. (Your IP: 1.1.1.1)",
403,
)
def test_allowed_for_endpoint_but_not_in_allowlist_not_blocked():
# Arrange
set_context("1.1.1.1") # This IP is blocked
config = create_service_config()
config.set_allowed_ips(
[
{
"source": "test",
"description": "Allowed ranges",
"ips": ["4.4.4.0/24"],
}
]
)
# Act
result = request_handler("pre_response")
# Assert
assert result == (
"Your IP address is not allowed. (Your IP: 1.1.1.1)",
403,
)
def test_allowed_for_endpoint_and_in_allowlist():
# Arrange
set_context("1.1.1.1") # This IP is blocked
config = create_service_config()
config.set_allowed_ips(
[
{
"source": "test",
"description": "Allowed ranges",
"ips": ["1.1.1.0/24"],
}
]
)
# Act
result = request_handler("pre_response")
# Assert
assert result is None
def test_allowed_for_endpoint_in_allowlist_but_blocked():
# Arrange
set_context("1.1.1.1") # This IP is blocked
blocked_ips = [
{
"source": "test",
"description": "Blocked for testing",
"ips": ["192.168.1.1", "192.168.1.2", "1.1.1.0/24"],
}
]
config = create_service_config(blocked_ips)
config.set_allowed_ips(
[
{
"source": "test",
"description": "Allowed ranges",
"ips": ["1.1.1.0/24"],
}
]
)
# Act
result = request_handler("pre_response")
# Assert
assert result == (
"Your IP address is blocked due to Blocked for testing (Your IP: 1.1.1.1)",
403,
)
def test_allowed_for_endpoint_and_in_allowlist_but_is_bot():
# Arrange
set_context("1.1.1.1", "Test_be bot")
config = create_service_config()
config.set_blocked_user_agents("test_ua|test_be")
# Act
result = request_handler("pre_response")
# Assert
assert result == (
"You are not allowed to access this resource because you have been identified as a bot.",
403,
)
def test_allowed_for_endpoint_and_in_allowlist_but_is_bot_2():
# Arrange
set_context(
"1.1.1.1",
"Mozilla/5.0 (compatible; Bytespider/1.0; +http://bytespider.com/bot.html)",
)
config = create_service_config()
config.set_blocked_user_agents(
"AI2Bot|Applebot-Extended|Bytespider|CCBot|ClaudeBot|cohere-training-data-crawler|Diffbot|Google-Extended|GPTBot|Kangaroo Bot|meta-externalagent|anthropic-ai|omgili|PanguBot|Webzio-Extended|Timpibot|img2dataset|ImagesiftBot|archive.org_bot"
)
# Act
result = request_handler("pre_response")
# Assert
assert result == (
"You are not allowed to access this resource because you have been identified as a bot.",
403,
)
set_context("1.1.1.1", "Mozilla/5.0 (compatible; GPTBot/1.0;")
result = request_handler("pre_response")
# Assert
assert result == (
"You are not allowed to access this resource because you have been identified as a bot.",
403,
)
def test_allowed_for_endpoint_and_in_allowlist_bots_are_set_but_is_not_bot():
# Arrange
set_context("1.1.1.1", "Test_u4 bot")
config = create_service_config()
config.set_blocked_user_agents("test_ua|test_be")
# Act
result = request_handler("pre_response")
# Assert
assert result is None