aboutsummaryrefslogtreecommitdiffstats
path: root/tests/helpers.py (unfollow)
Commit message (Collapse)AuthorLines
2020-08-17Silence tests: mock RedisCachesGravatar MarkKoz-3/+2
2020-08-17Tests: optionally prevent autospec helper from passing mocksGravatar MarkKoz-19/+66
Not everything that's decorated needs the mocks that are patched. Being required to add the args to the test function anyway is annoying. It's especially bad if trying to decorate an entire test suite, as every test would need the args. Move the definition to a separate module to keep things cleaner.
2020-08-16Silence: rename _get_instance_vars to _init_cogGravatar MarkKoz-9/+9
It's a more accurate name since it also reschedules unsilences now.
2020-08-16Silence: remove event and await _get_instance_vars_task directlyGravatar MarkKoz-6/+2
The event is redundant because the task can be awaited directly to block until it's complete. If the task is already done, the await will instantly finish.
2020-08-16Silence: use aware datetimesGravatar MarkKoz-5/+6
`datetime.timestamp()` assumes naïve `datetime`s are in local time, so getting POSIX timestamps in UTC isn't easy for naïve ones. Technically, the timestamp's timezone doesn't matter if all code is on the same page and parsing it with the same timezone. Keeping it in the local timezone would be okay then, but I feel safer locking it to UTC explicitly.
2020-08-16Silence: reschedule silences on startupGravatar MarkKoz-10/+32
Remove the moderator notification when unloading the cog because. Its purpose was to remind to manually unsilence channels. However, this purpose is now obsolete due to automatic rescheduling. The notification was buggy anyway due to a race condition with the bot shutting down, and that'd be further complicated by having to asynchronously retrieve channels from the redis cache too. Fixes #1053
2020-08-16Silence: persist silenced channelsGravatar MarkKoz-0/+11
Can be used to support rescheduling.
2020-08-15Silence: add separate unsilence error for manually-silenced channelsGravatar MarkKoz-1/+9
It was confusing to reject a silence and an unsilence when overwrites were manually set to False. That's because it's contradictory to show an error stating it's already silence but then reject an unsilence with an error stating the channel isn't silenced.
2020-08-15Silence: notify admins if previous overwrites were not cachedGravatar MarkKoz-12/+25
Admins will have to manually check the default values used and adjust them if they aren't the desired values for that particular channel.
2020-08-15Silence: abort silence if there's already a scheduled taskGravatar MarkKoz-1/+1
Overwrites can be edited during a silence, which can result in the overwrites check failing. Checking the scheduler too ensures that a duplicate silence won't be scheduled.
2020-08-15Silence: revoke permissions to add reactionsGravatar MarkKoz-11/+27
No longer assume default values for the overwrites which are modified. Save and restore previous values `add_reactions` and `send_messages` via redis. When unsilencing, check if a channel is silenced via the redis cache rather than the channel's current overwrites to ensure the task is cancelled even if overwrites were manually edited.
2020-08-13Fix typo on the traceback tagGravatar AtieP-1/+1
See issue #1101