mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 23:09:48 +00:00
Add test for multi-target WHOWAS (#141)
* Add test for multi-target WHOWAS I don't think anyone implements it; let's see * Skip on Bahamut
This commit is contained in:
2
Makefile
2
Makefile
@ -14,6 +14,7 @@ ANOPE_SELECTORS := \
|
|||||||
# buffering tests cannot pass because of issues with UTF-8 handling: https://github.com/DALnet/bahamut/issues/196
|
# buffering tests cannot pass because of issues with UTF-8 handling: https://github.com/DALnet/bahamut/issues/196
|
||||||
# mask tests in test_who.py fail because they are not implemented.
|
# mask tests in test_who.py fail because they are not implemented.
|
||||||
# some HelpTestCase::*[HELP] tests fail because Bahamut forwards /HELP to HelpServ (but not /HELPOP)
|
# some HelpTestCase::*[HELP] tests fail because Bahamut forwards /HELP to HelpServ (but not /HELPOP)
|
||||||
|
# testWhowasMultiTarget fails because Bahamut returns the results in query order instead of chronological order
|
||||||
BAHAMUT_SELECTORS := \
|
BAHAMUT_SELECTORS := \
|
||||||
not Ergo \
|
not Ergo \
|
||||||
and not deprecated \
|
and not deprecated \
|
||||||
@ -23,6 +24,7 @@ BAHAMUT_SELECTORS := \
|
|||||||
and not (testWho and not whois and mask) \
|
and not (testWho and not whois and mask) \
|
||||||
and not testWhoStar \
|
and not testWhoStar \
|
||||||
and (not HelpTestCase or HELPOP) \
|
and (not HelpTestCase or HELPOP) \
|
||||||
|
and not testWhowasMultiTarget \
|
||||||
$(EXTRA_SELECTORS)
|
$(EXTRA_SELECTORS)
|
||||||
|
|
||||||
# testQuitErrors is very flaky
|
# testQuitErrors is very flaky
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
from irctest import cases
|
import pytest
|
||||||
|
|
||||||
|
from irctest import cases, runner
|
||||||
from irctest.exceptions import ConnectionClosed
|
from irctest.exceptions import ConnectionClosed
|
||||||
from irctest.numerics import (
|
from irctest.numerics import (
|
||||||
ERR_NONICKNAMEGIVEN,
|
ERR_NONICKNAMEGIVEN,
|
||||||
@ -265,3 +267,81 @@ class WhowasTestCase(cases.BaseServerTestCase):
|
|||||||
command=RPL_ENDOFWHOWAS,
|
command=RPL_ENDOFWHOWAS,
|
||||||
params=["nick1", "nick2", ANYSTR],
|
params=["nick1", "nick2", ANYSTR],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@cases.mark_specifications("RFC2812")
|
||||||
|
@cases.mark_isupport("TARGMAX")
|
||||||
|
@pytest.mark.parametrize("targets", ["nick2,nick3", "nick3,nick2"])
|
||||||
|
def testWhowasMultiTarget(self, targets):
|
||||||
|
"""
|
||||||
|
https://datatracker.ietf.org/doc/html/rfc2812#section-3.6.3
|
||||||
|
"""
|
||||||
|
self.connectClient("nick1")
|
||||||
|
|
||||||
|
targmax = dict(
|
||||||
|
item.split(":", 1)
|
||||||
|
for item in self.server_support.get("TARGMAX", "").split(",")
|
||||||
|
if item
|
||||||
|
)
|
||||||
|
if targmax.get("WHOWAS", "1") == "1":
|
||||||
|
raise runner.NotImplementedByController("Multi-target WHOWAS")
|
||||||
|
|
||||||
|
self.connectClient("nick2", ident="ident2")
|
||||||
|
self.sendLine(2, "QUIT :bye")
|
||||||
|
try:
|
||||||
|
self.getMessages(2)
|
||||||
|
except ConnectionClosed:
|
||||||
|
pass
|
||||||
|
|
||||||
|
self.connectClient("nick3", ident="ident3")
|
||||||
|
self.sendLine(3, "QUIT :bye")
|
||||||
|
try:
|
||||||
|
self.getMessages(3)
|
||||||
|
except ConnectionClosed:
|
||||||
|
pass
|
||||||
|
|
||||||
|
self.sendLine(1, f"WHOWAS {targets}")
|
||||||
|
|
||||||
|
messages = self.getMessages(1)
|
||||||
|
|
||||||
|
self.assertMessageMatch(
|
||||||
|
messages.pop(0),
|
||||||
|
command=RPL_WHOWASUSER,
|
||||||
|
params=[
|
||||||
|
"nick1",
|
||||||
|
"nick3",
|
||||||
|
StrRe("~?ident3"),
|
||||||
|
ANYSTR,
|
||||||
|
"*",
|
||||||
|
"Realname",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
while messages[0].command in (RPL_WHOISACTUALLY, RPL_WHOISSERVER):
|
||||||
|
# don't care
|
||||||
|
messages.pop(0)
|
||||||
|
|
||||||
|
# nick2 with ident2
|
||||||
|
self.assertMessageMatch(
|
||||||
|
messages.pop(0),
|
||||||
|
command=RPL_WHOWASUSER,
|
||||||
|
params=[
|
||||||
|
"nick1",
|
||||||
|
"nick2",
|
||||||
|
StrRe("~?ident2"),
|
||||||
|
ANYSTR,
|
||||||
|
"*",
|
||||||
|
"Realname",
|
||||||
|
],
|
||||||
|
)
|
||||||
|
if messages[0].command == RPL_WHOISACTUALLY:
|
||||||
|
# don't care
|
||||||
|
messages.pop(0)
|
||||||
|
while messages[0].command in (RPL_WHOISACTUALLY, RPL_WHOISSERVER):
|
||||||
|
# don't care
|
||||||
|
messages.pop(0)
|
||||||
|
|
||||||
|
self.assertMessageMatch(
|
||||||
|
messages.pop(0),
|
||||||
|
command=RPL_ENDOFWHOWAS,
|
||||||
|
params=["nick1", targets, ANYSTR],
|
||||||
|
fail_msg=f"Last message was not RPL_ENDOFWHOWAS ({RPL_ENDOFWHOWAS})",
|
||||||
|
)
|
||||||
|
Reference in New Issue
Block a user