summaryrefslogtreecommitdiffstats
path: root/source3/script/tests/test_registry_share.sh
blob: 22e9f732a58c8420bfd2cdfe93a6fc00018a6591 (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
30
31
32
33
34
35
36
37
38
39
#!/bin/sh
# Blackbox tests for registry shares
#

if [ $# -lt 3 ]; then
	cat <<EOF
Usage: test_registry_share.sh SERVER USERNAME PASSWORD
EOF
	exit 1
fi

SERVER=$1
USERNAME=$2
PASSWORD=$3
shift 3
failed=0

samba_bindir="$BINDIR"
samba_srcdir="$SRCDIR"
smbclient="$samba_bindir/smbclient"
rpcclient="$samba_bindir/rpcclient"

. $samba_srcdir/testprogs/blackbox/subunit.sh
. $samba_srcdir/testprogs/blackbox/common_test_fns.inc

test_smbclient \
	"Test access to registry share [${USERNAME}]" \
	"ls" "//${SERVER}/registry_share" "-U$USERNAME%$PASSWORD" ||
	failed=$((failed + 1))

testit_grep_count \
	"Test for share enum with registry share" \
	"netname: registry_share" \
	1 \
	${rpcclient} "ncacn_np:${SERVER}" "-U$USERNAME%$PASSWORD" \
	-c netshareenum ||
	failed=$((failed + 1))

testok "$0" "$failed"