5156aa59678c64a94e0fb0b42db3683d6e262c51
[garming/samba-autobuild/.git] / source / script / tests / test_net.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="NET-API-LOOKUP NET-API-LOOKUPHOST NET-API-LOOKUPPDC NET-API-RPCCONN-BIND NET-API-RPCCONN-SRV NET-API-RPCCONN-PDC 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 NET-USERINFO NET-USERADD NET-USERDEL NET-USERMOD NET-API-LOOKUPNAME NET-API-USERINFO NET-API-USERLIST NET-API-DOMOPENLSA NET-API-DOMCLOSELSA NET-API-DOMOPENSAMR NET-API-DOMCLOSESAMR"
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 NET-API-MODIFYUSER"
8
9 incdir=`dirname $0`
10 . $incdir/test_functions.sh
11
12 for bindoptions in seal,padcheck $VALIDATE bigendian; do
13  for transport in ncalrpc ncacn_np ncacn_ip_tcp; do
14      case $transport in
15          ncalrpc) tests=$ncalrpc_tests ;;
16          ncacn_np) tests=$ncacn_np_tests ;;
17          ncacn_ip_tcp) tests=$ncacn_ip_tcp_tests ;;
18      esac
19    for t in $tests; do
20     name="$t on $transport with $bindoptions"
21     plantest "$name" dc $VALGRIND bin/smbtorture $TORTURE_OPTIONS $transport:"\$SERVER[$bindoptions]" -U"\$USERNAME"%"\$PASSWORD" -W "\$DOMAIN" $t "$*"
22    done
23  done
24 done