mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 23:09:48 +00:00
@ -224,7 +224,19 @@ class JoinTestCase(cases.BaseServerTestCase):
|
|||||||
m = self.getMessage(1)
|
m = self.getMessage(1)
|
||||||
self.assertMessageEqual(m, command='TOPIC', params=['#chan', 'T0P1C'])
|
self.assertMessageEqual(m, command='TOPIC', params=['#chan', 'T0P1C'])
|
||||||
|
|
||||||
|
@cases.SpecificationSelector.requiredBySpecification('RFC2812')
|
||||||
|
def testTopicNonexistentChannel(self):
|
||||||
|
"""RFC2812 specifies ERR_NOTONCHANNEL as the correct response to TOPIC
|
||||||
|
on a nonexistent channel. The modern spec prefers ERR_NOSUCHCHANNEL.
|
||||||
|
|
||||||
|
<https://tools.ietf.org/html/rfc2812#section-3.2.4>
|
||||||
|
<http://modern.ircdocs.horse/#topic-message>
|
||||||
|
"""
|
||||||
|
self.connectClient('foo')
|
||||||
|
self.sendLine(1, 'TOPIC #chan')
|
||||||
|
m = self.getMessage(1)
|
||||||
|
# either 403 ERR_NOSUCHCHANNEL or 443 ERR_NOTONCHANNEL
|
||||||
|
self.assertIn(m.command, ('403', '443'))
|
||||||
|
|
||||||
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812')
|
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812')
|
||||||
def testListEmpty(self):
|
def testListEmpty(self):
|
||||||
@ -318,6 +330,15 @@ class JoinTestCase(cases.BaseServerTestCase):
|
|||||||
self.assertMessageEqual(m, command='KICK',
|
self.assertMessageEqual(m, command='KICK',
|
||||||
params=['#chan', 'bar', 'bye'])
|
params=['#chan', 'bar', 'bye'])
|
||||||
|
|
||||||
|
@cases.SpecificationSelector.requiredBySpecification('RFC2812')
|
||||||
|
def testKickNonexistentChannel(self):
|
||||||
|
"""“Kick command [...] Numeric replies: [...] ERR_NOSUCHCHANNEL."""
|
||||||
|
self.connectClient('foo')
|
||||||
|
self.sendLine(1, 'KICK #chan nick')
|
||||||
|
m = self.getMessage(1)
|
||||||
|
# should return ERR_NOSUCHCHANNEL
|
||||||
|
self.assertMessageEqual(m, command='403')
|
||||||
|
|
||||||
@cases.SpecificationSelector.requiredBySpecification('RFC2812')
|
@cases.SpecificationSelector.requiredBySpecification('RFC2812')
|
||||||
def testDoubleKickMessages(self):
|
def testDoubleKickMessages(self):
|
||||||
"""“The server MUST NOT send KICK messages with multiple channels or
|
"""“The server MUST NOT send KICK messages with multiple channels or
|
||||||
|
65
irctest/server_tests/test_messages.py
Normal file
65
irctest/server_tests/test_messages.py
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
"""
|
||||||
|
Section 3.2 of RFC 2812
|
||||||
|
<https://tools.ietf.org/html/rfc2812#section-3.3>
|
||||||
|
"""
|
||||||
|
|
||||||
|
from irctest import cases
|
||||||
|
from irctest import client_mock
|
||||||
|
from irctest import runner
|
||||||
|
from irctest.irc_utils import ambiguities
|
||||||
|
from irctest.irc_utils.message_parser import Message
|
||||||
|
|
||||||
|
class PrivmsgTestCase(cases.BaseServerTestCase):
|
||||||
|
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812')
|
||||||
|
def testPrivmsg(self):
|
||||||
|
"""<https://tools.ietf.org/html/rfc2812#section-3.3.1>"""
|
||||||
|
self.connectClient('foo')
|
||||||
|
self.sendLine(1, 'JOIN #chan')
|
||||||
|
self.connectClient('bar')
|
||||||
|
self.sendLine(2, 'JOIN #chan')
|
||||||
|
self.sendLine(1, 'PRIVMSG #chan :hello there')
|
||||||
|
self.getMessages(1) # synchronize
|
||||||
|
pms = [msg for msg in self.getMessages(2) if msg.command == 'PRIVMSG']
|
||||||
|
self.assertEqual(len(pms), 1)
|
||||||
|
self.assertMessageEqual(
|
||||||
|
pms[0],
|
||||||
|
command='PRIVMSG',
|
||||||
|
params=['#chan', 'hello there']
|
||||||
|
)
|
||||||
|
|
||||||
|
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812')
|
||||||
|
def testPrivmsgNonexistentChannel(self):
|
||||||
|
"""<https://tools.ietf.org/html/rfc2812#section-3.3.1>"""
|
||||||
|
self.connectClient('foo')
|
||||||
|
self.sendLine(1, 'PRIVMSG #nonexistent :hello there')
|
||||||
|
msg = self.getMessage(1)
|
||||||
|
# ERR_NOSUCHNICK, ERR_NOSUCHCHANNEL, or ERR_CANNOTSENDTOCHAN
|
||||||
|
self.assertIn(msg.command, ('401', '403', '404'))
|
||||||
|
|
||||||
|
class NoticeTestCase(cases.BaseServerTestCase):
|
||||||
|
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812')
|
||||||
|
def testNotice(self):
|
||||||
|
"""<https://tools.ietf.org/html/rfc2812#section-3.3.2>"""
|
||||||
|
self.connectClient('foo')
|
||||||
|
self.sendLine(1, 'JOIN #chan')
|
||||||
|
self.connectClient('bar')
|
||||||
|
self.sendLine(2, 'JOIN #chan')
|
||||||
|
self.sendLine(1, 'NOTICE #chan :hello there')
|
||||||
|
self.getMessages(1) # synchronize
|
||||||
|
notices = [msg for msg in self.getMessages(2) if msg.command == 'NOTICE']
|
||||||
|
self.assertEqual(len(notices), 1)
|
||||||
|
self.assertMessageEqual(
|
||||||
|
notices[0],
|
||||||
|
command='NOTICE',
|
||||||
|
params=['#chan', 'hello there']
|
||||||
|
)
|
||||||
|
|
||||||
|
@cases.SpecificationSelector.requiredBySpecification('RFC1459', 'RFC2812')
|
||||||
|
def testNoticeNonexistentChannel(self):
|
||||||
|
"""
|
||||||
|
'automatic replies MUST NEVER be sent in response to a NOTICE message'
|
||||||
|
https://tools.ietf.org/html/rfc2812#section-3.3.2>
|
||||||
|
"""
|
||||||
|
self.connectClient('foo')
|
||||||
|
self.sendLine(1, 'NOTICE #nonexistent :hello there')
|
||||||
|
self.assertEqual(self.getMessages(1), [])
|
Reference in New Issue
Block a user