1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00
samba-mirror/source3/script/tests/test_rpcclient_lookup.sh
Andreas Schneider 24638a2e5e s3:tests: Reformat test_rpcclient_lookup.sh
shfmt -f source3/script/| xargs shfmt -w -p -i 0 -fn

Signed-off-by: Andreas Schneider <asn@samba.org>
Reviewed-by: Guenther Deschner <gd@samba.org>
2022-06-08 13:14:47 +00:00

43 lines
904 B
Bash
Executable File

#!/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