2020-04-11 20:15:03 +03:00
|
|
|
from typing import List
|
|
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
2021-01-26 21:20:52 +02:00
|
|
|
from aiogram.methods import GetMyCommands, Request
|
|
|
|
|
from aiogram.types import BotCommand
|
2020-04-11 20:15:03 +03:00
|
|
|
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
|