r10520: The join is a nice quick RPC test.
[Samba/aatanasov.git] / source / script / tests / test_rpc_quick.sh
blob4ff6df0211ac99994af5a85f852f3a3ad8e02d71
1 #!/bin/sh
3 # add tests to this list as they start passing, so we test
4 # that they stay passing
5 ncacn_np_tests="RPC-ECHO RPC-ALTERCONTEXT RPC-JOIN"
6 ncalrpc_tests="RPC-ECHO RPC-ALTERCONTEXT RPC-JOIN"
7 ncacn_ip_tcp_tests="RPC-ECHO RPC-ALTERCONTEXT RPC-JOIN"
9 if [ $# -lt 4 ]; then
10 cat <<EOF
11 Usage: test_rpc_quick.sh SERVER USERNAME PASSWORD DOMAIN
12 EOF
13 exit 1;
16 server="$1"
17 username="$2"
18 password="$3"
19 domain="$4"
20 shift 4
22 incdir=`dirname $0`
23 . $incdir/test_functions.sh
25 failed=0
26 for bindoptions in seal,validate,padcheck bigendian; do
27 for transport in ncalrpc ncacn_np ncacn_ip_tcp; do
28 case $transport in
29 ncalrpc) tests=$ncalrpc_tests ;;
30 ncacn_np) tests=$ncacn_np_tests ;;
31 ncacn_ip_tcp) tests=$ncacn_ip_tcp_tests ;;
32 esac
33 for t in $tests; do
34 name="$t on $transport with $bindoptions"
35 testit "$name" $VALGRIND bin/smbtorture $TORTURE_OPTIONS $transport:"$server[$bindoptions]" -U"$username"%"$password" -W $domain $t "$*" || failed=`expr $failed + 1`
36 done
37 done
38 done
40 testok $0 $failed