diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-04-19 16:38:46 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-04-28 05:30:21 +0200 |
commit | fb5e1f4a65042b89c74e545cb739f1720565807d (patch) | |
tree | 16ecabf158f0c56b54cf91a56e3af23708084fe6 /source4/selftest | |
parent | a427652010820fdf8fa82cf425f5162cc70348e0 (diff) | |
download | samba-fb5e1f4a65042b89c74e545cb739f1720565807d.tar.gz samba-fb5e1f4a65042b89c74e545cb739f1720565807d.tar.bz2 samba-fb5e1f4a65042b89c74e545cb739f1720565807d.zip |
selftest: s3member admember test to confirm s3/s4 interopability
This checks that Samba3 joins Samba4 correctly, and allows NTLM and
Kerberos logons from a live Samba4 DC.
This needs the common krb5.conf generation logic, and because we now
override KRB5_CONFIG we must update ktest to have a valid krb5.conf.
Based on an original patch by metze
Andrew Bartlett
Diffstat (limited to 'source4/selftest')
-rwxr-xr-x | source4/selftest/tests.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/selftest/tests.py b/source4/selftest/tests.py index 92ab28c2be..51786aebb4 100755 --- a/source4/selftest/tests.py +++ b/source4/selftest/tests.py @@ -306,11 +306,11 @@ for mech in [ "-k no", "-k no --option=usespnego=no", "-k no --option=gensec:spengo=no", - "-k yes", - "-k yes --option=gensec:fake_gssapi_krb5=yes --option=gensec:gssapi_krb5=no"]: + "-k yes"]: signoptions = "%s --signing=off" % mech - name = "smb.signing on with %s" % signoptions - plantestsuite_loadlist("samba4.%s domain-creds" % name, "s4member", [valgrindify(smb4torture), "$LISTOPT", '//$NETBIOSNAME/tmp', signoptions, '-U$DC_USERNAME%$DC_PASSWORD', 'base.xcopy']) + name = "smb.signing disabled on with %s" % signoptions + for env in [ "s4member", "s3member" ]: + plantestsuite_loadlist("samba4.%s domain-creds" % name, env, [valgrindify(smb4torture), "$LISTOPT", '//$NETBIOSNAME/tmp', signoptions, '-U$DC_USERNAME%$DC_PASSWORD', 'base.xcopy']) for mech in [ "-k no", |