1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00

s3:selftest: add samba3.blackbox.net_rpc_oldjoin test

This demonstrates that "net rpc oldjoin" is currently broken.

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13149

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
(cherry picked from commit 9466796c87)
This commit is contained in:
Stefan Metzmacher 2017-11-17 15:51:36 +01:00 committed by Karolin Seeger
parent eea9b637f7
commit b9d0fce671
3 changed files with 37 additions and 0 deletions

View File

@ -0,0 +1 @@
^samba3.blackbox.net_rpc_oldjoin.net.*

View File

@ -0,0 +1,32 @@
#!/bin/sh
if [ $# -lt 3 ]; then
cat <<EOF
Usage: test_net_rpc_oldjoin.sh SERVER PREFIX SMB_CONF_PATH
EOF
exit 1;
fi
SERVER="$1"
PREFIX="$2"
SMB_CONF_PATH="$3"
shift 3
incdir=`dirname $0`/../../../testprogs/blackbox
. $incdir/subunit.sh
maccount="OLDJOINTEST"
privatedir="$PREFIX/private"
UID_WRAPPER_ROOT=1
export UID_WRAPPER_ROOT
OPTIONS="--configfile $SMB_CONF_PATH --option=netbiosname=$maccount --option=security=domain --option=domainlogons=no --option=privatedir=$privatedir"
testit "mkdir -p $privatedir" mkdir -p $privatedir || failed=`expr $failed + 1`
testit "smbpasswd -a -m" $VALGRIND $BINDIR/smbpasswd -L -c $SMB_CONF_PATH -a -m "$maccount" || failed=`expr $failed + 1`
testit "net_rpc_oldjoin" $VALGRIND $BINDIR/net rpc oldjoin -S $SERVER $OPTIONS || failed=`expr $failed + 1`
testit "net_rpc_testjoin1" $VALGRIND $BINDIR/net rpc testjoin -S $SERVER $OPTIONS || failed=`expr $failed + 1`
testit "net_rpc_changetrustpw" $VALGRIND $BINDIR/net rpc changetrustpw -S $SERVER $OPTIONS || failed=`expr $failed + 1`
testit "net_rpc_testjoin2" $VALGRIND $BINDIR/net rpc testjoin -S $SERVER $OPTIONS || failed=`expr $failed + 1`
testok $0 $failed

View File

@ -521,6 +521,10 @@ plantestsuite("samba3.blackbox.net_rpc_join", "nt4_dc",
[os.path.join(samba3srcdir, "script/tests/test_net_rpc_join.sh"),
"$USERNAME", "$PASSWORD", "$SERVER", "$PREFIX/net_rpc_join",
configuration])
plantestsuite("samba3.blackbox.net_rpc_oldjoin", "nt4_dc:local",
[os.path.join(samba3srcdir, "script/tests/test_net_rpc_oldjoin.sh"),
"$SERVER", "$PREFIX/net_rpc_oldjoin",
"$SMB_CONF_PATH"])
plantestsuite("samba3.blackbox.rpcclient_srvsvc", "simpleserver",
[os.path.join(samba3srcdir, "script/tests/test_rpcclientsrvsvc.sh"),