summaryrefslogtreecommitdiffstats
path: root/source3/selftest/tests.py
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2011-04-06 09:12:15 +1000
committerAndrew Bartlett <abartlet@samba.org>2011-04-06 05:24:48 +0200
commitd84a8d534374072fc96fd5da34e0021c81005f1a (patch)
treeb3ed60d281051387b209edd44b9a7ad709d48b09 /source3/selftest/tests.py
parent0415a5736e7e68f076fcf63dc16a7d33da4e569d (diff)
downloadsamba-d84a8d534374072fc96fd5da34e0021c81005f1a.tar.gz
samba-d84a8d534374072fc96fd5da34e0021c81005f1a.tar.xz
samba-d84a8d534374072fc96fd5da34e0021c81005f1a.zip
s3-selftest Add tests to show kerberos works across a password change
It is important that a machine account password change does not invalidate existing tickets. This is only for the default kerberos method with a password in secrets.tdb. The keytab based methods are still not tested. Andrew Bartlett Autobuild-User: Andrew Bartlett <abartlet@samba.org> Autobuild-Date: Wed Apr 6 05:24:48 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3/selftest/tests.py')
-rwxr-xr-xsource3/selftest/tests.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/selftest/tests.py b/source3/selftest/tests.py
index 826b84fa3ba..3fd44c52ca4 100755
--- a/source3/selftest/tests.py
+++ b/source3/selftest/tests.py
@@ -219,7 +219,10 @@ if sub.returncode == 0:
e = ""
a = ""
binding_string = "ncacn_np:$SERVER[%s%s%s%s]" % (a, s, z, e)
- options = binding_string + " -k yes --krb5-ccache=$PREFIX/ktest/krb5_ccache"
+ options = binding_string + " -k yes --krb5-ccache=$PREFIX/ktest/krb5_ccache-2"
+ plansmbtorturetestsuite(test, "ktest", options, 'over kerberos with old ccache ncacn_np with [%s%s%s%s] ' % (a, s, z, e))
+
+ options = binding_string + " -k yes --krb5-ccache=$PREFIX/ktest/krb5_ccache-3"
plansmbtorturetestsuite(test, "ktest", options, 'over kerberos ncacn_np with [%s%s%s%s] ' % (a, s, z, e))