mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
Add TARGMAX test
This commit is contained in:
26
irctest/server_tests/isupport.py
Normal file
26
irctest/server_tests/isupport.py
Normal file
@ -0,0 +1,26 @@
|
||||
import re
|
||||
|
||||
from irctest import cases, runner
|
||||
|
||||
|
||||
class IsupportTestCase(cases.BaseServerTestCase):
|
||||
@cases.mark_specifications("Modern", "ircdocs")
|
||||
@cases.mark_isupport("TARGMAX")
|
||||
def testTargmax(self):
|
||||
"""
|
||||
"Format: TARGMAX=[<command>:[limit]{,<command>:[limit]}]"
|
||||
-- https://modern.ircdocs.horse/#targmax-parameter
|
||||
|
||||
"TARGMAX=[cmd:[number][,cmd:[number][,...]]]"
|
||||
-- https://defs.ircdocs.horse/defs/isupport.html#targmax
|
||||
"""
|
||||
self.connectClient("foo")
|
||||
|
||||
if "TARGMAX" not in self.server_support:
|
||||
raise runner.NotImplementedByController("TARGMAX")
|
||||
|
||||
parts = self.server_support["TARGMAX"].split(",")
|
||||
for part in parts:
|
||||
self.assertTrue(
|
||||
re.match("[A-Z]+:[0-9]*", part), "Invalid TARGMAX key:value: %r", part
|
||||
)
|
@ -52,6 +52,7 @@ class IsupportTokens(enum.Enum):
|
||||
BOT = "BOT"
|
||||
MONITOR = "MONITOR"
|
||||
STATUSMSG = "STATUSMSG"
|
||||
TARGMAX = "TARGMAX"
|
||||
|
||||
@classmethod
|
||||
def from_name(cls, name: str) -> IsupportTokens:
|
||||
|
@ -34,5 +34,6 @@ markers =
|
||||
BOT
|
||||
MONITOR
|
||||
STATUSMSG
|
||||
TARGMAX
|
||||
|
||||
python_classes = *TestCase Test*
|
||||
|
Reference in New Issue
Block a user