1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-03 04:22:09 +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:
Christof Schmitt
2020-03-09 16:25:00 -07:00
committed by Andrew Bartlett
parent 00ab6349e2
commit 808d6c0c53
2 changed files with 47 additions and 0 deletions

View 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