mirror of
https://github.com/samba-team/samba.git
synced 2025-01-07 17:18:11 +03:00
9c67ff461d
BUG: https://bugzilla.samba.org/show_bug.cgi?id=8093 Signed-off-by: Uri Simchoni <uri@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Uri Simchoni <uri@samba.org> Autobuild-Date(master): Wed Mar 2 23:51:56 CET 2016 on sn-devel-144
31 lines
785 B
Bash
Executable File
31 lines
785 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# this tests share enumeration with "access based share enum"
|
|
|
|
if [ $# -lt 4 ]; then
|
|
cat <<EOF
|
|
Usage: $0 SERVER USERNAME PASSWORD RPCCLIENT
|
|
EOF
|
|
exit 1;
|
|
fi
|
|
|
|
SERVER="$1"
|
|
USERNAME="$2"
|
|
PASSWORD="$3"
|
|
RPCCLIENT="$4"
|
|
RPCCLIENT="$VALGRIND ${RPCCLIENT}"
|
|
|
|
incdir=`dirname $0`/../../../testprogs/blackbox
|
|
. $incdir/subunit.sh
|
|
|
|
user_see_share() {
|
|
local user=$1
|
|
local share=$2
|
|
$RPCCLIENT //$SERVER -U$user%$PASSWORD -c "netshareenumall" | grep $share > /dev/null 2>&1
|
|
}
|
|
|
|
testit "$USERNAME sees tmp" user_see_share $USERNAME tmp
|
|
testit "$USERNAME sees valid-users-tmp" user_see_share $USERNAME valid-users-tmp
|
|
testit "force_user sees tmp" user_see_share force_user tmp
|
|
testit_expect_failure "force_user does not see valid-users-tmp" user_see_share force_user valid-users-tmp
|