mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
irctest.client_tests.test_sasl: Support skipping unsupported mechanism tests
This commit is contained in:
@ -16,6 +16,13 @@ IRX9cyi2wdYg9mUUYyh9GKdBCYHGUJAiCA==
|
||||
"""
|
||||
|
||||
class SaslTestCase(cases.BaseClientTestCase, cases.ClientNegociationHelper):
|
||||
def checkMechanismSupport(self, mechanism):
|
||||
if not hasattr(self.controller, 'supported_sasl_mechanisms'):
|
||||
return
|
||||
if mechanism in self.controller.supported_sasl_mechanisms:
|
||||
return
|
||||
self.skipTest('SASL Mechanism not supported: {}'.format(mechanism))
|
||||
|
||||
def testPlain(self):
|
||||
auth = authentication.Authentication(
|
||||
mechanisms=[authentication.Mechanisms.plain],
|
||||
@ -108,6 +115,7 @@ class SaslTestCase(cases.BaseClientTestCase, cases.ClientNegociationHelper):
|
||||
ecdsa_key=ECDSA_KEY,
|
||||
)
|
||||
m = self.negotiateCapabilities(['sasl'], auth=auth)
|
||||
self.checkMechanismSupport('ECDSA-NIST256P-CHALLENGE')
|
||||
self.assertEqual(m, Message([], None, 'AUTHENTICATE', ['ECDSA-NIST256P-CHALLENGE']))
|
||||
self.sendLine('AUTHENTICATE +')
|
||||
m = self.getMessage()
|
||||
|
Reference in New Issue
Block a user