(self)
| 509 | _testSaslMech(self, mech, clientUser=None, authUser=extUser, authzid=authzid, encrypted=True) |
| 510 | |
| 511 | def testSSLExternalSimpleFail(self): |
| 512 | mech = 'EXTERNAL' |
| 513 | |
| 514 | self.server_domain.set_credentials(_sslCertpath("server-certificate.pem"), |
| 515 | _sslCertpath("server-private-key.pem"), |
| 516 | "server-password") |
| 517 | self.server_domain.set_trusted_ca_db(_sslCertpath("ca-certificate.pem")) |
| 518 | self.server_domain.set_peer_authentication(SSLDomain.VERIFY_PEER, |
| 519 | _sslCertpath("ca-certificate.pem")) |
| 520 | self.client_domain.set_trusted_ca_db(_sslCertpath("ca-certificate.pem")) |
| 521 | self.client_domain.set_peer_authentication(SSLDomain.VERIFY_PEER) |
| 522 | |
| 523 | _sslConnection(self.client_domain, self.t1, self.c1) |
| 524 | _sslConnection(self.server_domain, self.t2, self.c2) |
| 525 | |
| 526 | _testSaslMech(self, mech, clientUser=None, authUser=None, encrypted=None, authenticated=False) |
| 527 | |
| 528 | |
| 529 | class SASLEventTest(engine.CollectorTest): |
nothing calls this directly
no test coverage detected