mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
* I know this needs a changelog entry and docs still * update tests for new behavior * update docs, filter; add changelog * Ready for review * stop fetching the same Audit logs when the bot is the mod * I forgot to press save * fix a comprehension * Fix AttributeError * And the other place that happens * timing fixes
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
import pytest
|
|
|
|
from redbot.pytest.mod import *
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_modlog_register_casetype(mod):
|
|
ct = {"name": "ban", "default_setting": True, "image": ":hammer:", "case_str": "Ban"}
|
|
casetype = await mod.register_casetype(**ct)
|
|
assert casetype is not None
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_modlog_case_create(mod, ctx, member_factory):
|
|
from datetime import datetime as dt
|
|
|
|
# Run casetype register test to register casetype in this test too
|
|
await test_modlog_register_casetype(mod)
|
|
|
|
usr = member_factory.get()
|
|
guild = ctx.guild
|
|
bot = ctx.bot
|
|
case_type = "ban"
|
|
moderator = ctx.author
|
|
reason = "Test 12345"
|
|
created_at = dt.utcnow()
|
|
case = await mod.create_case(bot, guild, created_at, case_type, usr, moderator, reason)
|
|
assert case is not None
|
|
assert case.user == usr
|
|
assert case.action_type == case_type
|
|
assert case.moderator == moderator
|
|
assert case.reason == reason
|
|
assert case.created_at == int(created_at.timestamp())
|
|
|
|
|
|
@pytest.mark.asyncio
|
|
async def test_modlog_set_modlog_channel(mod, ctx):
|
|
await mod.set_modlog_channel(ctx.guild, ctx.channel)
|
|
assert await mod.get_modlog_channel(ctx.guild) == ctx.channel.id
|