python-telegram-bot/tests/test_slots.py

61 lines
2.4 KiB
Python
Raw Normal View History

#!/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
# 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 importlib
2021-06-06 11:48:48 +02:00
import os
2021-12-05 09:42:14 +01:00
from pathlib import Path
import inspect
included = { # These modules/classes intentionally have __dict__.
'CallbackContext',
}
def test_class_has_slots_and_no_dict():
2021-12-05 09:42:14 +01:00
tg_paths = [p for p in Path('telegram').rglob("*.py") if 'vendor' not in str(p)]
for path in tg_paths:
2021-12-05 09:42:14 +01:00
if '__' in str(path): # Exclude __init__, __main__, etc
continue
mod_name = str(path)[:-3].replace(os.sep, '.')
module = importlib.import_module(mod_name) # import module to get classes in it.
for name, cls in inspect.getmembers(module, inspect.isclass):
if cls.__module__ != module.__name__ or any( # exclude 'imported' modules
x in name for x in {'__class__', '__init__', 'Queue', 'Webhook'}
):
continue
assert '__slots__' in cls.__dict__, f"class '{name}' in {path} doesn't have __slots__"
# if the class slots is a string, then mro_slots() iterates through that string (bad).
assert not isinstance(cls.__slots__, str), f"{name!r}s slots shouldn't be strings"
# specify if a certain module/class/base class should have dict-
if any(i in included for i in {cls.__module__, name, cls.__base__.__name__}):
assert '__dict__' in get_slots(cls), f"class {name!r} ({path}) has no __dict__"
continue
assert '__dict__' not in get_slots(cls), f"class '{name}' in {path} has __dict__"
def get_slots(_class):
2021-05-30 20:30:26 +02:00
slots = [attr for cls in _class.__mro__ if hasattr(cls, '__slots__') for attr in cls.__slots__]
return slots