mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
24 lines
803 B
Python
24 lines
803 B
Python
"""
|
|
`Ergo <https://ergo.chat/>`_-specific tests of responses to DoS attacks
|
|
using long lines.
|
|
"""
|
|
|
|
from irctest import cases
|
|
|
|
|
|
class ReadqTestCase(cases.BaseServerTestCase):
|
|
@cases.mark_specifications("Ergo")
|
|
@cases.mark_capabilities("message-tags")
|
|
def testReadqTags(self):
|
|
self.connectClient("mallory", name="mallory", capabilities=["message-tags"])
|
|
self.joinChannel("mallory", "#test")
|
|
self.sendLine("mallory", "PRIVMSG #test " + "a" * 16384)
|
|
self.assertDisconnected("mallory")
|
|
|
|
@cases.mark_specifications("Ergo")
|
|
def testReadqNoTags(self):
|
|
self.connectClient("mallory", name="mallory")
|
|
self.joinChannel("mallory", "#test")
|
|
self.sendLine("mallory", "PRIVMSG #test " + "a" * 16384)
|
|
self.assertDisconnected("mallory")
|