summaryrefslogtreecommitdiffstats
path: root/tests/t_spnego_rewrite.py
diff options
context:
space:
mode:
authorIsaac Boukris <iboukris@gmail.com>2016-12-17 23:17:00 +0200
committerSimo Sorce <simo@redhat.com>2017-01-11 14:43:08 -0500
commita64a32f520884039be0a2240bfa2b5f4040c9c99 (patch)
tree530cd2646932424e87e8127e0a81c5b99cac6d48 /tests/t_spnego_rewrite.py
parent63706efbbc75ae6fd928813cdd45242025c0fe61 (diff)
downloadmod_auth_gssapi-a64a32f520884039be0a2240bfa2b5f4040c9c99.tar.gz
mod_auth_gssapi-a64a32f520884039be0a2240bfa2b5f4040c9c99.tar.xz
mod_auth_gssapi-a64a32f520884039be0a2240bfa2b5f4040c9c99.zip
rewrite: implicitly handle internal redirects
Internal redirects are a special case of subrequest - they have no req->main but req->prev instead, so we should check for that too in case the request is not initial. Also, make sure to export MAG environment variables to subrequests and internal redirects. Signed-off-by: Isaac Boukris <iboukris@gmail.com> Reviewed-by: Simo Sorce <simo@redhat.com> Reported-by: scopev24 Closes #119
Diffstat (limited to 'tests/t_spnego_rewrite.py')
-rwxr-xr-xtests/t_spnego_rewrite.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/t_spnego_rewrite.py b/tests/t_spnego_rewrite.py
new file mode 100755
index 0000000..0014bf5
--- /dev/null
+++ b/tests/t_spnego_rewrite.py
@@ -0,0 +1,18 @@
+#!/usr/bin/python
+# Copyright (C) 2015 - mod_auth_gssapi contributors, see COPYING for license.
+
+import os
+import requests
+from requests_kerberos import HTTPKerberosAuth, OPTIONAL
+
+
+if __name__ == '__main__':
+ sess = requests.Session()
+ url = 'http://%s/spnego_rewrite/xxx' % os.environ['NSS_WRAPPER_HOSTNAME']
+ r = sess.get(url, auth=HTTPKerberosAuth())
+
+ if r.status_code != 200:
+ raise ValueError('Spnego Rewrite failed')
+
+ if r.text.rstrip() != os.environ['MAG_GSS_NAME']:
+ raise ValueError('Spnego Rewrite, GSS_NAME check failed')