summaryrefslogtreecommitdiffstats
path: root/tests/t_basic_k5.py
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2015-07-04 11:11:16 -0400
committerSimo Sorce <simo@redhat.com>2015-07-04 11:18:43 -0400
commit47de8ee6c742264ff03e9e3786cca3dabbedff4c (patch)
tree2564a6785522307c5d9205e8bd4e5d636448b178 /tests/t_basic_k5.py
parentecd5b7c10b3bf1a93ce3653f9d1557177d913855 (diff)
downloadmod_auth_gssapi-47de8ee6c742264ff03e9e3786cca3dabbedff4c.tar.gz
mod_auth_gssapi-47de8ee6c742264ff03e9e3786cca3dabbedff4c.tar.xz
mod_auth_gssapi-47de8ee6c742264ff03e9e3786cca3dabbedff4c.zip
Add basic auth test
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'tests/t_basic_k5.py')
-rwxr-xr-xtests/t_basic_k5.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/t_basic_k5.py b/tests/t_basic_k5.py
new file mode 100755
index 0000000..8e4646d
--- /dev/null
+++ b/tests/t_basic_k5.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.auth import HTTPBasicAuth
+
+
+if __name__ == '__main__':
+ url = 'http://%s/basic_auth_krb5/' % os.environ['NSS_WRAPPER_HOSTNAME']
+ r = requests.get(url, auth=HTTPBasicAuth(os.environ['MAG_USER_NAME'],
+ os.environ['MAG_USER_PASSWORD']))
+ if r.status_code != 200:
+ raise ValueError('Basic Auth Failed')