s3:test: rename samba3.blackbox.net_s3_registry -> samba3.blackbox.net.local.registry
[Samba.git] / source3 / selftest / tests.sh
blob1e4f3c1f7974b4d60a311fd29f01271206b83678
1 #!/bin/bash
2 ### ^^^FIXME -> sh ... breaks testing on *BSD etc. ... see FIXME's below
3 # This script generates a list of testsuites that should be run as part of
4 # the Samba 3 test suite.
6 # The output of this script is parsed by selftest.pl, which then decides
7 # which of the tests to actually run. It will, for example, skip all tests
8 # listed in selftest/skip or only run a subset during "make quicktest".
10 # The idea is that this script outputs all of the tests of Samba 3, not
11 # just those that are known to pass, and list those that should be skipped
12 # or are known to fail in selftest/skip or selftest/samba4-knownfail. This makes it
13 # very easy to see what functionality is still missing in Samba 3 and makes
14 # it possible to run the testsuite against other servers, such as Samba 4 or
15 # Windows that have a different set of features.
17 # The syntax for a testsuite is "-- TEST --" on a single line, followed
18 # by the name of the test, the environment it needs and the command to run, all
19 # three separated by newlines. All other lines in the output are considered
20 # comments.
22 if [ ! -n "$PERL" ]
23 then
24 PERL=perl
27 plantest() {
28 name=$1
29 env=$2
30 shift 2
31 cmdline="$*"
32 echo "-- TEST --"
33 if [ "$env" = "none" ]; then
34 fullname="samba3.$name"
35 else
36 fullname="samba3.$name ($env)"
38 echo $fullname
39 echo $env
40 echo $cmdline "2>&1" "| ../selftest/filter-subunit --prefix \"$fullname.\""
43 TEST_FUNCTIONS_SH="INCLUDED"
44 testit() {
45 name=$1
46 shift 1
47 cmdline="$*"
49 plantest "$testitprefix$name" $testitenv $cmdline
50 return
53 testok() {
54 true
55 return
58 BINDIR=`dirname $0`/../bin
59 export BINDIR
61 SCRIPTDIR=`dirname $0`/../script/tests
62 export SCRIPTDIR
64 CONFIGURATION="--configfile \$SMB_CONF_PATH"
65 export CONFIGURATION
67 CONFFILE="\$SMB_CONF_PATH"
68 export CONFFILE
70 SERVER="\$SERVER"
71 export SERVER
73 USERNAME="\$USERNAME"
74 export USERNAME
76 PASSWORD="\$PASSWORD"
77 export PASSWORD
79 LOCAL_PATH="\$LOCAL_PATH"
80 export LOCAL_PATH
83 shift $#
84 testitprefix="local_s3."
85 testitenv="none"
86 . $SCRIPTDIR/test_local_s3.sh
90 shift $#
91 testitprefix="smbtorture_s3.plain."
92 testitenv="dc"
93 #FIXME: shell sourcing with ARGS is just supported by bash but bash isn't everywhere.
94 . $SCRIPTDIR/test_smbtorture_s3.sh //\$SERVER_IP/tmp \$USERNAME \$PASSWORD "" "" "-l \$LOCAL_PATH"
98 shift $#
99 testitprefix="smbtorture_s3.crypt."
100 testitenv="dc"
101 #FIXME: shell sourcing with ARGS is just supported by bash but bash isn't everywhere.
102 . $SCRIPTDIR/test_smbtorture_s3.sh //\$SERVER_IP/tmp \$USERNAME \$PASSWORD "" "-e" "-l \$LOCAL_PATH"
106 shift $#
107 testitprefix="wbinfo_s3."
108 testitenv="dc:local"
109 #FIXME: shell sourcing with ARGS is just supported by bash but bash isn't everywhere.
110 . $SCRIPTDIR/test_wbinfo_s3.sh \$DOMAIN \$SERVER \$USERNAME \$PASSWORD
114 shift $#
115 testitprefix="wbinfo_s3."
116 testitenv="dc:local"
117 #FIXME: shell sourcing with ARGS is just supported by bash but bash isn't everywhere.
118 . $SCRIPTDIR/test_wbinfo_s3.sh \$DOMAIN \$SERVER \$DOMAIN\\\\\$USERNAME \$PASSWORD
122 shift $#
123 testitprefix="wbinfo_s3."
124 testitenv="member:local"
125 #FIXME: shell sourcing with ARGS is just supported by bash but bash isn't everywhere.
126 . $SCRIPTDIR/test_wbinfo_s3.sh \$DOMAIN \$SERVER \$DOMAIN\\\\\$USERNAME \$PASSWORD
130 shift $#
131 testitprefix="ntlm_auth_s3."
132 testitenv="dc:local"
133 . $SCRIPTDIR/test_ntlm_auth_s3.sh
136 # plain
137 plantest "blackbox.smbclient_s3.plain" dc BINDIR="$BINDIR" script/tests/test_smbclient_s3.sh \$SERVER \$SERVER_IP \$USERNAME \$PASSWORD \$USERID \$LOCAL_PATH
138 plantest "blackbox.smbclient_s3.plain member creds" member BINDIR="$BINDIR" script/tests/test_smbclient_s3.sh \$SERVER \$SERVER_IP \$SERVER\\\\\$USERNAME \$PASSWORD \$USERID \$LOCAL_PATH
139 #plantest "blackbox.smbclient_s3.plain domain creds" member BINDIR="$BINDIR" script/tests/test_smbclient_s3.sh \$SERVER \$SERVER_IP \$DOMAIN\\\\\$DC_USERNAME \$DC_PASSWORD \$USERID \$LOCAL_PATH
141 # sign, only the member server allows signing
142 plantest "blackbox.smbclient_s3.sign member creds" member BINDIR="$BINDIR" script/tests/test_smbclient_s3.sh \$SERVER \$SERVER_IP \$SERVER\\\\\$USERNAME \$PASSWORD \$USERID \$LOCAL_PATH "--signing=required"
143 #plantest "blackbox.smbclient_s3.sign domain creds" member BINDIR="$BINDIR" script/tests/test_smbclient_s3.sh \$SERVER \$SERVER_IP \$DOMAIN\\\\\$DC_USERNAME \$DC_PASSWORD \$USERID \$LOCAL_PATH "--signing=required"
145 # encrypted
146 plantest "blackbox.smbclient_s3.crypt" dc BINDIR="$BINDIR" script/tests/test_smbclient_s3.sh \$SERVER \$SERVER_IP \$USERNAME \$PASSWORD \$USERID \$LOCAL_PATH "-e"
148 # these don't work yet
149 #plantest "blackbox.smbclient_s3.crypt member creds" member BINDIR="$BINDIR" script/tests/test_smbclient_s3.sh \$SERVER \$SERVER_IP \$SERVER\\\\\$USERNAME \$PASSWORD "-e"
150 #plantest "blackbox.smbclient_s3.crypt domain creds" member BINDIR="$BINDIR" script/tests/test_smbclient_s3.sh \$SERVER \$SERVER_IP \$DOMAIN\\\\\$DC_USERNAME \$DC_PASSWORD "-e"
152 plantest "blackbox.net.misc" dc:local BINDIR="$BINDIR" SCRIPTDIR="$SCRIPTDIR" SERVERCONFFILE="\$SMB_CONF_PATH" script/tests/test_net_misc.sh
153 plantest "blackbox.net.local.registry" dc:local BINDIR="$BINDIR" SCRIPTDIR="$SCRIPTDIR" SERVERCONFFILE="\$SMB_CONF_PATH" script/tests/test_net_registry.sh
154 plantest "blackbox.net_s3_registry_rpc" dc:local BINDIR="$BINDIR" SCRIPTDIR="$SCRIPTDIR" SERVERCONFFILE="\$SMB_CONF_PATH" script/tests/test_net_registry.sh rpc
155 plantest "blackbox.net_s3_registry_roundtrip" dc:local BINDIR="$BINDIR" SCRIPTDIR="$SCRIPTDIR" SERVERCONFFILE="\$SMB_CONF_PATH" script/tests/test_net_registry_roundtrip.sh
156 plantest "blackbox.testparm_s3" dc:local LOCAL_PATH="$LOCAL_PATH" BINDIR="$BINDIR" SCRIPTDIR="$SCRIPTDIR" SERVERCONFFILE="\$SMB_CONF_PATH" script/tests/test_testparm_s3.sh
159 shift $#
160 testitprefix="posix_s3."
161 testitenv="dc"
163 SMBTORTURE4BINARY=$SMBTORTURE4
164 TORTURE4_OPTIONS=""
165 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --configfile=\$SMB_CONF_PATH"
166 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --maximum-runtime=$SELFTEST_MAXTIME"
167 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --target=$SELFTEST_TARGET"
168 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --basedir=$SELFTEST_PREFIX"
169 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --option=\"torture:winbindd_netbios_name=\$SERVER\""
170 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --option=\"torture:winbindd_netbios_domain=\$DOMAIN\""
171 if [ -n "$SELFTEST_VERBOSE" ]; then
172 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --option=torture:progress=no"
174 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --format=subunit"
175 if [ -n "$SELFTEST_QUICK" ]; then
176 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --option=torture:quick=yes"
179 # This is an ugly hack...
180 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --option=torture:localdir=$SELFTEST_PREFIX/dc/share"
182 if [ -x "$SMBTORTURE4" ]; then
183 LIB_PATH_VAR_VAR="\$`echo $LIB_PATH_VAR`"
184 S4_LIB_PREFIX=`eval echo "$LIB_PATH_VAR=\"$SAMBA4SHAREDDIR:$LIB_PATH_VAR_VAR\""`
185 SMBTORTURE4="$S4_LIB_PREFIX $SMBTORTURE4"
186 SMBTORTURE4VERSION=`eval $SMBTORTURE4 --version`
188 if [ -n "$SMBTORTURE4" -a -n "$SMBTORTURE4VERSION" ];then
189 echo "Using SMBTORTURE4: $SMBTORTURE4BINARY"
190 echo "Version: $SMBTORTURE4VERSION"
191 #FIXME: shell sourcing with ARGS is just supported by bash but bash isn't everywhere.
192 . $SCRIPTDIR/test_posix_s3.sh //\$SERVER_IP/tmp \$USERNAME \$PASSWORD "" ""
193 else
194 echo "Skip Tests with Samba4's smbtorture"
195 echo "Try to compile with --with-smbtorture4-path=PATH to enable"