mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
8de3fd59e0
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlet <abartlet@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
29 lines
768 B
Bash
Executable File
29 lines
768 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -lt 1 ]; then
|
|
cat <<EOF
|
|
Usage: bogus.sh SERVER SHARE USER PASSWORD DC_USER DC_PASSWORD SMBCLIENT
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
. `dirname $0`/subunit.sh
|
|
|
|
SERVER=$1
|
|
SHARE=$2
|
|
USER=$3
|
|
PWD=$4
|
|
DC_USER=$5
|
|
DC_PWD=$6
|
|
smbclient=$7
|
|
shift 7
|
|
|
|
TEST_USER=bogus_testuser
|
|
TEST_PWD=bogus_pass3#@
|
|
net="$BINDIR/net"
|
|
testit_expect_failure "smbclient" $smbclient "//$SERVER/$SHARE" -W POUET -U$DC_USER%$DC_PWD -c "dir"&& failed=`expr $failed + 1`
|
|
testit "net.user.add" $net rpc user add $TEST_USER $TEST_PWD -W $SERVER -U$SERVER\\$USER%$PWD -S $SERVER
|
|
testit "smbclient" $smbclient "//$SERVER/$SHARE" -W POUET -U$TEST_USER%$TEST_PWD -c "dir"|| failed=`expr $failed + 1`
|
|
testit "net.user.delete" $net rpc user delete $TEST_USER -W $SERVER -U$SERVER\\$USER%$PWD -S $SERVER
|
|
exit $failed
|