From aad73fad601f576dd83b758f4448839b4e8e87df Mon Sep 17 00:00:00 2001 From: Michael Simacek Date: Mon, 20 Jul 2015 16:04:07 +0200 Subject: Port from python-krbV to python-gssapi python-krbV library is deprecated and doesn't work with python 3. Replacing all it's usages with python-gssapi. - Removed Backend.krb and KRB5_CCache classes They were wrappers around krbV classes that cannot really work without them - Added few utility functions for querying GSSAPI credentials in krb_utils module. They provide replacements for KRB5_CCache. - Merged two kinit_keytab functions - Changed ldap plugin connection defaults to match ipaldap - Unified getting default realm Using api.env.realm instead of krbV call Reviewed-By: Jan Cholasta Reviewed-By: Robbie Harwood Reviewed-By: Simo Sorce --- ipatests/test_xmlrpc/test_netgroup_plugin.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'ipatests/test_xmlrpc/test_netgroup_plugin.py') diff --git a/ipatests/test_xmlrpc/test_netgroup_plugin.py b/ipatests/test_xmlrpc/test_netgroup_plugin.py index afe0c617d..10553c21f 100644 --- a/ipatests/test_xmlrpc/test_netgroup_plugin.py +++ b/ipatests/test_xmlrpc/test_netgroup_plugin.py @@ -22,7 +22,6 @@ Test the `ipalib/plugins/netgroup.py` module. """ import nose -import krbV from ipalib import api from ipalib import errors @@ -36,9 +35,6 @@ from ipatests.test_xmlrpc.test_user_plugin import get_user_result # Global so we can save the value between tests netgroup_dn = None -# See if our LDAP server is up and we can talk to it over GSSAPI -ccache = krbV.default_context().default_ccache().name - netgroup1 = u'netgroup1' netgroup2 = u'netgroup2' netgroup_single = u'a' @@ -1298,7 +1294,7 @@ class test_netgroup(Declarative): # # Do an LDAP query to the compat area and verify that the entry # # is correct # conn = ldap2(api) -# conn.connect(ccache=ccache) +# conn.connect() # try: # entries = conn.find_entries('cn=%s' % self.ng_cn, # base_dn='cn=ng,cn=compat,%s' % api.env.basedn) -- cgit