mirror of
https://github.com/progval/irctest.git
synced 2025-04-04 14:29:46 +00:00
Add tests for PING and PONG
This commit is contained in:
@ -16,7 +16,7 @@ OPER_PWD = "frenchfries"
|
||||
BASE_CONFIG = {
|
||||
"network": {"name": "ErgoTest"},
|
||||
"server": {
|
||||
"name": "ergo.test",
|
||||
"name": "My.Little.Server",
|
||||
"listeners": {},
|
||||
"max-sendq": "16k",
|
||||
"connection-limits": {
|
||||
|
42
irctest/server_tests/pingpong.py
Normal file
42
irctest/server_tests/pingpong.py
Normal file
@ -0,0 +1,42 @@
|
||||
from irctest import cases
|
||||
from irctest.numerics import ERR_NEEDMOREPARAMS, ERR_NOORIGIN
|
||||
from irctest.patma import ANYSTR
|
||||
|
||||
|
||||
class PingPongTestCase(cases.BaseServerTestCase):
|
||||
@cases.mark_specifications("Modern")
|
||||
def testPing(self):
|
||||
"""https://github.com/ircdocs/modern-irc/pull/99"""
|
||||
self.connectClient("foo")
|
||||
self.sendLine(1, "PING abcdef")
|
||||
self.assertMessageMatch(
|
||||
self.getMessage(1), command="PONG", params=["My.Little.Server", "abcdef"]
|
||||
)
|
||||
|
||||
@cases.mark_specifications("Modern")
|
||||
def testPingNoToken(self):
|
||||
"""https://github.com/ircdocs/modern-irc/pull/99"""
|
||||
self.connectClient("foo")
|
||||
self.sendLine(1, "PING")
|
||||
m = self.getMessage(1)
|
||||
if m.command == ERR_NOORIGIN:
|
||||
self.assertMessageMatch(m, command=ERR_NOORIGIN, params=["foo", ANYSTR])
|
||||
else:
|
||||
self.assertMessageMatch(
|
||||
m, command=ERR_NEEDMOREPARAMS, params=["foo", "PING", ANYSTR]
|
||||
)
|
||||
|
||||
@cases.mark_specifications("Modern")
|
||||
def testPingEmptyToken(self):
|
||||
"""https://github.com/ircdocs/modern-irc/pull/99"""
|
||||
self.connectClient("foo")
|
||||
self.sendLine(1, "PING :")
|
||||
m = self.getMessage(1)
|
||||
if m.command == "PONG":
|
||||
self.assertMessageMatch(m, command="PONG", params=["My.Little.Server", ""])
|
||||
elif m.command == ERR_NOORIGIN:
|
||||
self.assertMessageMatch(m, command=ERR_NOORIGIN, params=["foo", ANYSTR])
|
||||
else:
|
||||
self.assertMessageMatch(
|
||||
m, command=ERR_NEEDMOREPARAMS, params=["foo", "PING", ANYSTR]
|
||||
)
|
Reference in New Issue
Block a user