mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
For SCRAM, check clients send an empty response at the end.
https://github.com/ircv3/ircv3-specifications/pull/326
This commit is contained in:
@ -191,6 +191,10 @@ class SaslTestCase(cases.BaseClientTestCase, cases.ClientNegociationHelper,
|
|||||||
self.sendLine('AUTHENTICATE :' + base64.b64encode(response).decode())
|
self.sendLine('AUTHENTICATE :' + base64.b64encode(response).decode())
|
||||||
self.assertEqual(properties, {'authzid': None, 'username': 'jilles'})
|
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')
|
@cases.OptionalityHelper.skipUnlessHasMechanism('SCRAM-SHA-256')
|
||||||
def testScramBadPassword(self):
|
def testScramBadPassword(self):
|
||||||
"""Test SCRAM-SHA-256 authentication with a bad password.
|
"""Test SCRAM-SHA-256 authentication with a bad password.
|
||||||
|
Reference in New Issue
Block a user