mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 14:59:49 +00:00
add an incorrect password test for PLAIN (#253)
* add an incorrect password test for PLAIN * derace test (hopefully)
This commit is contained in:
committed by
GitHub
parent
61a6f047d2
commit
df2880e379
@ -1,7 +1,7 @@
|
||||
import base64
|
||||
|
||||
from irctest import cases, runner, scram
|
||||
from irctest.numerics import ERR_SASLFAIL
|
||||
from irctest.numerics import ERR_SASLFAIL, RPL_LOGGEDIN, RPL_SASLMECHS
|
||||
from irctest.patma import ANYSTR
|
||||
|
||||
|
||||
@ -48,11 +48,37 @@ class SaslTestCase(cases.BaseServerTestCase):
|
||||
m = self.getRegistrationMessage(1)
|
||||
self.assertMessageMatch(
|
||||
m,
|
||||
command="900",
|
||||
command=RPL_LOGGEDIN,
|
||||
params=[ANYSTR, ANYSTR, "jilles", ANYSTR],
|
||||
fail_msg="Unexpected reply to correct SASL authentication: {msg}",
|
||||
)
|
||||
|
||||
@cases.mark_specifications("IRCv3")
|
||||
@cases.skipUnlessHasMechanism("PLAIN")
|
||||
def testPlainFailure(self):
|
||||
"""PLAIN authentication with incorrect username/password."""
|
||||
self.controller.registerUser(self, "jilles", "sesame")
|
||||
self.addClient()
|
||||
self.requestCapabilities(1, ["sasl"], skip_if_cap_nak=False)
|
||||
self.sendLine(1, "AUTHENTICATE PLAIN")
|
||||
m = self.getRegistrationMessage(1)
|
||||
self.assertMessageMatch(
|
||||
m,
|
||||
command="AUTHENTICATE",
|
||||
params=["+"],
|
||||
fail_msg="Sent “AUTHENTICATE PLAIN”, server should have "
|
||||
"replied with “AUTHENTICATE +”, but instead sent: {msg}",
|
||||
)
|
||||
# password 'millet'
|
||||
self.sendLine(1, "AUTHENTICATE amlsbGVzAGppbGxlcwBtaWxsZXQ=")
|
||||
m = self.getRegistrationMessage(1)
|
||||
self.assertMessageMatch(
|
||||
m,
|
||||
command=ERR_SASLFAIL,
|
||||
params=[ANYSTR, ANYSTR],
|
||||
fail_msg="Unexpected reply to incorrect SASL authentication: {msg}",
|
||||
)
|
||||
|
||||
@cases.mark_specifications("IRCv3")
|
||||
@cases.skipUnlessHasMechanism("PLAIN")
|
||||
def testPlainNonAscii(self):
|
||||
@ -161,11 +187,11 @@ class SaslTestCase(cases.BaseServerTestCase):
|
||||
self.requestCapabilities(1, ["sasl"], skip_if_cap_nak=False)
|
||||
self.sendLine(1, "AUTHENTICATE FOO")
|
||||
m = self.getRegistrationMessage(1)
|
||||
while m.command == "908": # RPL_SASLMECHS
|
||||
while m.command == RPL_SASLMECHS:
|
||||
m = self.getRegistrationMessage(1)
|
||||
self.assertMessageMatch(
|
||||
m,
|
||||
command="904",
|
||||
command=ERR_SASLFAIL,
|
||||
fail_msg="Did not reply with 904 to “AUTHENTICATE FOO”: {msg}",
|
||||
)
|
||||
|
||||
|
Reference in New Issue
Block a user