From 0e46205ff83d137ca486868e4376b258b6dfa1a2 Mon Sep 17 00:00:00 2001 From: Garming Sam Date: Fri, 29 Nov 2013 16:51:08 +1300 Subject: selftest: add new rpc client test Pair-programmed-with: Andrew Bartlett Signed-off-by: Garming Sam Signed-off-by: Andrew Bartlett Reviewed-by: Andrew Bartlett Reviewed-by: Stefan Metzmacher --- source3/script/tests/test_rpcclient_samlogon.sh | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 source3/script/tests/test_rpcclient_samlogon.sh (limited to 'source3/script/tests') diff --git a/source3/script/tests/test_rpcclient_samlogon.sh b/source3/script/tests/test_rpcclient_samlogon.sh new file mode 100755 index 00000000000..01af7f80a15 --- /dev/null +++ b/source3/script/tests/test_rpcclient_samlogon.sh @@ -0,0 +1,27 @@ +#!/bin/sh + +if [ $# -lt 3 ]; then +cat < +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 -- cgit