-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy patht_basic_k5_fail_second.py
executable file
·40 lines (33 loc) · 1.35 KB
/
t_basic_k5_fail_second.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# Copyright (C) 2015 - mod_auth_gssapi contributors, see COPYING for license.
import os
import requests
if __name__ == '__main__':
s = requests.Session()
url = 'http://%s:%s@%s/basic_auth_krb5/' % \
(os.environ['MAG_USER_NAME'],
os.environ['MAG_USER_PASSWORD'],
os.environ['NSS_WRAPPER_HOSTNAME'])
r = s.get(url)
if r.status_code != 200:
raise ValueError('Basic Auth: Failed Authentication')
url = 'http://%s:%s@%s/basic_auth_krb5/' % \
(os.environ['MAG_USER_NAME_2'],
os.environ['MAG_USER_PASSWORD'],
os.environ['NSS_WRAPPER_HOSTNAME'])
r = s.get(url)
if r.status_code == 200:
raise ValueError('Basic Auth: Got Success while expecting Error')
if 'GSS ERROR' not in r.text:
raise ValueError('Basic Auth: Expected error variable is missing')
url = 'http://%s:%s@%s/basic_auth_krb5/' % \
(os.environ['MAG_USER_NAME_2'],
os.environ['MAG_USER_PASSWORD_2'],
os.environ['NSS_WRAPPER_HOSTNAME'])
r = s.get(url)
if r.status_code != 200:
raise ValueError('Basic Auth: Failed Authentication')
url = 'http://%s/basic_auth_krb5/' % os.environ['NSS_WRAPPER_HOSTNAME']
r = s.get(url)
if r.status_code == 200:
raise ValueError('Basic Auth: Got Success while expecting Error')