mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
Unreal stuff?
This commit is contained in:
@ -12,6 +12,8 @@ from irctest.patma import ANYDICT, ANYSTR, StrRe
|
|||||||
CAPABILITIES = [
|
CAPABILITIES = [
|
||||||
"message-tags",
|
"message-tags",
|
||||||
"echo-message",
|
"echo-message",
|
||||||
|
"batch",
|
||||||
|
"server-time",
|
||||||
"labeled-response",
|
"labeled-response",
|
||||||
"draft/message-redaction",
|
"draft/message-redaction",
|
||||||
]
|
]
|
||||||
@ -186,7 +188,7 @@ class ChannelRedactTestCase(cases.BaseServerTestCase):
|
|||||||
elif len(msgs) == 1:
|
elif len(msgs) == 1:
|
||||||
# Server replaced with the REDACT
|
# Server replaced with the REDACT
|
||||||
self.assertMessageMatch(
|
self.assertMessageMatch(
|
||||||
msgs[1],
|
msgs[0],
|
||||||
prefix=StrRe("sender!.*"),
|
prefix=StrRe("sender!.*"),
|
||||||
command="REDACT",
|
command="REDACT",
|
||||||
params=["#chan", msgid, "oops"],
|
params=["#chan", msgid, "oops"],
|
||||||
@ -232,11 +234,25 @@ class ChannelRedactTestCase(cases.BaseServerTestCase):
|
|||||||
self.getMessages(1)
|
self.getMessages(1)
|
||||||
|
|
||||||
self.sendLine(1, f"REDACT #otherChan {msgid} :oops")
|
self.sendLine(1, f"REDACT #otherChan {msgid} :oops")
|
||||||
|
|
||||||
|
msg = self.getMessage(1)
|
||||||
|
|
||||||
self.assertMessageMatch(
|
self.assertMessageMatch(
|
||||||
self.getMessage(1),
|
msg,
|
||||||
command="FAIL",
|
command="FAIL",
|
||||||
params=["REDACT", "UNKNOWN_MSGID", "#otherChan", msgid, ANYSTR],
|
|
||||||
)
|
)
|
||||||
|
if msg.params[1] == "UNKNOWN_MSGID":
|
||||||
|
self.assertMessageMatch(
|
||||||
|
msg,
|
||||||
|
command="FAIL",
|
||||||
|
params=["REDACT", "UNKNOWN_MSGID", "#otherChan", msgid, ANYSTR],
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
self.assertMessageMatch(
|
||||||
|
msg,
|
||||||
|
command="FAIL",
|
||||||
|
params=["REDACT", "REDACT_FORBIDDEN", "#otherChan", ANYSTR],
|
||||||
|
)
|
||||||
|
|
||||||
self.assertEqual(self.getMessages(2), [])
|
self.assertEqual(self.getMessages(2), [])
|
||||||
|
|
||||||
@ -244,6 +260,7 @@ class ChannelRedactTestCase(cases.BaseServerTestCase):
|
|||||||
@cases.mark_specifications("IRCv3")
|
@cases.mark_specifications("IRCv3")
|
||||||
@cases.mark_capabilities(*CAPABILITIES)
|
@cases.mark_capabilities(*CAPABILITIES)
|
||||||
@cases.mark_services
|
@cases.mark_services
|
||||||
|
@pytest.mark.private_chathistory
|
||||||
class PmRedactTestCase(cases.BaseServerTestCase):
|
class PmRedactTestCase(cases.BaseServerTestCase):
|
||||||
"""Tests REDACT command in private messages between authenticated accounts"""
|
"""Tests REDACT command in private messages between authenticated accounts"""
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user