mirror of
https://github.com/samba-team/samba.git
synced 2025-08-04 08:22:08 +03:00
selftest: Add test for rpcclient LSA lookup calls
Signed-off-by: Christof Schmitt <cs@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Wed Mar 11 09:52:44 UTC 2020 on sn-devel-184
This commit is contained in:
committed by
Andrew Bartlett
parent
00ab6349e2
commit
808d6c0c53
42
source3/script/tests/test_rpcclient_lookup.sh
Executable file
42
source3/script/tests/test_rpcclient_lookup.sh
Executable file
@ -0,0 +1,42 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# Blackbox tests for the rpcclient LSA lookup commands
|
||||||
|
#
|
||||||
|
# Copyright (C) 2020 Christof Schmitt
|
||||||
|
|
||||||
|
if [ $# -lt 4 ]; then
|
||||||
|
cat <<EOF
|
||||||
|
Usage: test_net_srvsvc.sh USERNAME PASSWORD SERVER RPCCLIENT
|
||||||
|
EOF
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
|
||||||
|
USERNAME="$1"
|
||||||
|
PASSWORD="$2"
|
||||||
|
SERVER="$3"
|
||||||
|
RPCCLIENT="$4"
|
||||||
|
|
||||||
|
RPCCLIENTCMD="$RPCCLIENT $SERVER -U$USERNAME%$PASSWORD"
|
||||||
|
|
||||||
|
incdir=$(dirname $0)/../../../testprogs/blackbox
|
||||||
|
. $incdir/subunit.sh
|
||||||
|
|
||||||
|
failed=0
|
||||||
|
|
||||||
|
$RPCCLIENTCMD -c "lookupsids S-1-1-0"
|
||||||
|
RC=$?
|
||||||
|
testit "lookupsids" test $RC -eq 0 || failed=$(expr $failed + 1)
|
||||||
|
|
||||||
|
$RPCCLIENTCMD -c "lookupsids_level 1 S-1-1-0"
|
||||||
|
RC=$?
|
||||||
|
testit "lookupsids_level" test $RC -eq 0 || failed=$(expr $failed + 1)
|
||||||
|
|
||||||
|
$RPCCLIENTCMD -c "lookupnames Everyone"
|
||||||
|
RC=$?
|
||||||
|
testit "lookupnames" test $RC -eq 0 || failed=$(expr $failed + 1)
|
||||||
|
|
||||||
|
$RPCCLIENTCMD -c "lookupnames_level 1 Everyone"
|
||||||
|
RC=$?
|
||||||
|
testit "lookupnames_level" test $RC -eq 0 || failed=$(expr $failed + 1)
|
||||||
|
|
||||||
|
testok $0 $failed
|
@ -860,6 +860,11 @@ plantestsuite("samba3.blackbox.rpcclient_srvsvc", "simpleserver",
|
|||||||
"$USERNAME", "$PASSWORD", "$SERVER",
|
"$USERNAME", "$PASSWORD", "$SERVER",
|
||||||
os.path.join(bindir(), "rpcclient"), "tmp"])
|
os.path.join(bindir(), "rpcclient"), "tmp"])
|
||||||
|
|
||||||
|
plantestsuite("samba3.blackbox.rpcclient_lookup", "simpleserver",
|
||||||
|
[os.path.join(samba3srcdir, "script/tests/test_rpcclient_lookup.sh"),
|
||||||
|
"$USERNAME", "$PASSWORD", "$SERVER",
|
||||||
|
os.path.join(bindir(), "rpcclient")])
|
||||||
|
|
||||||
plantestsuite("samba3.blackbox.rpcclient.pw-nt-hash", "simpleserver",
|
plantestsuite("samba3.blackbox.rpcclient.pw-nt-hash", "simpleserver",
|
||||||
[os.path.join(samba3srcdir, "script/tests/test_rpcclient_pw_nt_hash.sh"),
|
[os.path.join(samba3srcdir, "script/tests/test_rpcclient_pw_nt_hash.sh"),
|
||||||
"$USERNAME", "$PASSWORD", "$SERVER",
|
"$USERNAME", "$PASSWORD", "$SERVER",
|
||||||
|
Reference in New Issue
Block a user