mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
Add test for account tag on INVITE messages.
This will catch issues like https://github.com/solanum-ircd/solanum/issues/166 (when we have registration support for solanum)
This commit is contained in:
@ -32,7 +32,7 @@ class AccountTagTestCase(cases.BaseServerTestCase, cases.OptionalityHelper):
|
||||
self.sendLine(2, "CAP END")
|
||||
self.skipToWelcome(2)
|
||||
|
||||
@cases.mark_specifications("IRCv3")
|
||||
@cases.mark_capabilities("account-tag")
|
||||
@cases.OptionalityHelper.skipUnlessHasMechanism("PLAIN")
|
||||
def testPrivmsg(self):
|
||||
self.connectClient("foo", capabilities=["account-tag"], skip_if_cap_nak=True)
|
||||
@ -45,3 +45,19 @@ class AccountTagTestCase(cases.BaseServerTestCase, cases.OptionalityHelper):
|
||||
self.assertMessageMatch(
|
||||
m, command="PRIVMSG", params=["foo", "hi"], tags={"account": "jilles"}
|
||||
)
|
||||
|
||||
@cases.mark_capabilities("account-tag")
|
||||
@cases.OptionalityHelper.skipUnlessHasMechanism("PLAIN")
|
||||
def testInvite(self):
|
||||
self.connectClient("foo", capabilities=["account-tag"], skip_if_cap_nak=True)
|
||||
self.getMessages(1)
|
||||
self.controller.registerUser(self, "jilles", "sesame")
|
||||
self.connectRegisteredClient("bar")
|
||||
self.sendLine(2, "JOIN #chan")
|
||||
self.getMessages(2)
|
||||
self.sendLine(2, "INVITE foo #chan")
|
||||
self.getMessages(2)
|
||||
m = self.getMessage(1)
|
||||
self.assertMessageMatch(
|
||||
m, command="INVITE", params=["foo", "#chan"], tags={"account": "jilles"}
|
||||
)
|
||||
|
@ -27,6 +27,7 @@ class Specifications(enum.Enum):
|
||||
|
||||
@enum.unique
|
||||
class Capabilities(enum.Enum):
|
||||
ACCOUNT_TAG = "account-tag"
|
||||
AWAY_NOTIFY = "away-notify"
|
||||
BATCH = "batch"
|
||||
ECHO_MESSAGE = "echo-message"
|
||||
|
@ -13,6 +13,7 @@ markers =
|
||||
deprecated
|
||||
|
||||
# capabilities
|
||||
account-tag
|
||||
away-notify
|
||||
batch
|
||||
echo-message
|
||||
|
Reference in New Issue
Block a user