From f538b4ae6a9ab898f91d2091b9937780cebeecc8 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Fri, 26 May 2023 18:50:00 +0200 Subject: [PATCH] Add testOpRedactNonExistant --- irctest/server_tests/redaction.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/irctest/server_tests/redaction.py b/irctest/server_tests/redaction.py index be6407e..e658bef 100644 --- a/irctest/server_tests/redaction.py +++ b/irctest/server_tests/redaction.py @@ -2,6 +2,8 @@ `IRCv3 draft message redaction `_ """ +import uuid + from irctest import cases from irctest.patma import ANYDICT, ANYSTR, StrRe @@ -188,3 +190,18 @@ class RedactTestCase(cases.BaseServerTestCase): else: # Server removed the message entirely pass + + def testOpRedactNonExistant(self): + """Channel op writes a message and redacts a random non-existant id.""" + self._setupRedactTest(redacteeId=1, redacteeNick="chanop") + + nonexistent_msgid = str(uuid.uuid4()) + + self.sendLine(1, f"REDACT #chan {nonexistent_msgid} :oops") + self.assertMessageMatch( + self.getMessage(1), + command="FAIL", + params=["REDACT", "UNKNOWN_MSGID", "#chan", nonexistent_msgid, ANYSTR], + ) + + self.assertEqual(self.getMessages(2), [])