2020-04-11 20:15:03 +03:00
|
|
|
import pytest
|
|
|
|
|
|
2021-01-26 21:20:52 +02:00
|
|
|
from aiogram.methods import Request, SetMyCommands
|
|
|
|
|
from aiogram.types import BotCommand
|
2020-04-11 20:15:03 +03:00
|
|
|
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)
|
|
|
|
|
|
2021-01-26 21:20:52 +02:00
|
|
|
response: bool = await bot.set_my_commands(
|
|
|
|
|
commands=[],
|
|
|
|
|
)
|
2020-04-11 20:15:03 +03:00
|
|
|
request: Request = bot.get_request()
|
|
|
|
|
assert request.method == "setMyCommands"
|
|
|
|
|
# assert request.data == {}
|
|
|
|
|
assert response == prepare_result.result
|