2021-03-14 16:41:35 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2022-01-03 08:15:18 +01:00
|
|
|
# Copyright (C) 2015-2022
|
2021-03-14 16:41:35 +01:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU Lesser Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
|
|
|
|
2021-04-30 10:09:21 +02:00
|
|
|
import datetime as dtm
|
2022-05-05 09:27:54 +02:00
|
|
|
|
2021-03-14 16:41:35 +01:00
|
|
|
import pytest
|
|
|
|
|
2021-04-30 10:09:21 +02:00
|
|
|
from telegram import (
|
2022-05-05 09:27:54 +02:00
|
|
|
User,
|
2022-05-03 18:21:50 +02:00
|
|
|
VideoChatEnded,
|
|
|
|
VideoChatParticipantsInvited,
|
|
|
|
VideoChatScheduled,
|
2022-05-05 09:27:54 +02:00
|
|
|
VideoChatStarted,
|
2021-04-30 10:09:21 +02:00
|
|
|
)
|
2021-10-10 15:10:21 +02:00
|
|
|
from telegram._utils.datetime import to_timestamp
|
2021-03-14 16:41:35 +01:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="class")
|
|
|
|
def user1():
|
|
|
|
return User(first_name="Misses Test", id=123, is_bot=False)
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="class")
|
|
|
|
def user2():
|
|
|
|
return User(first_name="Mister Test", id=124, is_bot=False)
|
|
|
|
|
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
class TestVideoChatStarted:
|
2021-08-19 22:01:10 +02:00
|
|
|
def test_slot_behaviour(self, mro_slots):
|
2022-05-03 18:21:50 +02:00
|
|
|
action = VideoChatStarted()
|
2021-05-29 16:18:16 +02:00
|
|
|
for attr in action.__slots__:
|
|
|
|
assert getattr(action, attr, "err") != "err", f"got extra slot '{attr}'"
|
|
|
|
assert len(mro_slots(action)) == len(set(mro_slots(action))), "duplicate slot"
|
|
|
|
|
2021-03-14 16:41:35 +01:00
|
|
|
def test_de_json(self):
|
2022-05-03 18:21:50 +02:00
|
|
|
video_chat_started = VideoChatStarted.de_json({}, None)
|
|
|
|
assert isinstance(video_chat_started, VideoChatStarted)
|
2021-03-14 16:41:35 +01:00
|
|
|
|
|
|
|
def test_to_dict(self):
|
2022-05-03 18:21:50 +02:00
|
|
|
video_chat_started = VideoChatStarted()
|
|
|
|
video_chat_dict = video_chat_started.to_dict()
|
|
|
|
assert video_chat_dict == {}
|
2021-03-14 16:41:35 +01:00
|
|
|
|
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
class TestVideoChatEnded:
|
2021-03-14 16:41:35 +01:00
|
|
|
duration = 100
|
|
|
|
|
2021-08-19 22:01:10 +02:00
|
|
|
def test_slot_behaviour(self, mro_slots):
|
2022-05-03 18:21:50 +02:00
|
|
|
action = VideoChatEnded(8)
|
2021-05-29 16:18:16 +02:00
|
|
|
for attr in action.__slots__:
|
|
|
|
assert getattr(action, attr, "err") != "err", f"got extra slot '{attr}'"
|
|
|
|
assert len(mro_slots(action)) == len(set(mro_slots(action))), "duplicate slot"
|
|
|
|
|
2021-03-14 16:41:35 +01:00
|
|
|
def test_de_json(self):
|
|
|
|
json_dict = {"duration": self.duration}
|
2022-05-03 18:21:50 +02:00
|
|
|
video_chat_ended = VideoChatEnded.de_json(json_dict, None)
|
2021-03-14 16:41:35 +01:00
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
assert video_chat_ended.duration == self.duration
|
2021-03-14 16:41:35 +01:00
|
|
|
|
|
|
|
def test_to_dict(self):
|
2022-05-03 18:21:50 +02:00
|
|
|
video_chat_ended = VideoChatEnded(self.duration)
|
|
|
|
video_chat_dict = video_chat_ended.to_dict()
|
2021-03-14 16:41:35 +01:00
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
assert isinstance(video_chat_dict, dict)
|
|
|
|
assert video_chat_dict["duration"] == self.duration
|
2021-03-14 16:41:35 +01:00
|
|
|
|
|
|
|
def test_equality(self):
|
2022-05-03 18:21:50 +02:00
|
|
|
a = VideoChatEnded(100)
|
|
|
|
b = VideoChatEnded(100)
|
|
|
|
c = VideoChatEnded(50)
|
|
|
|
d = VideoChatStarted()
|
2021-03-14 16:41:35 +01:00
|
|
|
|
|
|
|
assert a == b
|
|
|
|
assert hash(a) == hash(b)
|
|
|
|
|
|
|
|
assert a != c
|
|
|
|
assert hash(a) != hash(c)
|
|
|
|
|
|
|
|
assert a != d
|
|
|
|
assert hash(a) != hash(d)
|
|
|
|
|
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
class TestVideoChatParticipantsInvited:
|
2021-08-29 18:17:06 +02:00
|
|
|
def test_slot_behaviour(self, mro_slots, user1):
|
2022-05-03 18:21:50 +02:00
|
|
|
action = VideoChatParticipantsInvited([user1])
|
2021-05-29 16:18:16 +02:00
|
|
|
for attr in action.__slots__:
|
|
|
|
assert getattr(action, attr, "err") != "err", f"got extra slot '{attr}'"
|
|
|
|
assert len(mro_slots(action)) == len(set(mro_slots(action))), "duplicate slot"
|
|
|
|
|
2021-03-14 16:41:35 +01:00
|
|
|
def test_de_json(self, user1, user2, bot):
|
|
|
|
json_data = {"users": [user1.to_dict(), user2.to_dict()]}
|
2022-05-03 18:21:50 +02:00
|
|
|
video_chat_participants = VideoChatParticipantsInvited.de_json(json_data, bot)
|
2021-03-14 16:41:35 +01:00
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
assert isinstance(video_chat_participants.users, list)
|
|
|
|
assert video_chat_participants.users[0] == user1
|
|
|
|
assert video_chat_participants.users[1] == user2
|
|
|
|
assert video_chat_participants.users[0].id == user1.id
|
|
|
|
assert video_chat_participants.users[1].id == user2.id
|
2021-03-14 16:41:35 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
@pytest.mark.parametrize("use_users", (True, False))
|
|
|
|
def test_to_dict(self, user1, user2, use_users):
|
2022-05-03 18:21:50 +02:00
|
|
|
video_chat_participants = VideoChatParticipantsInvited(
|
2022-04-24 12:38:09 +02:00
|
|
|
[user1, user2] if use_users else None
|
|
|
|
)
|
2022-05-03 18:21:50 +02:00
|
|
|
video_chat_dict = video_chat_participants.to_dict()
|
2021-03-14 16:41:35 +01:00
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
assert isinstance(video_chat_dict, dict)
|
2022-04-24 12:38:09 +02:00
|
|
|
if use_users:
|
2022-05-03 18:21:50 +02:00
|
|
|
assert video_chat_dict["users"] == [user1.to_dict(), user2.to_dict()]
|
|
|
|
assert video_chat_dict["users"][0]["id"] == user1.id
|
|
|
|
assert video_chat_dict["users"][1]["id"] == user2.id
|
2022-04-24 12:38:09 +02:00
|
|
|
else:
|
2022-05-03 18:21:50 +02:00
|
|
|
assert video_chat_dict == {}
|
2021-03-14 16:41:35 +01:00
|
|
|
|
|
|
|
def test_equality(self, user1, user2):
|
2022-05-03 18:21:50 +02:00
|
|
|
a = VideoChatParticipantsInvited([user1])
|
|
|
|
b = VideoChatParticipantsInvited([user1])
|
|
|
|
c = VideoChatParticipantsInvited([user1, user2])
|
|
|
|
d = VideoChatParticipantsInvited(None)
|
|
|
|
e = VideoChatStarted()
|
2021-03-14 16:41:35 +01:00
|
|
|
|
|
|
|
assert a == b
|
|
|
|
assert hash(a) == hash(b)
|
|
|
|
|
|
|
|
assert a != c
|
|
|
|
assert hash(a) != hash(c)
|
|
|
|
|
|
|
|
assert a != d
|
|
|
|
assert hash(a) != hash(d)
|
|
|
|
|
|
|
|
assert a != e
|
|
|
|
assert hash(a) != hash(e)
|
2021-04-30 10:09:21 +02:00
|
|
|
|
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
class TestVideoChatScheduled:
|
2022-05-05 09:27:54 +02:00
|
|
|
start_date = dtm.datetime.now(dtm.timezone.utc)
|
2021-04-30 10:09:21 +02:00
|
|
|
|
2021-08-19 22:01:10 +02:00
|
|
|
def test_slot_behaviour(self, mro_slots):
|
2022-05-03 18:21:50 +02:00
|
|
|
inst = VideoChatScheduled(self.start_date)
|
2021-05-29 16:18:16 +02:00
|
|
|
for attr in inst.__slots__:
|
|
|
|
assert getattr(inst, attr, "err") != "err", f"got extra slot '{attr}'"
|
|
|
|
assert len(mro_slots(inst)) == len(set(mro_slots(inst))), "duplicate slot"
|
|
|
|
|
2021-04-30 10:09:21 +02:00
|
|
|
def test_expected_values(self):
|
2022-05-05 09:27:54 +02:00
|
|
|
assert VideoChatScheduled(self.start_date).start_date == self.start_date
|
2021-04-30 10:09:21 +02:00
|
|
|
|
|
|
|
def test_de_json(self, bot):
|
2022-05-03 18:21:50 +02:00
|
|
|
assert VideoChatScheduled.de_json({}, bot=bot) is None
|
2021-04-30 10:09:21 +02:00
|
|
|
|
|
|
|
json_dict = {"start_date": to_timestamp(self.start_date)}
|
2022-05-03 18:21:50 +02:00
|
|
|
video_chat_scheduled = VideoChatScheduled.de_json(json_dict, bot)
|
2021-04-30 10:09:21 +02:00
|
|
|
|
2022-05-05 09:27:54 +02:00
|
|
|
assert abs(video_chat_scheduled.start_date - self.start_date) < dtm.timedelta(seconds=1)
|
2021-04-30 10:09:21 +02:00
|
|
|
|
|
|
|
def test_to_dict(self):
|
2022-05-03 18:21:50 +02:00
|
|
|
video_chat_scheduled = VideoChatScheduled(self.start_date)
|
|
|
|
video_chat_scheduled_dict = video_chat_scheduled.to_dict()
|
2021-04-30 10:09:21 +02:00
|
|
|
|
2022-05-03 18:21:50 +02:00
|
|
|
assert isinstance(video_chat_scheduled_dict, dict)
|
|
|
|
assert video_chat_scheduled_dict["start_date"] == to_timestamp(self.start_date)
|
2021-04-30 10:09:21 +02:00
|
|
|
|
|
|
|
def test_equality(self):
|
2022-05-03 18:21:50 +02:00
|
|
|
a = VideoChatScheduled(self.start_date)
|
|
|
|
b = VideoChatScheduled(self.start_date)
|
|
|
|
c = VideoChatScheduled(dtm.datetime.utcnow() + dtm.timedelta(seconds=5))
|
|
|
|
d = VideoChatStarted()
|
2021-04-30 10:09:21 +02:00
|
|
|
|
|
|
|
assert a == b
|
|
|
|
assert hash(a) == hash(b)
|
|
|
|
|
|
|
|
assert a != c
|
|
|
|
assert hash(a) != hash(c)
|
|
|
|
|
|
|
|
assert a != d
|
|
|
|
assert hash(a) != hash(d)
|