mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Rebase
This commit is contained in:
parent
626b4a8205
commit
b180bdcec8
6 changed files with 97 additions and 7 deletions
0
tests/test_dispatcher/test_webhook/__init__.py
Normal file
0
tests/test_dispatcher/test_webhook/__init__.py
Normal file
37
tests/test_dispatcher/test_webhook/test_aiohtt_server.py
Normal file
37
tests/test_dispatcher/test_webhook/test_aiohtt_server.py
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
from typing import Any
|
||||
|
||||
import pytest
|
||||
from aiohttp.web_app import Application
|
||||
|
||||
from aiogram import Dispatcher
|
||||
from aiogram.dispatcher.webhook.aiohttp_server import ip_filter_middleware, setup_application
|
||||
from aiogram.dispatcher.webhook.security import IPFilter
|
||||
from aiogram.methods import Request
|
||||
|
||||
|
||||
class TestAiohttpServer:
|
||||
def test_setup_application(self):
|
||||
app = Application()
|
||||
|
||||
dp = Dispatcher()
|
||||
setup_application(app, dp)
|
||||
|
||||
assert len(app.router.routes()) == 0
|
||||
assert len(app.on_startup) == 2
|
||||
assert len(app.on_shutdown) == 1
|
||||
|
||||
async def test_middleware(self, aiohttp_client: Any):
|
||||
app = Application()
|
||||
app.middlewares.append(ip_filter_middleware(IPFilter.default()))
|
||||
|
||||
async def handler1(request: Request):
|
||||
pass
|
||||
|
||||
async def handler2(request: Request):
|
||||
pytest.fail()
|
||||
|
||||
app.router.add_route("POST", "/good", handler1)
|
||||
app.router.add_route("POST", "/bad", handler2)
|
||||
client = await aiohttp_client(app)
|
||||
resp = await client.get("/bad")
|
||||
assert resp
|
||||
57
tests/test_dispatcher/test_webhook/test_security.py
Normal file
57
tests/test_dispatcher/test_webhook/test_security.py
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
from ipaddress import IPv4Address, IPv4Network
|
||||
|
||||
import pytest
|
||||
|
||||
from aiogram.dispatcher.webhook.security import IPFilter
|
||||
|
||||
|
||||
class TestSecurity:
|
||||
def test_empty_init(self):
|
||||
ip_filter = IPFilter()
|
||||
assert not ip_filter._allowed_ips
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"ip,result",
|
||||
[
|
||||
("127.0.0.1", True),
|
||||
("127.0.0.2", False),
|
||||
(IPv4Address("127.0.0.1"), True),
|
||||
(IPv4Address("127.0.0.2"), False),
|
||||
(IPv4Address("192.168.0.32"), True),
|
||||
("192.168.0.33", False),
|
||||
("10.111.0.5", True),
|
||||
("10.111.0.100", True),
|
||||
("10.111.1.100", False),
|
||||
],
|
||||
)
|
||||
def test_check_ip(self, ip, result):
|
||||
ip_filter = IPFilter(
|
||||
ips=["127.0.0.1", IPv4Address("192.168.0.32"), IPv4Network("10.111.0.0/24")]
|
||||
)
|
||||
assert (ip in ip_filter) is result
|
||||
|
||||
def test_default(self):
|
||||
ip_filter = IPFilter.default()
|
||||
assert isinstance(ip_filter, IPFilter)
|
||||
assert len(ip_filter._allowed_ips) == 5116
|
||||
assert "91.108.4.50" in ip_filter
|
||||
assert "149.154.160.20" in ip_filter
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
"ip,ip_range",
|
||||
[
|
||||
["127.0.0.1", {IPv4Address("127.0.0.1")}],
|
||||
["91.108.4.0/22", set(IPv4Network("91.108.4.0/22").hosts())],
|
||||
[IPv4Address("91.108.4.5"), {IPv4Address("91.108.4.5")}],
|
||||
[IPv4Network("91.108.4.0/22"), set(IPv4Network("91.108.4.0/22").hosts())],
|
||||
[42, set()],
|
||||
],
|
||||
)
|
||||
def test_allow_ip(self, ip, ip_range):
|
||||
ip_filter = IPFilter()
|
||||
if not ip_range:
|
||||
with pytest.raises(ValueError):
|
||||
ip_filter.allow_ip(ip)
|
||||
else:
|
||||
ip_filter.allow_ip(ip)
|
||||
assert ip_filter._allowed_ips == ip_range
|
||||
Loading…
Add table
Add a link
Reference in a new issue