2021-02-13 22:07:37 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2024-02-19 20:06:25 +01:00
|
|
|
# Copyright (C) 2015-2024
|
2021-02-13 22:07:37 +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/].
|
|
|
|
|
|
|
|
"""
|
|
|
|
This file tests the case that PTB was installed *without* the optional dependency `passport`.
|
|
|
|
Currently this only means that cryptography is not installed.
|
|
|
|
|
|
|
|
Because imports in pytest are intricate, we just run
|
|
|
|
pytest -k test_no_passport.py
|
|
|
|
|
2022-10-31 10:12:18 +01:00
|
|
|
with the TEST_WITH_OPT_DEPS environment variable set to False in addition to the regular test suite
|
2021-02-13 22:07:37 +01:00
|
|
|
"""
|
|
|
|
import pytest
|
|
|
|
|
2024-09-13 19:10:09 +02:00
|
|
|
import telegram
|
2023-03-25 19:18:04 +01:00
|
|
|
from telegram._passport import credentials
|
2023-02-22 20:19:46 +01:00
|
|
|
from tests.auxil.envvars import TEST_WITH_OPT_DEPS
|
2021-02-13 22:07:37 +01:00
|
|
|
|
|
|
|
|
2022-10-31 10:12:18 +01:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
TEST_WITH_OPT_DEPS, reason="Only relevant if the optional dependency is not installed"
|
|
|
|
)
|
2023-02-11 10:45:17 +01:00
|
|
|
class TestNoPassportWithoutRequest:
|
|
|
|
def test_bot_init(self, bot_info):
|
2021-02-13 22:07:37 +01:00
|
|
|
with pytest.raises(RuntimeError, match="passport"):
|
2024-09-13 19:10:09 +02:00
|
|
|
telegram.Bot(bot_info["token"], private_key=1, private_key_password=2)
|
2021-02-13 22:07:37 +01:00
|
|
|
|
2023-02-11 10:45:17 +01:00
|
|
|
def test_credentials_decrypt(self):
|
2021-02-13 22:07:37 +01:00
|
|
|
with pytest.raises(RuntimeError, match="passport"):
|
|
|
|
credentials.decrypt(1, 1, 1)
|
|
|
|
|
2023-02-11 10:45:17 +01:00
|
|
|
def test_encrypted_credentials_decrypted_secret(self):
|
2021-02-13 22:07:37 +01:00
|
|
|
ec = credentials.EncryptedCredentials("data", "hash", "secret")
|
|
|
|
with pytest.raises(RuntimeError, match="passport"):
|
|
|
|
ec.decrypted_secret
|