mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-08 17:13:56 +00:00
Add support of Bot API 4.7. Bump version
This commit is contained in:
parent
4cb9697cb4
commit
33003f2026
167 changed files with 996 additions and 504 deletions
27
tests/test_api/test_methods/test_get_my_commands.py
Normal file
27
tests/test_api/test_methods/test_get_my_commands.py
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
from typing import List
|
||||
|
||||
import pytest
|
||||
|
||||
from aiogram.api.methods import GetMyCommands, Request
|
||||
from aiogram.api.types import BotCommand
|
||||
from tests.mocked_bot import MockedBot
|
||||
|
||||
|
||||
class TestGetMyCommands:
|
||||
@pytest.mark.asyncio
|
||||
async def test_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(GetMyCommands, ok=True, result=None)
|
||||
|
||||
response: List[BotCommand] = await GetMyCommands()
|
||||
request: Request = bot.get_request()
|
||||
assert request.method == "getMyCommands"
|
||||
assert response == prepare_result.result
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_bot_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(GetMyCommands, ok=True, result=None)
|
||||
|
||||
response: List[BotCommand] = await bot.get_my_commands()
|
||||
request: Request = bot.get_request()
|
||||
assert request.method == "getMyCommands"
|
||||
assert response == prepare_result.result
|
||||
25
tests/test_api/test_methods/test_send_dice.py
Normal file
25
tests/test_api/test_methods/test_send_dice.py
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
import pytest
|
||||
|
||||
from aiogram.api.methods import Request, SendDice
|
||||
from aiogram.api.types import Message
|
||||
from tests.mocked_bot import MockedBot
|
||||
|
||||
|
||||
class TestSendDice:
|
||||
@pytest.mark.asyncio
|
||||
async def test_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(SendDice, ok=True, result=None)
|
||||
|
||||
response: Message = await SendDice(chat_id=42)
|
||||
request: Request = bot.get_request()
|
||||
assert request.method == "sendDice"
|
||||
assert response == prepare_result.result
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_bot_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(SendDice, ok=True, result=None)
|
||||
|
||||
response: Message = await bot.send_dice(chat_id=42)
|
||||
request: Request = bot.get_request()
|
||||
assert request.method == "sendDice"
|
||||
assert response == prepare_result.result
|
||||
28
tests/test_api/test_methods/test_set_my_commands.py
Normal file
28
tests/test_api/test_methods/test_set_my_commands.py
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
import pytest
|
||||
|
||||
from aiogram.api.methods import Request, SetMyCommands
|
||||
from aiogram.api.types import BotCommand
|
||||
from tests.mocked_bot import MockedBot
|
||||
|
||||
|
||||
class TestSetMyCommands:
|
||||
@pytest.mark.asyncio
|
||||
async def test_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(SetMyCommands, ok=True, result=None)
|
||||
|
||||
response: bool = await SetMyCommands(
|
||||
commands=[BotCommand(command="command", description="Bot command")],
|
||||
)
|
||||
request: Request = bot.get_request()
|
||||
assert request.method == "setMyCommands"
|
||||
assert response == prepare_result.result
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_bot_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(SetMyCommands, ok=True, result=None)
|
||||
|
||||
response: bool = await bot.set_my_commands(commands=[],)
|
||||
request: Request = bot.get_request()
|
||||
assert request.method == "setMyCommands"
|
||||
# assert request.data == {}
|
||||
assert response == prepare_result.result
|
||||
26
tests/test_api/test_methods/test_set_sticker_set_thumb.py
Normal file
26
tests/test_api/test_methods/test_set_sticker_set_thumb.py
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
import pytest
|
||||
|
||||
from aiogram.api.methods import Request, SetStickerSetThumb
|
||||
from tests.mocked_bot import MockedBot
|
||||
|
||||
|
||||
class TestSetStickerSetThumb:
|
||||
@pytest.mark.asyncio
|
||||
async def test_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(SetStickerSetThumb, ok=True, result=None)
|
||||
|
||||
response: bool = await SetStickerSetThumb(name="test", user_id=42)
|
||||
request: Request = bot.get_request()
|
||||
assert request.method == "setStickerSetThumb"
|
||||
# assert request.data == {}
|
||||
assert response == prepare_result.result
|
||||
|
||||
@pytest.mark.asyncio
|
||||
async def test_bot_method(self, bot: MockedBot):
|
||||
prepare_result = bot.add_result_for(SetStickerSetThumb, ok=True, result=None)
|
||||
|
||||
response: bool = await bot.set_sticker_set_thumb(name="test", user_id=42)
|
||||
request: Request = bot.get_request()
|
||||
assert request.method == "setStickerSetThumb"
|
||||
# assert request.data == {}
|
||||
assert response == prepare_result.result
|
||||
|
|
@ -46,6 +46,7 @@ class TestHelper:
|
|||
class NotAHelperSubclass:
|
||||
A = Item()
|
||||
|
||||
|
||||
class TestHelperMode:
|
||||
def test_helper_mode_all(self):
|
||||
assert set(HelperMode.all()) == {
|
||||
|
|
|
|||
|
|
@ -1,9 +1,6 @@
|
|||
import pytest
|
||||
|
||||
from aiogram.utils.mixins import (
|
||||
ContextInstanceMixin,
|
||||
DataMixin,
|
||||
)
|
||||
from aiogram.utils.mixins import ContextInstanceMixin, DataMixin
|
||||
|
||||
|
||||
class ContextObject(ContextInstanceMixin["ContextObject"]):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue