diff options
| author | 2022-09-14 20:58:02 +0100 | |
|---|---|---|
| committer | 2022-09-14 20:58:02 +0100 | |
| commit | 15e0491a3ba533a2423d44b415de355d1152f84c (patch) | |
| tree | ec4d951b1a23713b35840d6db7d051c4a48750e0 /tests/base.py | |
| parent | Update docstrings & comment. (diff) | |
| parent | Merge branch 'main' into bot-2231-bug (diff) | |
Merge remote-tracking branch 'origin/bot-2231-bug' into bot-2231-bug
Diffstat (limited to '')
| -rw-r--r-- | tests/base.py | 24 | 
1 files changed, 24 insertions, 0 deletions
| diff --git a/tests/base.py b/tests/base.py index 5e304ea9d..4863a1821 100644 --- a/tests/base.py +++ b/tests/base.py @@ -4,6 +4,7 @@ from contextlib import contextmanager  from typing import Dict  import discord +from async_rediscache import RedisSession  from discord.ext import commands  from bot.log import get_logger @@ -104,3 +105,26 @@ class CommandTestCase(unittest.IsolatedAsyncioTestCase):              await cmd.can_run(ctx)          self.assertCountEqual(permissions.keys(), cm.exception.missing_permissions) + + +class RedisTestCase(unittest.IsolatedAsyncioTestCase): +    """ +    Use this as a base class for any test cases that require a redis session. + +    This will prepare a fresh redis instance for each test function, and will +    not make any assertions on its own. Tests can mutate the instance as they wish. +    """ + +    session = None + +    async def flush(self): +        """Flush everything from the redis database to prevent carry-overs between tests.""" +        await self.session.client.flushall() + +    async def asyncSetUp(self): +        self.session = await RedisSession(use_fakeredis=True).connect() +        await self.flush() + +    async def asyncTearDown(self): +        if self.session: +            await self.session.client.close() | 
