r17989: Add RPC-NETLOGON as a test we now run against Samba4.
[bbaumbach/samba-autobuild/.git] / source4 / script / tests / test_rpc_quick.sh
1 #!/bin/sh
2
3 # add tests to this list as they start passing, so we test
4 # that they stay passing
5 ncacn_np_tests="RPC-ALTERCONTEXT RPC-JOIN RPC-ECHO RPC-SCHANNEL RPC-NETLOGON"
6 ncalrpc_tests="RPC-ALTERCONTEXT RPC-JOIN RPC-ECHO RPC-SCHANNEL RPC-NETLOGON"
7 ncacn_ip_tcp_tests="RPC-ALTERCONTEXT RPC-JOIN RPC-ECHO RPC-SCHANNEL RPC-NETLOGON"
8
9 if [ $# -lt 4 ]; then
10 cat <<EOF
11 Usage: test_rpc_quick.sh SERVER USERNAME PASSWORD DOMAIN
12 EOF
13 exit 1;
14 fi
15
16 server="$1"
17 username="$2"
18 password="$3"
19 domain="$4"
20 shift 4
21
22 incdir=`dirname $0`
23 . $incdir/test_functions.sh
24
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
39
40 testok $0 $failed