94621841f55c1f1e60d7bab570f9dfd4c14e1cef
[metze/samba/wip.git] / source3 / script / tests / selftest.sh
1 #!/bin/sh
2
3 if [ $# -lt 2 ]; then
4         echo "$0 <directory> <all | quick> [-t <smbtorture4>] [-s <shrdir>] " \
5              "[-c <custom conf>]"
6         exit 1
7 fi
8
9 ##
10 ## Setup the required args
11 ##
12 DIRECTORY=$1; shift;
13 SUBTESTS=$1; shift;
14
15 ##
16 ## Parse oprtional args
17 ##
18 while getopts s:c:t: f
19 do
20     case $f in
21         t)      SMBTORTURE4=$OPTARG;;
22         s)      ALT_SHRDIR_ARG=$OPTARG;;
23         c)      CUSTOM_CONF_ARG=$OPTARG;;
24     esac
25 done
26
27 echo "Running selftest with the following"
28 echo "Selftest Directory: $DIRECTORY"
29 echo "Subtests to Run: $SUBTESTS"
30 echo "smbtorture4 Path: $SMBTORTURE4"
31 echo "Alternative Share Dir: $ALT_SHRDIR_ARG"
32 echo "Custom Configuration: $CUSTOM_CONF_ARG"
33
34 if [ $CUSTOM_CONF_ARG ]; then
35     INCLUDE_CUSTOM_CONF="include = $CUSTOM_CONF_ARG"
36 fi
37
38 ##
39 ## create the test directory
40 ##
41 PREFIX=`echo $DIRECTORY | sed s+//+/+`
42 mkdir -p $PREFIX || exit $?
43 OLD_PWD=`pwd`
44 cd $PREFIX || exit $?
45 PREFIX_ABS=`pwd`
46 cd $OLD_PWD
47
48 if [ -z "$TORTURE_MAXTIME" ]; then
49     TORTURE_MAXTIME=300
50 fi
51 export TORTURE_MAXTIME
52
53 ##
54 ## setup the various environment variables we need
55 ##
56
57 WORKGROUP=SAMBA-TEST
58 SERVER=localhost2
59 SERVER_IP=127.0.0.2
60 USERNAME=`PATH=/usr/ucb:$PATH whoami`
61 USERID=`PATH=/usr/ucb:$PATH id | cut -d ' ' -f1 | sed -e 's/uid=\([0-9]*\).*/\1/g'`
62 GROUPID=`PATH=/usr/ucb:$PATH id | cut -d ' ' -f2 | sed -e 's/gid=\([0-9]*\).*/\1/g'`
63 PASSWORD=test
64
65 SRCDIR="`dirname $0`/../.."
66 BINDIR="`pwd`/bin"
67 SCRIPTDIR=$SRCDIR/script/tests
68 LIBDIR=$PREFIX_ABS/lib
69 PIDDIR=$PREFIX_ABS/pid
70 CONFFILE=$LIBDIR/client.conf
71 SAMBA4CONFFILE=$LIBDIR/samba4client.conf
72 SERVERCONFFILE=$LIBDIR/server.conf
73 COMMONCONFFILE=$LIBDIR/common.conf
74 PRIVATEDIR=$PREFIX_ABS/private
75 LOCKDIR=$PREFIX_ABS/lockdir
76 LOGDIR=$PREFIX_ABS/logs
77 SOCKET_WRAPPER_DIR=$PREFIX/sw
78 CONFIGURATION="--configfile $CONFFILE"
79 SAMBA4CONFIGURATION="-s $SAMBA4CONFFILE"
80 NSS_WRAPPER_PASSWD="$PRIVATEDIR/passwd"
81 NSS_WRAPPER_GROUP="$PRIVATEDIR/group"
82 WINBINDD_SOCKET_DIR=$PREFIX_ABS/winbindd
83 WINBINDD_PRIV_PIPE_DIR=$LOCKDIR/winbindd_privileged
84
85 export PREFIX PREFIX_ABS
86 export CONFIGURATION CONFFILE SAMBA4CONFIGURATION SAMBA4CONFFILE
87 export PATH SOCKET_WRAPPER_DIR DOMAIN
88 export PRIVATEDIR LIBDIR PIDDIR LOCKDIR LOGDIR SERVERCONFFILE
89 export SRCDIR SCRIPTDIR BINDIR
90 export USERNAME PASSWORD
91 export WORKGROUP SERVER SERVER_IP
92 export NSS_WRAPPER_PASSWD NSS_WRAPPER_GROUP
93 export WINBINDD_SOCKET_DIR WINBINDD_PRIV_PIPE_DIR
94
95 PATH=bin:$PATH
96 export PATH
97
98 if [ $SMBTORTURE4 ]; then
99     SAMBA4BINDIR=`dirname $SMBTORTURE4`
100 fi
101
102 SAMBA4SHAREDDIR="$SAMBA4BINDIR/shared"
103
104 export SAMBA4SHAREDDIR
105 export SMBTORTURE4
106
107 if test x"$LD_LIBRARY_PATH" != x""; then
108         LD_LIBRARY_PATH="$BINDIR:$SAMBA4SHAREDDIR:$LD_LIBRARY_PATH"
109 else
110         LD_LIBRARY_PATH="$BINDIR:$SAMBA4SHAREDDIR"
111 fi
112 echo "LD_LIBRARY_PATH=$LD_LIBRARY_PATH"
113 export LD_LIBRARY_PATH
114
115 ##
116 ## verify that we were built with --enable-socket-wrapper
117 ##
118
119 if test "x`smbd -b | grep SOCKET_WRAPPER`" = "x"; then
120         echo "***"
121         echo "*** You must include --enable-socket-wrapper when compiling Samba"
122         echo "*** in order to execute 'make test'.  Exiting...."
123         echo "***"
124         exit 1
125 fi
126
127 if test "x`smbd -b | grep NSS_WRAPPER`" = "x"; then
128         echo "***"
129         echo "*** You must include --enable-nss-wrapper when compiling Samba"
130         echo "*** in order to execute 'make test'.  Exiting...."
131         echo "***"
132         exit 1
133 fi
134
135
136 ## 
137 ## create the test directory layout
138 ##
139 printf "%s" "CREATE TEST ENVIRONMENT IN '$PREFIX'"...
140 /bin/rm -rf $PREFIX/*
141 mkdir -p $PRIVATEDIR $LIBDIR $PIDDIR $LOCKDIR $LOGDIR
142 mkdir -p $SOCKET_WRAPPER_DIR
143 mkdir -p $WINBINDD_SOCKET_DIR
144 chmod 755 $WINBINDD_SOCKET_DIR
145
146 ##
147 ## Create an alternate shrdir if one was specified.
148 ##
149 if [ $ALT_SHRDIR_ARG ]; then
150     ALT_SHRDIR=`echo $ALT_SHRDIR_ARG | sed s+//+/+`
151     mkdir -p $ALT_SHRDIR || exit $?
152     OLD_PWD=`pwd`
153     cd $ALT_SHRDIR || exit $?
154     SHRDIR=`pwd`
155     cd $OLD_PWD
156     /bin/rm -rf $SHRDIR/*
157 else
158     SHRDIR=$PREFIX_ABS/tmp
159     mkdir -p $SHRDIR
160 fi
161 chmod 777 $SHRDIR
162
163 ##
164 ## Create the common config include file with the basic settings
165 ##
166
167 cat >$COMMONCONFFILE<<EOF
168         workgroup = $WORKGROUP
169
170         private dir = $PRIVATEDIR
171         pid directory = $PIDDIR
172         lock directory = $LOCKDIR
173         log file = $LOGDIR/log.%m
174         log level = 0
175
176         name resolve order = bcast
177 EOF
178
179 TORTURE_INTERFACES='127.0.0.6/8,127.0.0.7/8,127.0.0.8/8,127.0.0.9/8,127.0.0.10/8,127.0.0.11/8'
180
181 cat >$CONFFILE<<EOF
182 [global]
183         netbios name = TORTURE_6
184         interfaces = $TORTURE_INTERFACES
185         panic action = $SCRIPTDIR/gdb_backtrace %d %\$(MAKE_TEST_BINARY)
186         include = $COMMONCONFFILE
187
188         passdb backend = tdbsam
189 EOF
190
191 cat >$SAMBA4CONFFILE<<EOF
192 [global]
193         netbios name = TORTURE_6
194         interfaces = $TORTURE_INTERFACES
195         panic action = $SCRIPTDIR/gdb_backtrace %PID% %PROG%
196         include = $COMMONCONFFILE
197         modules dir = $SRCDIR/bin/modules
198 EOF
199
200 cat >$SERVERCONFFILE<<EOF
201 [global]
202         netbios name = $SERVER
203         interfaces = $SERVER_IP/8
204         bind interfaces only = yes
205         panic action = $SCRIPTDIR/gdb_backtrace %d %\$(MAKE_TEST_BINARY)
206         include = $COMMONCONFFILE
207
208         state directory = $LOCKDIR
209         cache directory = $LOCKDIR
210
211         passdb backend = tdbsam
212
213         domain master = yes
214         domain logons = yes
215         time server = yes
216
217         add user script = $PERL $SRCDIR/../lib/nss_wrapper/nss_wrapper.pl --path $NSS_WRAPPER_PASSWD --type passwd --action add --name %u
218         add machine script = $PERL $SRCDIR/../lib/nss_wrapper/nss_wrapper.pl --path $NSS_WRAPPER_PASSWD --type passwd --action add --name %u
219         delete user script = $PERL $SRCDIR/../lib/nss_wrapper/nss_wrapper.pl --path $NSS_WRAPPER_PASSWD --type passwd --action delete --name %u
220
221         kernel oplocks = no
222         kernel change notify = no
223
224         syslog = no
225         printing = bsd
226         printcap name = /dev/null
227
228         winbindd:socket dir = $WINBINDD_SOCKET_DIR
229         idmap uid = 100000-200000
230         idmap gid = 100000-200000
231
232 #       min receivefile size = 4000
233
234         read only = no
235         smbd:sharedelay = 100000
236         smbd:writetimeupdatedelay = 500000
237         map hidden = yes
238         map system = yes
239         create mask = 755
240         vfs objects = $BINDIR/xattr_tdb.so $BINDIR/streams_depot.so
241
242         #Include user defined custom parameters if set
243         $INCLUDE_CUSTOM_CONF
244
245 [tmp]
246         path = $SHRDIR
247 [hideunread]
248         copy = tmp
249         hide unreadable = yes
250 [hideunwrite]
251         copy = tmp
252         hide unwriteable files = yes
253 [print1]
254         copy = tmp
255         printable = yes
256         printing = test
257 [print2]
258         copy = print1
259 [print3]
260         copy = print1
261 [print4]
262         copy = print1
263 EOF
264
265 ##
266 ## create a test account
267 ##
268
269 cat >$NSS_WRAPPER_PASSWD<<EOF
270 nobody:x:65534:65533:nobody gecos:$PREFIX_ABS:/bin/false
271 $USERNAME:x:$USERID:$GROUPID:$USERNAME gecos:$PREFIX_ABS:/bin/false
272 EOF
273
274 cat >$NSS_WRAPPER_GROUP<<EOF
275 nobody:x:65533:
276 nogroup:x:65534:nobody
277 $USERNAME-group:x:$GROUPID:
278 EOF
279
280 MAKE_TEST_BINARY="bin/smbpasswd"
281 export MAKE_TEST_BINARY
282
283 (echo $PASSWORD; echo $PASSWORD) | \
284         bin/smbpasswd -c $CONFFILE -L -s -a $USERNAME >/dev/null || exit 1
285
286 echo "DONE";
287
288 MAKE_TEST_BINARY=""
289
290 SERVER_TEST_FIFO="$PREFIX/server_test.fifo"
291 export SERVER_TEST_FIFO
292 NMBD_TEST_LOG="$PREFIX/nmbd_test.log"
293 export NMBD_TEST_LOG
294 WINBINDD_TEST_LOG="$PREFIX/winbindd_test.log"
295 export WINBINDD_TEST_LOG
296 SMBD_TEST_LOG="$PREFIX/smbd_test.log"
297 export SMBD_TEST_LOG
298
299 # start off with 0 failures
300 failed=0
301 export failed
302
303 . $SCRIPTDIR/test_functions.sh
304
305 SOCKET_WRAPPER_DEFAULT_IFACE=2
306 export SOCKET_WRAPPER_DEFAULT_IFACE
307 samba3_check_or_start
308
309
310 # ensure any one smbtorture call doesn't run too long
311 # and smbtorture will use 127.0.0.6 as source address by default
312 SOCKET_WRAPPER_DEFAULT_IFACE=6
313 export SOCKET_WRAPPER_DEFAULT_IFACE
314 TORTURE4_OPTIONS="$SAMBA4CONFIGURATION"
315 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --maximum-runtime=$TORTURE_MAXTIME"
316 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --target=samba3"
317 TORTURE4_OPTIONS="$TORTURE4_OPTIONS --option=torture:localdir=$SHRDIR"
318 export TORTURE4_OPTIONS
319
320 if [ x"$RUN_FROM_BUILD_FARM" = x"yes" ];then
321         TORTURE4_OPTIONS="$TORTURE4_OPTIONS --option=torture:progress=no"
322 fi
323
324
325 ##
326 ## ready to go...now loop through the tests
327 ##
328
329 START=`date`
330 (
331  # give time for nbt server to register its names
332  echo "delaying for nbt name registration"
333  sleep 10
334  # This will return quickly when things are up, but be slow if we need to wait for (eg) SSL init 
335  MAKE_TEST_BINARY="bin/nmblookup"
336  bin/nmblookup $CONFIGURATION -U $SERVER_IP __SAMBA__
337  bin/nmblookup $CONFIGURATION __SAMBA__
338  bin/nmblookup $CONFIGURATION -U 127.255.255.255 __SAMBA__
339  bin/nmblookup $CONFIGURATION -U $SERVER_IP $SERVER
340  bin/nmblookup $CONFIGURATION $SERVER
341  # make sure smbd is also up set
342  echo "wait for smbd"
343  MAKE_TEST_BINARY="bin/smbclient"
344  bin/smbclient $CONFIGURATION -L $SERVER_IP -U% -p 139 | head -2
345  bin/smbclient $CONFIGURATION -L $SERVER_IP -U% -p 139 | head -2
346  MAKE_TEST_BINARY=""
347
348  failed=0
349
350  . $SCRIPTDIR/tests_$SUBTESTS.sh
351  exit $failed
352 )
353 failed=$?
354
355 samba3_stop_sig_term
356
357 END=`date`
358 echo "START: $START ($0)";
359 echo "END:   $END ($0)";
360
361 # if there were any valgrind failures, show them
362 count=`find $PREFIX -name 'valgrind.log*' | wc -l`
363 if [ "$count" != 0 ]; then
364     for f in $PREFIX/valgrind.log*; do
365         if [ -s $f ]; then
366             echo "VALGRIND FAILURE";
367             failed=`expr $failed + 1`
368             cat $f
369         fi
370     done
371 fi
372
373 sleep 2
374 samba3_stop_sig_kill
375
376 teststatus $0 $failed