r18190: Add more NET tests to be run on the build farm.
[Samba/ekacnet.git] / source / script / tests / test_net.sh
blobeb36f27cbb5b4b41cf1653b0fee7075dd11990b9
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="NET-API-LOOKUP NET-API-LOOKUPHOST NET-API-LOOKUPPDC NET-API-RPCCONN-BIND NET-API-RPCCONN-SRV NET-API-RPCCONN-DC NET-API-RPCCONN-DCINFO NET-API-LISTSHARES NET-API-CREATEUSER NET-API-DELETEUSER"
6 ncalrpc_tests="NET-API-RPCCONN-SRV NET-API-RPCCONN-DC NET-API-RPCCONN-DCINFO NET-API-LISTSHARES NET-API-CREATEUSER NET-API-DELETEUSER"
7 ncacn_ip_tcp_tests="NET-API-LOOKUP NET-API-LOOKUPHOST NET-API-LOOKUPPDC NET-API-RPCCONN-SRV NET-API-RPCCONN-DC NET-API-RPCCONN-DCINFO NET-API-LISTSHARES NET-API-CREATEUSER NET-API-DELETEUSER"
9 if [ $# -lt 4 ]; then
10 cat <<EOF
11 Usage: test_rpc.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