For SCRAM, check clients send an empty response at the end.

https://github.com/ircv3/ircv3-specifications/pull/326
This commit is contained in:
2017-11-15 17:11:44 +01:00
parent 15a92ccf0b
commit 9575987555

View File

@ -191,6 +191,10 @@ class SaslTestCase(cases.BaseClientTestCase, cases.ClientNegociationHelper,
self.sendLine('AUTHENTICATE :' + base64.b64encode(response).decode())
self.assertEqual(properties, {'authzid': None, 'username': 'jilles'})
m = self.getMessage()
self.assertEqual(m.command, 'AUTHENTICATE', m)
self.assertEqual(m.params, ['+'], m)
@cases.OptionalityHelper.skipUnlessHasMechanism('SCRAM-SHA-256')
def testScramBadPassword(self):
"""Test SCRAM-SHA-256 authentication with a bad password.