mirror of
https://github.com/aiogram/aiogram.git
synced 2025-12-12 02:03:04 +00:00
parent
b8893c0971
commit
70088cdd65
3 changed files with 41 additions and 0 deletions
|
|
@ -1,3 +1,7 @@
|
|||
from typing import Optional
|
||||
|
||||
from pytest import mark, param
|
||||
|
||||
from aiogram.types import Chat
|
||||
|
||||
|
||||
|
|
@ -15,3 +19,24 @@ class TestChat:
|
|||
method = chat.unban_sender_chat(sender_chat_id=-1337)
|
||||
assert method.chat_id == chat.id
|
||||
assert method.sender_chat_id == -1337
|
||||
|
||||
@mark.parametrize(
|
||||
"first,last,title,chat_type,result",
|
||||
[
|
||||
param("First", None, None, "private", "First", id="private_first_only"),
|
||||
param("First", "Last", None, "private", "First Last", id="private_with_last"),
|
||||
param(None, None, "Title", "group", "Title", id="group_with_title"),
|
||||
param(None, None, "Title", "supergroup", "Title", id="supergroup_with_title"),
|
||||
param(None, None, "Title", "channel", "Title", id="channel_with_title"),
|
||||
],
|
||||
)
|
||||
def test_full_name(
|
||||
self,
|
||||
first: Optional[str],
|
||||
last: Optional[str],
|
||||
title: Optional[str],
|
||||
chat_type: str,
|
||||
result: str,
|
||||
):
|
||||
chat = Chat(id=42, first_name=first, last_name=last, title=title, type=chat_type)
|
||||
assert chat.full_name == result
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue