File: t_basic_timeout.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 (34 lines) | stat: -rwxr-xr-x 909 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
#!/usr/bin/env python3
# Copyright (C) 2020 - mod_auth_gssapi contributors, see COPYING for license.

import os
import time

import requests
from requests.auth import HTTPBasicAuth


if __name__ == '__main__':
    s = requests.Session()
    url = 'http://{}/basic_auth_timeout/auth/'.format(
            os.environ['NSS_WRAPPER_HOSTNAME']
    )
    url2 = 'http://{}/basic_auth_timeout/session/'.format(
            os.environ['NSS_WRAPPER_HOSTNAME']
    )

    r = s.get(url, auth=HTTPBasicAuth(os.environ['TIMEOUT_USER'],
                                      os.environ['MAG_USER_PASSWORD']))
    if r.status_code != 200:
        raise ValueError('Basic Auth Failed')

    time.sleep(301)
    r = s.get(url2)
    if r.status_code != 200:
        raise ValueError('Session Auth Failed')

    time.sleep(401)

    r = s.get(url2)
    if r.status_code == 200:
        raise ValueError('Timeout check Failed')