1
0
mirror of https://github.com/kakwa/ldapcherry synced 2024-06-21 03:02:57 +02:00

reenable ssl no cert check

This commit is contained in:
kakwa 2015-06-17 22:20:21 +02:00
parent 37dcbc9246
commit c6ffdc20d8

View File

@ -45,13 +45,13 @@ class TestError(object):
inv = Backend(cfg, cherrypy.log, 'ldap', attr, 'uid') inv = Backend(cfg, cherrypy.log, 'ldap', attr, 'uid')
return True return True
# def testConnectSSLNoCheck(self): def testConnectSSLNoCheck(self):
# cfg2 = cfg.copy() cfg2 = cfg.copy()
# cfg2['uri'] = 'ldaps://ldap.ldapcherry.org:637' cfg2['uri'] = 'ldaps://ldap.ldapcherry.org:637'
# cfg2['checkcert'] = 'off' cfg2['checkcert'] = 'off'
# inv = Backend(cfg2, cherrypy.log, 'ldap', attr, 'uid') inv = Backend(cfg2, cherrypy.log, 'ldap', attr, 'uid')
# ldap = inv._connect() ldap = inv._connect()
# ldap.simple_bind_s(inv.binddn, inv.bindpassword) ldap.simple_bind_s(inv.binddn, inv.bindpassword)
def testConnect(self): def testConnect(self):
inv = Backend(cfg, cherrypy.log, 'ldap', attr, 'uid') inv = Backend(cfg, cherrypy.log, 'ldap', attr, 'uid')