diff options
| author | 2020-07-20 17:15:36 +0200 | |
|---|---|---|
| committer | 2020-07-20 17:15:36 +0200 | |
| commit | a8fccae048dec79a591f561b47c4ede9994e033c (patch) | |
| tree | f0504a266bb58ef0a3c309b782fdfc8459cf3656 /tests/helpers.py | |
| parent | Source: Split to multiple lines to fix too long line on error raising (diff) | |
| parent | Merge pull request #993 from python-discord/kwzrd/incidents (diff) | |
Merge branch 'master' into source-command
Diffstat (limited to 'tests/helpers.py')
| -rw-r--r-- | tests/helpers.py | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/tests/helpers.py b/tests/helpers.py index faa839370..facc4e1af 100644 --- a/tests/helpers.py +++ b/tests/helpers.py @@ -5,7 +5,7 @@ import itertools import logging import unittest.mock from asyncio import AbstractEventLoop -from typing import Iterable, Optional +from typing import Callable, Iterable, Optional import discord from aiohttp import ClientSession @@ -26,6 +26,24 @@ for logger in logging.Logger.manager.loggerDict.values(): logger.setLevel(logging.CRITICAL) +def autospec(target, *attributes: str, **kwargs) -> Callable: + """Patch multiple `attributes` of a `target` with autospecced mocks and `spec_set` as True.""" + # Caller's kwargs should take priority and overwrite the defaults. + kwargs = {'spec_set': True, 'autospec': True, **kwargs} + + # Import the target if it's a string. + # This is to support both object and string targets like patch.multiple. + if type(target) is str: + target = unittest.mock._importer(target) + + def decorator(func): + for attribute in attributes: + patcher = unittest.mock.patch.object(target, attribute, **kwargs) + func = patcher(func) + return func + return decorator + + class HashableMixin(discord.mixins.EqualityComparable): """ Mixin that provides similar hashing and equality functionality as discord.py's `Hashable` mixin. |