From 15d21f4ee48d52ff69bca671080b0a8c6895517a Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 28 Aug 2021 18:43:08 +0200 Subject: [PATCH] Exhaustively test AWAY. --- irctest/server_tests/away.py | 113 ++++++++++++++++++++++++++++++++++- 1 file changed, 111 insertions(+), 2 deletions(-) diff --git a/irctest/server_tests/away.py b/irctest/server_tests/away.py index 4abde7a..7b24a08 100644 --- a/irctest/server_tests/away.py +++ b/irctest/server_tests/away.py @@ -1,9 +1,10 @@ from irctest import cases -from irctest.numerics import RPL_AWAY, RPL_NOWAWAY, RPL_UNAWAY +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") + @cases.mark_specifications("RFC2812", "Modern") def testAway(self): self.connectClient("bar") self.sendLine(1, "AWAY :I'm not here right now") @@ -25,3 +26,111 @@ class AwayTestCase(cases.BaseServerTestCase): 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 + + " :" + -- 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 + + " :" + -- 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 + + " :" + -- 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=-.*")] + )