You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
import contextlib
|
|
import os
|
|
import subprocess
|
|
from subprocess import DEVNULL
|
|
import tempfile
|
|
|
|
import gssapi
|
|
import pytest
|
|
|
|
|
|
# map principals to GSSAPI credentials
|
|
_cache = {}
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def gssapi_token_ctx(principal: str):
|
|
"""
|
|
Temporarily set KRB5CCNAME to a ccache storing credentials
|
|
for the specified user, and yield the GSSAPI credentials.
|
|
"""
|
|
old_krb5ccname = os.environ['KRB5CCNAME']
|
|
try:
|
|
if principal not in _cache:
|
|
f = tempfile.NamedTemporaryFile()
|
|
os.environ['KRB5CCNAME'] = 'FILE:' + f.name
|
|
args = ['kinit', principal]
|
|
if principal == 'ceod/admin':
|
|
args = ['kinit', '-k', principal]
|
|
subprocess.run(
|
|
args, stdout=DEVNULL, text=True, input='krb5', check=True)
|
|
creds = gssapi.Credentials(name=gssapi.Name(principal), usage='initiate')
|
|
# Keep the credential cache files around as long as the creds are
|
|
# used, otherwise we get a "Invalid credential was supplied" error
|
|
_cache[principal] = creds, f
|
|
else:
|
|
creds, f = _cache[principal]
|
|
os.environ['KRB5CCNAME'] = 'FILE:' + f.name
|
|
yield creds.export()
|
|
finally:
|
|
os.environ['KRB5CCNAME'] = old_krb5ccname
|
|
|
|
|
|
@pytest.fixture(scope='session', autouse=True)
|
|
def ccache_cleanup():
|
|
"""Make sure the ccache files get deleted at the end of the tests."""
|
|
yield
|
|
_cache.clear()
|
|
|