mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 23:09:48 +00:00
test that ERR_UNKNOWNCOMMAND is labeled
If an invalid command is sent with a valid label, it should receive ERR_UNKNOWNCOMMAND with a label (comparable to other error responses).
This commit is contained in:
committed by
Val Lorentz
parent
18befc9e96
commit
d29c0035e6
@ -10,6 +10,7 @@ import re
|
|||||||
import pytest
|
import pytest
|
||||||
|
|
||||||
from irctest import cases
|
from irctest import cases
|
||||||
|
from irctest.numerics import ERR_UNKNOWNCOMMAND
|
||||||
from irctest.patma import ANYDICT, AnyOptStr, NotStrRe, RemainingKeys, StrRe
|
from irctest.patma import ANYDICT, AnyOptStr, NotStrRe, RemainingKeys, StrRe
|
||||||
|
|
||||||
|
|
||||||
@ -502,3 +503,19 @@ class LabeledResponsesTestCase(cases.BaseServerTestCase, cases.OptionalityHelper
|
|||||||
ack = ms[0]
|
ack = ms[0]
|
||||||
|
|
||||||
self.assertMessageMatch(ack, command="ACK", tags={"label": "98765"})
|
self.assertMessageMatch(ack, command="ACK", tags={"label": "98765"})
|
||||||
|
|
||||||
|
@cases.mark_capabilities("labeled-response")
|
||||||
|
def testUnknownCommand(self):
|
||||||
|
self.connectClient(
|
||||||
|
"bar", capabilities=["batch", "labeled-response"], skip_if_cap_nak=True
|
||||||
|
)
|
||||||
|
|
||||||
|
# this command doesn't exist, but the error response should still
|
||||||
|
# be labeled:
|
||||||
|
self.sendLine(1, "@label=deadbeef NONEXISTENT_COMMAND")
|
||||||
|
ms = self.getMessages(1)
|
||||||
|
self.assertEqual(len(ms), 1)
|
||||||
|
unknowncommand = ms[0]
|
||||||
|
self.assertMessageMatch(
|
||||||
|
unknowncommand, command=ERR_UNKNOWNCOMMAND, tags={"label": "deadbeef"}
|
||||||
|
)
|
||||||
|
Reference in New Issue
Block a user