mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
92ff6a8e2b
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> Co-authored-by: Hinrich Mahler <hinrich.mahler@freenet.de>
244 lines
8.8 KiB
Python
244 lines
8.8 KiB
Python
#!/usr/bin/env python
|
|
# A library that provides a Python interface to the Telegram Bot API
|
|
# Copyright (C) 2015-2021
|
|
# 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/].
|
|
import pytest
|
|
|
|
from datetime import datetime
|
|
|
|
|
|
from telegram import Poll, PollOption, PollAnswer, User, MessageEntity
|
|
from telegram.utils.helpers import to_timestamp
|
|
|
|
|
|
@pytest.fixture(scope="class")
|
|
def poll_option():
|
|
return PollOption(text=TestPollOption.text, voter_count=TestPollOption.voter_count)
|
|
|
|
|
|
class TestPollOption:
|
|
text = "test option"
|
|
voter_count = 3
|
|
|
|
def test_slot_behaviour(self, poll_option, mro_slots, recwarn):
|
|
for attr in poll_option.__slots__:
|
|
assert getattr(poll_option, attr, 'err') != 'err', f"got extra slot '{attr}'"
|
|
assert not poll_option.__dict__, f"got missing slot(s): {poll_option.__dict__}"
|
|
assert len(mro_slots(poll_option)) == len(set(mro_slots(poll_option))), "duplicate slot"
|
|
poll_option.custom, poll_option.text = 'should give warning', self.text
|
|
assert len(recwarn) == 1 and 'custom' in str(recwarn[0].message), recwarn.list
|
|
|
|
def test_de_json(self):
|
|
json_dict = {'text': self.text, 'voter_count': self.voter_count}
|
|
poll_option = PollOption.de_json(json_dict, None)
|
|
|
|
assert poll_option.text == self.text
|
|
assert poll_option.voter_count == self.voter_count
|
|
|
|
def test_to_dict(self, poll_option):
|
|
poll_option_dict = poll_option.to_dict()
|
|
|
|
assert isinstance(poll_option_dict, dict)
|
|
assert poll_option_dict['text'] == poll_option.text
|
|
assert poll_option_dict['voter_count'] == poll_option.voter_count
|
|
|
|
def test_equality(self):
|
|
a = PollOption('text', 1)
|
|
b = PollOption('text', 1)
|
|
c = PollOption('text_1', 1)
|
|
d = PollOption('text', 2)
|
|
e = Poll(123, 'question', ['O1', 'O2'], 1, False, True, Poll.REGULAR, True)
|
|
|
|
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)
|
|
|
|
|
|
@pytest.fixture(scope="class")
|
|
def poll_answer():
|
|
return PollAnswer(
|
|
poll_id=TestPollAnswer.poll_id, user=TestPollAnswer.user, option_ids=TestPollAnswer.poll_id
|
|
)
|
|
|
|
|
|
class TestPollAnswer:
|
|
poll_id = 'id'
|
|
user = User(1, '', False)
|
|
option_ids = [2]
|
|
|
|
def test_de_json(self):
|
|
json_dict = {
|
|
'poll_id': self.poll_id,
|
|
'user': self.user.to_dict(),
|
|
'option_ids': self.option_ids,
|
|
}
|
|
poll_answer = PollAnswer.de_json(json_dict, None)
|
|
|
|
assert poll_answer.poll_id == self.poll_id
|
|
assert poll_answer.user == self.user
|
|
assert poll_answer.option_ids == self.option_ids
|
|
|
|
def test_to_dict(self, poll_answer):
|
|
poll_answer_dict = poll_answer.to_dict()
|
|
|
|
assert isinstance(poll_answer_dict, dict)
|
|
assert poll_answer_dict['poll_id'] == poll_answer.poll_id
|
|
assert poll_answer_dict['user'] == poll_answer.user.to_dict()
|
|
assert poll_answer_dict['option_ids'] == poll_answer.option_ids
|
|
|
|
def test_equality(self):
|
|
a = PollAnswer(123, self.user, [2])
|
|
b = PollAnswer(123, User(1, 'first', False), [2])
|
|
c = PollAnswer(123, self.user, [1, 2])
|
|
d = PollAnswer(456, self.user, [2])
|
|
e = PollOption('Text', 1)
|
|
|
|
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)
|
|
|
|
|
|
@pytest.fixture(scope='class')
|
|
def poll():
|
|
return Poll(
|
|
TestPoll.id_,
|
|
TestPoll.question,
|
|
TestPoll.options,
|
|
TestPoll.total_voter_count,
|
|
TestPoll.is_closed,
|
|
TestPoll.is_anonymous,
|
|
TestPoll.type,
|
|
TestPoll.allows_multiple_answers,
|
|
explanation=TestPoll.explanation,
|
|
explanation_entities=TestPoll.explanation_entities,
|
|
open_period=TestPoll.open_period,
|
|
close_date=TestPoll.close_date,
|
|
)
|
|
|
|
|
|
class TestPoll:
|
|
id_ = 'id'
|
|
question = 'Test?'
|
|
options = [PollOption('test', 10), PollOption('test2', 11)]
|
|
total_voter_count = 0
|
|
is_closed = True
|
|
is_anonymous = False
|
|
type = Poll.REGULAR
|
|
allows_multiple_answers = True
|
|
explanation = (
|
|
b'\\U0001f469\\u200d\\U0001f469\\u200d\\U0001f467'
|
|
b'\\u200d\\U0001f467\\U0001f431http://google.com'
|
|
).decode('unicode-escape')
|
|
explanation_entities = [MessageEntity(13, 17, MessageEntity.URL)]
|
|
open_period = 42
|
|
close_date = datetime.utcnow()
|
|
|
|
def test_de_json(self, bot):
|
|
json_dict = {
|
|
'id': self.id_,
|
|
'question': self.question,
|
|
'options': [o.to_dict() for o in self.options],
|
|
'total_voter_count': self.total_voter_count,
|
|
'is_closed': self.is_closed,
|
|
'is_anonymous': self.is_anonymous,
|
|
'type': self.type,
|
|
'allows_multiple_answers': self.allows_multiple_answers,
|
|
'explanation': self.explanation,
|
|
'explanation_entities': [self.explanation_entities[0].to_dict()],
|
|
'open_period': self.open_period,
|
|
'close_date': to_timestamp(self.close_date),
|
|
}
|
|
poll = Poll.de_json(json_dict, bot)
|
|
|
|
assert poll.id == self.id_
|
|
assert poll.question == self.question
|
|
assert poll.options == self.options
|
|
assert poll.options[0].text == self.options[0].text
|
|
assert poll.options[0].voter_count == self.options[0].voter_count
|
|
assert poll.options[1].text == self.options[1].text
|
|
assert poll.options[1].voter_count == self.options[1].voter_count
|
|
assert poll.total_voter_count == self.total_voter_count
|
|
assert poll.is_closed == self.is_closed
|
|
assert poll.is_anonymous == self.is_anonymous
|
|
assert poll.type == self.type
|
|
assert poll.allows_multiple_answers == self.allows_multiple_answers
|
|
assert poll.explanation == self.explanation
|
|
assert poll.explanation_entities == self.explanation_entities
|
|
assert poll.open_period == self.open_period
|
|
assert pytest.approx(poll.close_date == self.close_date)
|
|
assert to_timestamp(poll.close_date) == to_timestamp(self.close_date)
|
|
|
|
def test_to_dict(self, poll):
|
|
poll_dict = poll.to_dict()
|
|
|
|
assert isinstance(poll_dict, dict)
|
|
assert poll_dict['id'] == poll.id
|
|
assert poll_dict['question'] == poll.question
|
|
assert poll_dict['options'] == [o.to_dict() for o in poll.options]
|
|
assert poll_dict['total_voter_count'] == poll.total_voter_count
|
|
assert poll_dict['is_closed'] == poll.is_closed
|
|
assert poll_dict['is_anonymous'] == poll.is_anonymous
|
|
assert poll_dict['type'] == poll.type
|
|
assert poll_dict['allows_multiple_answers'] == poll.allows_multiple_answers
|
|
assert poll_dict['explanation'] == poll.explanation
|
|
assert poll_dict['explanation_entities'] == [poll.explanation_entities[0].to_dict()]
|
|
assert poll_dict['open_period'] == poll.open_period
|
|
assert poll_dict['close_date'] == to_timestamp(poll.close_date)
|
|
|
|
def test_parse_entity(self, poll):
|
|
entity = MessageEntity(type=MessageEntity.URL, offset=13, length=17)
|
|
poll.explanation_entities = [entity]
|
|
|
|
assert poll.parse_explanation_entity(entity) == 'http://google.com'
|
|
|
|
def test_parse_entities(self, poll):
|
|
entity = MessageEntity(type=MessageEntity.URL, offset=13, length=17)
|
|
entity_2 = MessageEntity(type=MessageEntity.BOLD, offset=13, length=1)
|
|
poll.explanation_entities = [entity_2, entity]
|
|
|
|
assert poll.parse_explanation_entities(MessageEntity.URL) == {entity: 'http://google.com'}
|
|
assert poll.parse_explanation_entities() == {entity: 'http://google.com', entity_2: 'h'}
|
|
|
|
def test_equality(self):
|
|
a = Poll(123, 'question', ['O1', 'O2'], 1, False, True, Poll.REGULAR, True)
|
|
b = Poll(123, 'question', ['o1', 'o2'], 1, True, False, Poll.REGULAR, True)
|
|
c = Poll(456, 'question', ['o1', 'o2'], 1, True, False, Poll.REGULAR, True)
|
|
d = PollOption('Text', 1)
|
|
|
|
assert a == b
|
|
assert hash(a) == hash(b)
|
|
|
|
assert a != c
|
|
assert hash(a) != hash(c)
|
|
|
|
assert a != d
|
|
assert hash(a) != hash(d)
|