1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-10 01:18:15 +03:00
samba-mirror/source3/script/tests/test_netfileenum.sh
Stefan Metzmacher 9d047192a6 s3:tests: use SAMBA_DEPRECATED_SUPPRESS=1 for backbox tests
These tests should not depend on the number of deprecation warnings

Signed-off-by: Stefan Metzmacher <metze@samba.org>
2021-07-14 21:06:36 +00:00

79 lines
1.9 KiB
Bash
Executable File

#!/bin/bash
#
# Test rpcclient netfileenum
#
# Copyright (C) 2020 Volker Lendecke
if [ $# -lt 5 ]; then
echo Usage: $0 \
SMBCLIENT RPCCLIENT NET SERVER SHARE
exit 1
fi
SMBCLIENT="$1"; shift 1
RPCCLIENT="$1"; shift 1
NET="$1"; shift 1
SERVER="$1"; shift 1
SHARE="$1"; shift 1
# Do not let deprecated option warnings muck this up
SAMBA_DEPRECATED_SUPPRESS=1
export SAMBA_DEPRECATED_SUPPRESS
incdir=$(dirname $0)/../../../testprogs/blackbox
. $incdir/subunit.sh
failed=0
cd $SELFTEST_TMPDIR || exit 1
rm -f smbclient-stdin smbclient-stdout smbclient-stderr
mkfifo smbclient-stdin smbclient-stdout smbclient-stderr
CLI_FORCE_INTERACTIVE=1; export CLI_FORCE_INTERACTIVE
${SMBCLIENT} //${SERVER}/${SHARE} ${CONF} -U${USER}%${PASSWORD} \
< smbclient-stdin > smbclient-stdout 2>smbclient-stderr &
CLIENT_PID=$!
sleep 1
exec 100>smbclient-stdin 101<smbclient-stdout 102<smbclient-stderr
# consume the smbclient startup messages
head -n 1 <&101
FILE=x64
printf "open %s\\n" "$FILE" >&100
sleep 1
testit "Create builtin\\administrators group" \
"${NET}" groupmap add \
sid=S-1-5-32-544 unixgroup="${USER}"-group type=builtin || \
failed=$((failed+1))
testit "Add ${USER} to builtin\\administrators" \
"${NET}" groupmap addmem S-1-5-32-544 \
$("${NET}" lookup name "${USER}" | cut -d' ' -f1) || \
failed=$((failed+1))
"${RPCCLIENT}" "${SERVER}" -U"${USER}"%"${PASSWORD}" -c netfileenum |
grep "$FILE"\$
RC=$?
testit "netfileenum" test $RC = 0 || failed=$((failed+1))
kill ${CLIENT_PID}
rm -f smbclient-stdin smbclient-stdout smbclient-stderr
testit "Remove ${USER} from builtin\\administrators" \
"${NET}" groupmap delmem S-1-5-32-544 \
$("${NET}" lookup name "${USER}" | cut -d' ' -f1) || \
failed=$((failed+1))
testit "Remove builtin\\administrators group" \
"${NET}" groupmap delete \
sid=S-1-5-32-544 || \
failed=$((failed+1))
testok $0 $failed