summaryrefslogtreecommitdiffstats
path: root/tests/helpers
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2015-05-05 12:37:31 -0400
committerRob Crittenden <rcritten@redhat.com>2015-05-06 16:00:24 -0400
commitdd6432197b3da4be32dd00c84bfe413ac04a802d (patch)
treea0998209d3f66dbc0a74f8189e020c8ab10f8a02 /tests/helpers
parentb8ba1b440e0ddee478ed14480e608a2cfde10c7a (diff)
downloadipsilon.git-gssapi_test.tar.gz
ipsilon.git-gssapi_test.tar.xz
ipsilon.git-gssapi_test.zip
Pull the GSSAPI principal out of the userattrsgssapi_test
This was originally getting the principal from the user object itself which meant it was looking for it in the database. Look in the attributes instead which are stored in the user session. Signed-off-by: Rob Crittenden <rcritten@redhat.com>
Diffstat (limited to 'tests/helpers')
-rwxr-xr-xtests/helpers/http.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/helpers/http.py b/tests/helpers/http.py
index 0da7ee2..97098c8 100755
--- a/tests/helpers/http.py
+++ b/tests/helpers/http.py
@@ -94,8 +94,9 @@ class HttpSessions(object):
session = self.get_session(url)
allow_redirects = False
if krb:
- # In at least the test instance we don't get back a negotiate
- # blob to do mutual authentication against.
+ # python-requests-kerberos isn't too bright about doing mutual
+ # authentication and it tries to do it on any non-401 response
+ # which doesn't work in our case since we follow redirects.
kerberos_auth = HTTPKerberosAuth(mutual_authentication=OPTIONAL)
kwargs['auth'] = kerberos_auth
allow_redirects = True