From 61fb28728065990e1f82fee56fa8fcc593037a51 Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Wed, 9 Aug 2023 09:00:51 -0700 Subject: [PATCH] fix nonexistent user PRIVMSG test (#212) * fix nonexistent user PRIVMSG test * fix single-element tupling issue * test the ERR_NOSUCHNICK params * use patma --- irctest/server_tests/messages.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/irctest/server_tests/messages.py b/irctest/server_tests/messages.py index 8282ee2..441446d 100644 --- a/irctest/server_tests/messages.py +++ b/irctest/server_tests/messages.py @@ -4,6 +4,7 @@ The PRIVMSG and NOTICE commands. from irctest import cases from irctest.numerics import ERR_INPUTTOOLONG +from irctest.patma import ANYSTR class PrivmsgTestCase(cases.BaseServerTestCase): @@ -45,12 +46,12 @@ class PrivmsgTestCase(cases.BaseServerTestCase): @cases.mark_specifications("RFC1459", "RFC2812") def testPrivmsgNonexistentUser(self): - """https://tools.ietf.org/html/rfc2812#section-3.3.1""" + """""" self.connectClient("foo") self.sendLine(1, "PRIVMSG bar :hey there!") msg = self.getMessage(1) - # ERR_NOSUCHNICK - self.assertIn(msg.command, ("401")) + # ERR_NOSUCHNICK: 401 :No such nick + self.assertMessageMatch(msg, command="401", params=["foo", "bar", ANYSTR]) class NoticeTestCase(cases.BaseServerTestCase):