Add support of Bot API 4.7. Bump version

This commit is contained in:
Alex Root Junior 2020-04-11 20:15:03 +03:00
parent 4cb9697cb4
commit 33003f2026
167 changed files with 996 additions and 504 deletions

View 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

View 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

View 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

View 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

View file

@ -46,6 +46,7 @@ class TestHelper:
class NotAHelperSubclass:
A = Item()
class TestHelperMode:
def test_helper_mode_all(self):
assert set(HelperMode.all()) == {

View file

@ -1,9 +1,6 @@
import pytest
from aiogram.utils.mixins import (
ContextInstanceMixin,
DataMixin,
)
from aiogram.utils.mixins import ContextInstanceMixin, DataMixin
class ContextObject(ContextInstanceMixin["ContextObject"]):