mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
s3:tests: Add smbclient tests for 'client smb encrypt'
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
1b67943f93
commit
e7577ab6cb
2
selftest/knownfail.d/smbclient-encryption
Normal file
2
selftest/knownfail.d/smbclient-encryption
Normal file
@ -0,0 +1,2 @@
|
||||
^samba3.blackbox.smbclient.encryption.smbclient.smb3.client.encrypt.required...LOCALSHARE4.enc_desired..simpleserver
|
||||
^samba3.blackbox.smbclient.encryption.smbclient.smb3.client.encrypt.required...LOCALSHARE4.tmp..simpleserver
|
@ -2835,6 +2835,11 @@ sub provision($$)
|
||||
path = $prefix_abs/share
|
||||
vfs objects =
|
||||
server smb encrypt = desired
|
||||
|
||||
[enc_off]
|
||||
path = $prefix_abs/share
|
||||
vfs objects =
|
||||
server smb encrypt = off
|
||||
";
|
||||
|
||||
close(CONF);
|
||||
|
72
source3/script/tests/test_smbclient_encryption.sh
Executable file
72
source3/script/tests/test_smbclient_encryption.sh
Executable file
@ -0,0 +1,72 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ $# -lt 5 ]; then
|
||||
cat <<EOF
|
||||
Usage: test_smbclient_encryption.sh USERNAME PASSWORD SERVER SMBCLIENT TARGET
|
||||
EOF
|
||||
exit 1;
|
||||
fi
|
||||
|
||||
USERNAME="$1"
|
||||
PASSWORD="$2"
|
||||
SERVER="$3"
|
||||
SMBCLIENT="$VALGRIND $4"
|
||||
TARGET="$5"
|
||||
shift 5
|
||||
|
||||
incdir=`dirname $0`/../../../testprogs/blackbox
|
||||
. $incdir/subunit.sh
|
||||
|
||||
failed=0
|
||||
|
||||
#
|
||||
# Server configuration for fileserver:
|
||||
#
|
||||
# global: 'server smb encrypt = default'
|
||||
# enc_desired: 'server smb encrypt = desired'
|
||||
# tmpenc: 'server smb encrypt = required'
|
||||
# tmp: has the global default 'server smb encrypt'
|
||||
#
|
||||
# Server configuration for simpleserver:
|
||||
#
|
||||
# global: 'server smb encrypt = off'
|
||||
# enc_desired: 'server smb encrypt = desired'
|
||||
# tmpenc: 'server smb encrypt = required'
|
||||
# tmp: has the global default 'server smb encrypt'
|
||||
#
|
||||
|
||||
testit "smbclient.smb3.client.encrypt.desired[//$SERVER/enc_desired]" $SMBCLIENT //$SERVER/enc_desired -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=desired -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
if [ "$TARGET" = "fileserver" ]; then
|
||||
testit "smbclient.smb3.client.encrypt.desired[//$SERVER/tmpenc]" $SMBCLIENT //$SERVER/tmpenc -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=desired -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
elif [ "$TARGET" = "simpleserver" ]; then # Encryption is globally disabled
|
||||
testit_expect_failure "smbclient.smb3.client.encrypt.desired[//$SERVER/tmpenc]" $SMBCLIENT //$SERVER/tmpenc -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=desired -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
fi
|
||||
testit "smbclient.smb3.client.encrypt.desired[//$SERVER/tmp]" $SMBCLIENT //$SERVER/tmp -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=desired -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
|
||||
testit "smbclient.smb3.client.encrypt.if_required[//$SERVER/enc_desired]" $SMBCLIENT //$SERVER/enc_desired -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=if_required -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
if [ "$TARGET" = "fileserver" ]; then
|
||||
testit "smbclient.smb3.client.encrypt.if_required[//$SERVER/tmpenc]" $SMBCLIENT //$SERVER/tmpenc -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=if_required -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
elif [ "$TARGET" = "simpleserver" ]; then # Encryption is globally disabled
|
||||
testit_expect_failure "smbclient.smb3.client.encrypt.if_required[//$SERVER/tmpenc]" $SMBCLIENT //$SERVER/tmpenc -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=if_required -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
fi
|
||||
testit "smbclient.smb3.client.encrypt.if_required[//$SERVER/tmp]" $SMBCLIENT //$SERVER/tmp -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=if_required -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
|
||||
if [ "$TARGET" = "fileserver" ]; then
|
||||
testit "smbclient.smb3.client.encrypt.required[//$SERVER/enc_desired]" $SMBCLIENT //$SERVER/enc_desired -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=required -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
testit "smbclient.smb3.client.encrypt.required[//$SERVER/tmpenc]" $SMBCLIENT //$SERVER/tmpenc -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=required -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
testit "smbclient.smb3.client.encrypt.required[//$SERVER/tmp]" $SMBCLIENT //$SERVER/tmp -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=required -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
elif [ "$TARGET" = "simpleserver" ]; then # Encryption is globally disabled
|
||||
testit_expect_failure "smbclient.smb3.client.encrypt.required[//$SERVER/enc_desired]" $SMBCLIENT //$SERVER/enc_desired -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=required -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
testit_expect_failure "smbclient.smb3.client.encrypt.required[//$SERVER/tmpenc]" $SMBCLIENT //$SERVER/tmpenc -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=required -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
testit_expect_failure "smbclient.smb3.client.encrypt.required[//$SERVER/tmp]" $SMBCLIENT //$SERVER/tmp -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=required -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
fi
|
||||
|
||||
testit "smbclient.smb3.client.encrypt.off[//$SERVER/enc_desired]" $SMBCLIENT //$SERVER/enc_desired -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=off -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
if [ "$TARGET" = "fileserver" ]; then
|
||||
testit "smbclient.smb3.client.encrypt.off[//$SERVER/tmpenc]" $SMBCLIENT //$SERVER/tmpenc -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=off -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
elif [ "$TARGET" = "simpleserver" ]; then # Encryption is globally disabled
|
||||
testit_expect_failure "smbclient.smb3.client.encrypt.off[//$SERVER/tmpenc]" $SMBCLIENT //$SERVER/tmpenc -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=off -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
fi
|
||||
testit "smbclient.smb3.client.encrypt.off[//$SERVER/tmp]" $SMBCLIENT //$SERVER/tmp -U$USERNAME%$PASSWORD -mSMB3 --option=clientsmbencrypt=off -c 'ls; quit' || failed=`expr $failed + 1`
|
||||
|
||||
testok $0 $failed
|
@ -1056,6 +1056,12 @@ plantestsuite("samba3.blackbox.smbclient.encryption_off", "simpleserver",
|
||||
"$USERNAME", "$PASSWORD", "$SERVER",
|
||||
smbclient3])
|
||||
|
||||
for env in ['fileserver', 'simpleserver']:
|
||||
plantestsuite("samba3.blackbox.smbclient.encryption", env,
|
||||
[os.path.join(samba3srcdir, "script/tests/test_smbclient_encryption.sh"),
|
||||
"$USERNAME", "$PASSWORD", "$SERVER",
|
||||
smbclient3, env])
|
||||
|
||||
plantestsuite("samba3.blackbox.rpcclient_netsessenum", "ad_member",
|
||||
[os.path.join(samba3srcdir,
|
||||
"script/tests/test_rpcclient_netsessenum.sh"),
|
||||
|
Loading…
Reference in New Issue
Block a user