summaryrefslogtreecommitdiffstats
path: root/source3/script/tests/test_bad_auditnames.sh
blob: 69ddf1436f4c96ee0146db93c480097dcef1375f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh

# this tests a full audit share with bad VFS
# names will not allow connection.
# BUG: https://bugzilla.samba.org/show_bug.cgi?id=15098

if [ $# -lt 5 ]; then
	cat <<EOF
Usage: $0 SERVER SHARE USERNAME PASSWORD SMBCLIENT
EOF
	exit 1
fi

SERVER="$1"
SHARE="$2"
USERNAME="$3"
PASSWORD="$4"
SMBCLIENT="$5"
SMBCLIENT="$VALGRIND ${SMBCLIENT}"

incdir=$(dirname "$0")/../../../testprogs/blackbox
. "$incdir/subunit.sh"

can_connect()
{
	$SMBCLIENT //"$SERVER"/"$SHARE" -U"$USERNAME"%"$PASSWORD" -c "ls" | grep "tree connect failed: NT_STATUS_UNSUCCESSFUL" >/dev/null 2>&1
}

testit "Cannot connect to share $SHARE" can_connect || failed=$((failed + 1))