diff options
author | Simo Sorce <simo@redhat.com> | 2016-11-02 08:58:42 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2016-11-30 05:40:10 -0500 |
commit | 33ba08354e2637ef0f3d76f285f07f44783709ac (patch) | |
tree | 958331b0af8b778678e4366946b4ef387867fb26 /tests/magtests.py | |
parent | f8f308f00b7f2695ae811d64038febc59dc688d5 (diff) | |
download | mod_auth_gssapi-33ba08354e2637ef0f3d76f285f07f44783709ac.tar.gz mod_auth_gssapi-33ba08354e2637ef0f3d76f285f07f44783709ac.tar.xz mod_auth_gssapi-33ba08354e2637ef0f3d76f285f07f44783709ac.zip |
Add tests for delegation and ccache mode setting
Signed-off-by: Simo Sorce <simo@redhat.com>
Reviewed-by: Robbie Harwood <rharwood@redhat.com>
Closes #112
Diffstat (limited to 'tests/magtests.py')
-rwxr-xr-x | tests/magtests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/magtests.py b/tests/magtests.py index 0065b7b..074e2f0 100755 --- a/tests/magtests.py +++ b/tests/magtests.py @@ -257,7 +257,6 @@ def kinit_user(testdir, kdcenv): kinit.wait() if kinit.returncode != 0: raise ValueError('kinit failed') - return testenv @@ -388,6 +387,8 @@ if __name__ == '__main__': keysenv = setup_keys(testdir, kdcenv) testenv = kinit_user(testdir, kdcenv) + testenv['DELEGCCACHE'] = os.path.join(testdir, 'httpd', + USR_NAME + '@' + TESTREALM) test_spnego_auth(testdir, testenv, testlog) test_spnego_negotiate_once(testdir, testenv, testlog) |