File: t_spnego_negotiate_once.py

package info (click to toggle)
libapache2-mod-auth-gssapi 1.6.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 912 kB
  • sloc: ansic: 9,927; python: 1,114; yacc: 163; sh: 147; makefile: 132; lex: 25
file content (37 lines) | stat: -rwxr-xr-x 1,497 bytes parent folder | download
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
#!/usr/bin/env python3
# Copyright (C) 2015 - mod_auth_gssapi contributors, see COPYING for license.

import os

import requests
from requests_gssapi import HTTPKerberosAuth, OPTIONAL # noqa


if __name__ == '__main__':
    sess = requests.Session()
    url = 'http://%s/spnego_negotiate_once/' % (
        os.environ['NSS_WRAPPER_HOSTNAME'])

    # ensure a 401 with the appropriate WWW-Authenticate header is returned
    # when no auth is provided
    r = sess.get(url)
    if r.status_code != 401:
        raise ValueError('Spnego Negotiate Once failed - 401 expected')
    if not (r.headers.get("WWW-Authenticate") and
            r.headers.get("WWW-Authenticate").startswith("Negotiate")):
        raise ValueError('Spnego Negotiate Once failed - WWW-Authenticate '
                         'Negotiate header missing')

    # test sending a bad Authorization header with GssapiNegotiateOnce enabled
    r = sess.get(url, headers={"Authorization": "Negotiate badvalue"})
    if r.status_code != 401:
        raise ValueError('Spnego Negotiate Once failed - 401 expected')
    if r.headers.get("WWW-Authenticate"):
        raise ValueError('Spnego Negotiate Once failed - WWW-Authenticate '
                         'Negotiate present but GssapiNegotiateOnce is '
                         'enabled')

    # ensure a 200 is returned when valid auth is provided
    r = sess.get(url, auth=HTTPKerberosAuth())
    if r.status_code != 200:
        raise ValueError('Spnego Negotiate Once failed')