Home | History | Annotate | Line # | Download | only in scripts
      1 #! /bin/sh
      2 # $OpenLDAP$
      3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
      4 ##
      5 ## Copyright 1998-2024 The OpenLDAP Foundation.
      6 ## All rights reserved.
      7 ##
      8 ## Redistribution and use in source and binary forms, with or without
      9 ## modification, are permitted only as authorized by the OpenLDAP
     10 ## Public License.
     11 ##
     12 ## A copy of this license is available in the file LICENSE in the
     13 ## top-level directory of the distribution or, alternatively, at
     14 ## <http://www.OpenLDAP.org/license.html>.
     15 
     16 echo "running defines.sh"
     17 . $SRCDIR/scripts/defines.sh
     18 
     19 if test x$TESTLOOPS = x ; then
     20 	TESTLOOPS=50
     21 fi
     22 
     23 mkdir -p $TESTDIR $DBDIR1
     24 
     25 echo "Running slapadd to build slapd database..."
     26 . $CONFFILTER $BACKEND < $CONF > $CONF1
     27 $SLAPADD -f $CONF1 -l $LDIFORDERED -d -1 2> $SLAPADDLOG1
     28 RC=$?
     29 if test $RC != 0 ; then
     30 	echo "slapadd failed ($RC)!"
     31 	exit $RC
     32 fi
     33 
     34 echo "Starting slapd on TCP/IP port $PORT1..."
     35 $SLAPD -f $CONF1 -h $URI1 -d $LVL > $LOG1 2>&1 &
     36 PID=$!
     37 if test $WAIT != 0 ; then
     38     echo PID $PID
     39     read foo
     40 fi
     41 KILLPIDS="$PID"
     42 
     43 sleep 1
     44 
     45 echo "Using ldapsearch to check that slapd is running..."
     46 for i in 0 1 2 3 4 5; do
     47 	$LDAPSEARCH -s base -b "$MONITOR" -H $URI1 \
     48 		'objectclass=*' > /dev/null 2>&1
     49 	RC=$?
     50 	if test $RC = 0 ; then
     51 		break
     52 	fi
     53 	echo "Waiting 5 seconds for slapd to start..."
     54 	sleep 5
     55 done
     56 
     57 # fix test data to include back-monitor, if available
     58 # NOTE: copies do_* files from $DATADIR to $TESTDIR
     59 $MONITORDATA "$DATADIR" "$TESTDIR"
     60 
     61 echo "Using tester for concurrent server access..."
     62 $SLAPDTESTER -P "$PROGDIR" -d "$TESTDIR" -H $URI1 -D "$MANAGERDN" -w $PASSWD -l $TESTLOOPS
     63 RC=$?
     64 
     65 if test $RC != 0 ; then
     66 	echo "slapd-tester failed ($RC)!"
     67 	test $KILLSERVERS != no && kill -HUP $KILLPIDS
     68 	exit $RC
     69 fi 
     70 
     71 echo "Using ldapsearch to retrieve all the entries..."
     72 $LDAPSEARCH -S "" -b "$BASEDN" -H $URI1 \
     73 			'objectClass=*' > $SEARCHOUT 2>&1
     74 RC=$?
     75 
     76 test $KILLSERVERS != no && kill -HUP $KILLPIDS
     77 
     78 if test $RC != 0 ; then
     79 	echo "ldapsearch failed ($RC)!"
     80 	exit $RC
     81 fi
     82 
     83 echo "Filtering ldapsearch results..."
     84 $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
     85 echo "Filtering original ldif used to create database..."
     86 $LDIFFILTER < $LDIF > $LDIFFLT
     87 echo "Comparing filter output..."
     88 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
     89 
     90 if test $? != 0 ; then
     91 	echo "comparison failed - database was not created correctly"
     92 	exit 1
     93 fi
     94 
     95 echo ">>>>> Test succeeded"
     96 
     97 test $KILLSERVERS != no && wait
     98 
     99 exit 0
    100