summaryrefslogtreecommitdiffstats
path: root/source3/script/tests/test_rpcclient_samlogon.sh
blob: 01af7f80a152625d6b6ceb7b25194632b7837a32 (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
#!/bin/sh

if [ $# -lt 3 ]; then
cat <<EOF
Usage: test_rpcclient_samlogon.sh USERNAME PASSWORD binding <rpcclient commands>
EOF
exit 1;
fi

USERNAME="$1"
PASSWORD="$2"
shift 2
ADDARGS="$*"

rpcclient_samlogon()
{
	$VALGRIND $BINDIR/rpcclient -U% -c "samlogon $USERNAME $PASSWORD;samlogon $USERNAME $PASSWORD" $@
}


incdir=`dirname $0`/../../../testprogs/blackbox
. $incdir/subunit.sh
testit "rpcclient dsenumdomtrusts" $VALGRIND $BINDIR/rpcclient $ADDARGS -U% -c "dsenumdomtrusts" || failed=`expr $failed + 1`
testit "rpcclient getdcsitecoverage" $VALGRIND $BINDIR/rpcclient $ADDARGS -U% -c "getdcsitecoverage" || failed=`expr $failed + 1`
testit "rpcclient samlogon" rpcclient_samlogon $ADDARGS || failed=`expr $failed +1`

testok $0 $failed