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
|
#!/usr/bin/python3
# Copyright (C) 2015,2016 - GSS-Proxy contributors; see COPYING for the license.
from testlib import *
def run(testdir, env, conf, expected_failure=False):
print("Testing basic acquire creds...", file=sys.stderr)
logfile = conf['logfile']
svc_keytab = os.path.join(testdir, SVC_KTNAME)
testenv = {'KRB5CCNAME': os.path.join(testdir, 't' + conf['prefix'] +
'_acquire.ccache'),
'KRB5_KTNAME': conf['keytab'],
'KRB5_TRACE': os.path.join(testdir, 't' + conf['prefix'] +
'_acquire.trace'),
'GSS_USE_PROXY': 'yes',
'GSSPROXY_BEHAVIOR': 'REMOTE_FIRST'}
testenv.update(env)
cmd = ["./tests/t_acquire", conf['svc_name']]
print("[COMMAND]\n%s\n[ENVIRONMENT]\n%s\n" % (cmd, env), file=logfile)
logfile.flush()
p1 = subprocess.Popen(cmd, stderr=subprocess.STDOUT, stdout=logfile,
env=testenv, preexec_fn=os.setsid)
try:
p1.wait(10)
except subprocess.TimeoutExpired:
# p1.returncode is set to None here
pass
print_return(p1.returncode, "Acquire", expected_failure)
|