mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 23:09:48 +00:00
Add tests for WHOX. (#131)
This commit is contained in:
@ -647,6 +647,16 @@ class BaseServerTestCase(
|
|||||||
else:
|
else:
|
||||||
raise
|
raise
|
||||||
|
|
||||||
|
def authenticateClient(
|
||||||
|
self, client: TClientName, account: str, password: str
|
||||||
|
) -> None:
|
||||||
|
self.sendLine(client, "AUTHENTICATE PLAIN")
|
||||||
|
m = self.getRegistrationMessage(client)
|
||||||
|
self.assertMessageMatch(m, command="AUTHENTICATE", params=["+"])
|
||||||
|
self.sendLine(client, sasl_plain_blob(account, password))
|
||||||
|
m = self.getRegistrationMessage(client)
|
||||||
|
self.assertIn(m.command, ["900", "903"], str(m))
|
||||||
|
|
||||||
def connectClient(
|
def connectClient(
|
||||||
self,
|
self,
|
||||||
nick: str,
|
nick: str,
|
||||||
@ -670,12 +680,7 @@ class BaseServerTestCase(
|
|||||||
if password is not None:
|
if password is not None:
|
||||||
if "sasl" not in (capabilities or ()):
|
if "sasl" not in (capabilities or ()):
|
||||||
raise ValueError("Used 'password' option without sasl capbilitiy")
|
raise ValueError("Used 'password' option without sasl capbilitiy")
|
||||||
self.sendLine(client, "AUTHENTICATE PLAIN")
|
self.authenticateClient(client, account or nick, password)
|
||||||
m = self.getRegistrationMessage(client)
|
|
||||||
self.assertMessageMatch(m, command="AUTHENTICATE", params=["+"])
|
|
||||||
self.sendLine(client, sasl_plain_blob(account or nick, password))
|
|
||||||
m = self.getRegistrationMessage(client)
|
|
||||||
self.assertIn(m.command, ["900", "903"], str(m))
|
|
||||||
|
|
||||||
self.sendLine(client, "NICK {}".format(nick))
|
self.sendLine(client, "NICK {}".format(nick))
|
||||||
self.sendLine(client, "USER %s * * :Realname" % (ident,))
|
self.sendLine(client, "USER %s * * :Realname" % (ident,))
|
||||||
|
@ -86,6 +86,7 @@ RPL_ENDOFEXCEPTLIST = "349"
|
|||||||
RPL_VERSION = "351"
|
RPL_VERSION = "351"
|
||||||
RPL_WHOREPLY = "352"
|
RPL_WHOREPLY = "352"
|
||||||
RPL_NAMREPLY = "353"
|
RPL_NAMREPLY = "353"
|
||||||
|
RPL_WHOSPCRPL = "354"
|
||||||
RPL_LINKS = "364"
|
RPL_LINKS = "364"
|
||||||
RPL_ENDOFLINKS = "365"
|
RPL_ENDOFLINKS = "365"
|
||||||
RPL_ENDOFNAMES = "366"
|
RPL_ENDOFNAMES = "366"
|
||||||
|
@ -2,8 +2,8 @@ import re
|
|||||||
|
|
||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from irctest import cases
|
from irctest import cases, runner
|
||||||
from irctest.numerics import RPL_ENDOFWHO, RPL_WHOREPLY, RPL_YOUREOPER
|
from irctest.numerics import RPL_ENDOFWHO, RPL_WHOREPLY, RPL_WHOSPCRPL, RPL_YOUREOPER
|
||||||
from irctest.patma import ANYSTR, InsensitiveStr, StrRe
|
from irctest.patma import ANYSTR, InsensitiveStr, StrRe
|
||||||
|
|
||||||
|
|
||||||
@ -15,15 +15,22 @@ def realname_regexp(realname):
|
|||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
class WhoTestCase(cases.BaseServerTestCase, cases.OptionalityHelper):
|
class BaseWhoTestCase:
|
||||||
def _init(self):
|
def _init(self, auth=False):
|
||||||
self.nick = "coolNick"
|
self.nick = "coolNick"
|
||||||
self.username = "myusernam" # may be truncated if longer than this
|
self.username = "myusernam" # may be truncated if longer than this
|
||||||
self.realname = "My UniqueReal Name"
|
self.realname = "My UniqueReal Name"
|
||||||
|
|
||||||
self.addClient()
|
self.addClient()
|
||||||
|
if auth:
|
||||||
|
self.controller.registerUser(self, "coolAcct", "sesame")
|
||||||
|
self.requestCapabilities(1, ["sasl"], skip_if_cap_nak=True)
|
||||||
|
self.authenticateClient(1, "coolAcct", "sesame")
|
||||||
self.sendLine(1, f"NICK {self.nick}")
|
self.sendLine(1, f"NICK {self.nick}")
|
||||||
self.sendLine(1, f"USER {self.username} 0 * :{self.realname}")
|
self.sendLine(1, f"USER {self.username} 0 * :{self.realname}")
|
||||||
|
if auth:
|
||||||
|
self.sendLine(1, "CAP END")
|
||||||
|
self.getRegistrationMessage(1)
|
||||||
self.skipToWelcome(1)
|
self.skipToWelcome(1)
|
||||||
self.sendLine(1, "JOIN #chan")
|
self.sendLine(1, "JOIN #chan")
|
||||||
|
|
||||||
@ -69,6 +76,8 @@ class WhoTestCase(cases.BaseServerTestCase, cases.OptionalityHelper):
|
|||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
class WhoTestCase(BaseWhoTestCase, cases.BaseServerTestCase, cases.OptionalityHelper):
|
||||||
@cases.mark_specifications("Modern")
|
@cases.mark_specifications("Modern")
|
||||||
def testWhoStar(self):
|
def testWhoStar(self):
|
||||||
self._init()
|
self._init()
|
||||||
@ -323,3 +332,148 @@ class WhoTestCase(cases.BaseServerTestCase, cases.OptionalityHelper):
|
|||||||
command=RPL_ENDOFWHO,
|
command=RPL_ENDOFWHO,
|
||||||
params=["otherNick", InsensitiveStr(mask), ANYSTR],
|
params=["otherNick", InsensitiveStr(mask), ANYSTR],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@cases.mark_specifications("IRCv3")
|
||||||
|
@cases.mark_isupport("WHOX")
|
||||||
|
def testWhoxFull(self):
|
||||||
|
"""https://github.com/ircv3/ircv3-specifications/pull/482"""
|
||||||
|
self._testWhoxFull("%tcuihsnfdlaor,123")
|
||||||
|
|
||||||
|
@cases.mark_specifications("IRCv3")
|
||||||
|
@cases.mark_isupport("WHOX")
|
||||||
|
def testWhoxFullReversed(self):
|
||||||
|
"""https://github.com/ircv3/ircv3-specifications/pull/482"""
|
||||||
|
self._testWhoxFull("%" + "".join(reversed("tcuihsnfdlaor")) + ",123")
|
||||||
|
|
||||||
|
def _testWhoxFull(self, chars):
|
||||||
|
self._init()
|
||||||
|
if "WHOX" not in self.server_support:
|
||||||
|
raise runner.IsupportTokenNotSupported("WHOX")
|
||||||
|
|
||||||
|
self.sendLine(2, f"WHO coolNick {chars}")
|
||||||
|
messages = self.getMessages(2)
|
||||||
|
|
||||||
|
self.assertEqual(len(messages), 2, "Unexpected number of messages")
|
||||||
|
|
||||||
|
(reply, end) = messages
|
||||||
|
|
||||||
|
self.assertMessageMatch(
|
||||||
|
reply,
|
||||||
|
command=RPL_WHOSPCRPL,
|
||||||
|
params=[
|
||||||
|
"otherNick",
|
||||||
|
"123",
|
||||||
|
StrRe(r"(#chan|\*)"),
|
||||||
|
StrRe("~?myusernam"),
|
||||||
|
ANYSTR,
|
||||||
|
ANYSTR,
|
||||||
|
"My.Little.Server",
|
||||||
|
"coolNick",
|
||||||
|
StrRe("H@?"),
|
||||||
|
ANYSTR, # hopcount
|
||||||
|
StrRe("[0-9]"), # seconds idle
|
||||||
|
"0", # account name
|
||||||
|
ANYSTR, # op level
|
||||||
|
"My UniqueReal Name",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertMessageMatch(
|
||||||
|
end,
|
||||||
|
command=RPL_ENDOFWHO,
|
||||||
|
params=["otherNick", InsensitiveStr("coolNick"), ANYSTR],
|
||||||
|
)
|
||||||
|
|
||||||
|
def testWhoxToken(self):
|
||||||
|
"""https://github.com/ircv3/ircv3-specifications/pull/482"""
|
||||||
|
self._init()
|
||||||
|
if "WHOX" not in self.server_support:
|
||||||
|
raise runner.IsupportTokenNotSupported("WHOX")
|
||||||
|
|
||||||
|
self.sendLine(2, "WHO coolNick %tn,321")
|
||||||
|
messages = self.getMessages(2)
|
||||||
|
|
||||||
|
self.assertEqual(len(messages), 2, "Unexpected number of messages")
|
||||||
|
|
||||||
|
(reply, end) = messages
|
||||||
|
|
||||||
|
self.assertMessageMatch(
|
||||||
|
reply,
|
||||||
|
command=RPL_WHOSPCRPL,
|
||||||
|
params=[
|
||||||
|
"otherNick",
|
||||||
|
"321",
|
||||||
|
"coolNick",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertMessageMatch(
|
||||||
|
end,
|
||||||
|
command=RPL_ENDOFWHO,
|
||||||
|
params=["otherNick", InsensitiveStr("coolNick"), ANYSTR],
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@cases.mark_services
|
||||||
|
class WhoServicesTestCase(
|
||||||
|
BaseWhoTestCase, cases.BaseServerTestCase, cases.OptionalityHelper
|
||||||
|
):
|
||||||
|
@cases.mark_specifications("IRCv3")
|
||||||
|
@cases.mark_isupport("WHOX")
|
||||||
|
def testWhoxAccount(self):
|
||||||
|
self._init(auth=True)
|
||||||
|
if "WHOX" not in self.server_support:
|
||||||
|
raise runner.IsupportTokenNotSupported("WHOX")
|
||||||
|
|
||||||
|
self.sendLine(2, "WHO coolNick %na")
|
||||||
|
messages = self.getMessages(2)
|
||||||
|
|
||||||
|
self.assertEqual(len(messages), 2, "Unexpected number of messages")
|
||||||
|
|
||||||
|
(reply, end) = messages
|
||||||
|
|
||||||
|
self.assertMessageMatch(
|
||||||
|
reply,
|
||||||
|
command=RPL_WHOSPCRPL,
|
||||||
|
params=[
|
||||||
|
"otherNick",
|
||||||
|
"coolNick",
|
||||||
|
"coolAcct",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertMessageMatch(
|
||||||
|
end,
|
||||||
|
command=RPL_ENDOFWHO,
|
||||||
|
params=["otherNick", InsensitiveStr("coolNick"), ANYSTR],
|
||||||
|
)
|
||||||
|
|
||||||
|
@cases.mark_specifications("IRCv3")
|
||||||
|
@cases.mark_isupport("WHOX")
|
||||||
|
def testWhoxNoAccount(self):
|
||||||
|
self._init(auth=False)
|
||||||
|
if "WHOX" not in self.server_support:
|
||||||
|
raise runner.IsupportTokenNotSupported("WHOX")
|
||||||
|
|
||||||
|
self.sendLine(2, "WHO coolNick %na")
|
||||||
|
messages = self.getMessages(2)
|
||||||
|
|
||||||
|
self.assertEqual(len(messages), 2, "Unexpected number of messages")
|
||||||
|
|
||||||
|
(reply, end) = messages
|
||||||
|
|
||||||
|
self.assertMessageMatch(
|
||||||
|
reply,
|
||||||
|
command=RPL_WHOSPCRPL,
|
||||||
|
params=[
|
||||||
|
"otherNick",
|
||||||
|
"coolNick",
|
||||||
|
"0",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
|
self.assertMessageMatch(
|
||||||
|
end,
|
||||||
|
command=RPL_ENDOFWHO,
|
||||||
|
params=["otherNick", InsensitiveStr("coolNick"), ANYSTR],
|
||||||
|
)
|
||||||
|
@ -53,6 +53,7 @@ class IsupportTokens(enum.Enum):
|
|||||||
MONITOR = "MONITOR"
|
MONITOR = "MONITOR"
|
||||||
STATUSMSG = "STATUSMSG"
|
STATUSMSG = "STATUSMSG"
|
||||||
TARGMAX = "TARGMAX"
|
TARGMAX = "TARGMAX"
|
||||||
|
WHOX = "WHOX"
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def from_name(cls, name: str) -> IsupportTokens:
|
def from_name(cls, name: str) -> IsupportTokens:
|
||||||
|
@ -35,5 +35,6 @@ markers =
|
|||||||
MONITOR
|
MONITOR
|
||||||
STATUSMSG
|
STATUSMSG
|
||||||
TARGMAX
|
TARGMAX
|
||||||
|
WHOX
|
||||||
|
|
||||||
python_classes = *TestCase Test*
|
python_classes = *TestCase Test*
|
||||||
|
Reference in New Issue
Block a user