mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
137 lines
4.6 KiB
Python
137 lines
4.6 KiB
Python
from irctest import cases
|
|
from irctest.numerics import RPL_AWAY, RPL_NOWAWAY, RPL_UNAWAY, RPL_USERHOST
|
|
from irctest.patma import StrRe
|
|
|
|
|
|
class AwayTestCase(cases.BaseServerTestCase):
|
|
@cases.mark_specifications("RFC2812", "Modern")
|
|
def testAway(self):
|
|
self.connectClient("bar")
|
|
self.sendLine(1, "AWAY :I'm not here right now")
|
|
replies = self.getMessages(1)
|
|
self.assertIn(RPL_NOWAWAY, [msg.command for msg in replies])
|
|
|
|
self.connectClient("qux")
|
|
self.sendLine(2, "PRIVMSG bar :what's up")
|
|
self.assertMessageMatch(
|
|
self.getMessage(2),
|
|
command=RPL_AWAY,
|
|
params=["qux", "bar", "I'm not here right now"],
|
|
)
|
|
|
|
self.sendLine(1, "AWAY")
|
|
replies = self.getMessages(1)
|
|
self.assertIn(RPL_UNAWAY, [msg.command for msg in replies])
|
|
|
|
self.sendLine(2, "PRIVMSG bar :what's up")
|
|
replies = self.getMessages(2)
|
|
self.assertEqual(len(replies), 0)
|
|
|
|
@cases.mark_specifications("Modern")
|
|
def testAwayAck(self):
|
|
"""
|
|
"The server acknowledges the change in away status by returning the
|
|
`RPL_NOWAWAY` and `RPL_UNAWAY` numerics."
|
|
-- https://github.com/ircdocs/modern-irc/pull/100
|
|
"""
|
|
self.connectClient("bar")
|
|
self.sendLine(1, "AWAY :I'm not here right now")
|
|
replies = self.getMessages(1)
|
|
self.assertIn(RPL_NOWAWAY, [msg.command for msg in replies])
|
|
|
|
self.sendLine(1, "AWAY")
|
|
replies = self.getMessages(1)
|
|
self.assertIn(RPL_UNAWAY, [msg.command for msg in replies])
|
|
|
|
@cases.mark_specifications("Modern")
|
|
def testAwayPrivmsg(self):
|
|
"""
|
|
"Servers SHOULD notify clients when a user they're interacting with
|
|
is away when relevant"
|
|
-- https://github.com/ircdocs/modern-irc/pull/100
|
|
|
|
"<client> <nick> :<message>"
|
|
-- https://modern.ircdocs.horse/#rplaway-301
|
|
"""
|
|
self.connectClient("bar")
|
|
self.connectClient("qux")
|
|
|
|
self.sendLine(2, "PRIVMSG bar :what's up")
|
|
self.assertEqual(self.getMessages(2), [])
|
|
|
|
self.sendLine(1, "AWAY :I'm not here right now")
|
|
replies = self.getMessages(1)
|
|
self.assertIn(RPL_NOWAWAY, [msg.command for msg in replies])
|
|
|
|
self.sendLine(2, "PRIVMSG bar :what's up")
|
|
self.assertMessageMatch(
|
|
self.getMessage(2),
|
|
command=RPL_AWAY,
|
|
params=["qux", "bar", "I'm not here right now"],
|
|
)
|
|
|
|
@cases.mark_specifications("Modern")
|
|
def testAwayWhois(self):
|
|
"""
|
|
"Servers SHOULD notify clients when a user they're interacting with
|
|
is away when relevant"
|
|
-- https://github.com/ircdocs/modern-irc/pull/100
|
|
|
|
"<client> <nick> :<message>"
|
|
-- https://modern.ircdocs.horse/#rplaway-301
|
|
"""
|
|
self.connectClient("bar")
|
|
self.connectClient("qux")
|
|
|
|
self.sendLine(2, "WHOIS bar")
|
|
msgs = [msg for msg in self.getMessages(2) if msg.command == RPL_AWAY]
|
|
self.assertEqual(
|
|
len(msgs),
|
|
0,
|
|
fail_msg="Expected no RPL_AWAY (301), got: {}",
|
|
extra_format=(msgs,),
|
|
)
|
|
|
|
self.sendLine(1, "AWAY :I'm not here right now")
|
|
replies = self.getMessages(1)
|
|
self.assertIn(RPL_NOWAWAY, [msg.command for msg in replies])
|
|
|
|
self.sendLine(2, "WHOIS bar")
|
|
msgs = [msg for msg in self.getMessages(2) if msg.command == RPL_AWAY]
|
|
self.assertEqual(
|
|
len(msgs),
|
|
1,
|
|
fail_msg="Expected one RPL_AWAY (301), got: {}",
|
|
extra_format=(msgs,),
|
|
)
|
|
self.assertMessageMatch(
|
|
msgs[0], command=RPL_AWAY, params=["qux", "bar", "I'm not here right now"]
|
|
)
|
|
|
|
@cases.mark_specifications("Modern")
|
|
def testAwayUserhost(self):
|
|
"""
|
|
"Servers SHOULD notify clients when a user they're interacting with
|
|
is away when relevant"
|
|
-- https://github.com/ircdocs/modern-irc/pull/100
|
|
|
|
"<client> <nick> :<message>"
|
|
-- https://modern.ircdocs.horse/#rplaway-301
|
|
"""
|
|
self.connectClient("bar")
|
|
|
|
self.connectClient("qux")
|
|
self.sendLine(2, "USERHOST bar")
|
|
self.assertMessageMatch(
|
|
self.getMessage(2), command=RPL_USERHOST, params=["qux", StrRe(r"bar=\+.*")]
|
|
)
|
|
|
|
self.sendLine(1, "AWAY :I'm not here right now")
|
|
replies = self.getMessages(1)
|
|
self.assertIn(RPL_NOWAWAY, [msg.command for msg in replies])
|
|
|
|
self.sendLine(2, "USERHOST bar")
|
|
self.assertMessageMatch(
|
|
self.getMessage(2), command=RPL_USERHOST, params=["qux", StrRe(r"bar=-.*")]
|
|
)
|