summaryrefslogtreecommitdiffstats
path: root/tests/t_spnego.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/t_spnego.py')
-rwxr-xr-xtests/t_spnego.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/t_spnego.py b/tests/t_spnego.py
new file mode 100755
index 0000000..83a9586
--- /dev/null
+++ b/tests/t_spnego.py
@@ -0,0 +1,14 @@
+#!/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/' % os.environ['NSS_WRAPPER_HOSTNAME']
+ r = sess.get(url, auth=HTTPKerberosAuth())
+ if r.status_code != 200:
+ raise ValueError('Spnego failed')