]> git.sur5r.net Git - openldap/blob - tests/scripts/test001-slapadd
New dn2id format with base/one/subtree indices (ldbm/bdb2)
[openldap] / tests / scripts / test001-slapadd
1 #! /bin/sh
2
3 if test $# -eq 0 ; then
4         SRCDIR="."
5 else
6         SRCDIR=$1; shift
7 fi
8 if test $# -eq 1 ; then
9         BACKEND=$1; shift
10 fi
11
12 echo "running defines.sh $SRCDIR $BACKEND"
13
14 . $SRCDIR/scripts/defines.sh
15
16 echo "Datadir is $DATADIR"
17
18 echo "Cleaning up in $DBDIR..."
19
20 rm -f $DBDIR/[!C]*
21
22 echo "Running ldif2ldbm to build slapd database..."
23 $LDIF2LDBM -f $CONF -l $LDIF
24 RC=$?
25 if test $RC != 0 ; then
26         echo "ldif2ldbm failed!"
27         exit $RC
28 fi
29
30 echo "Starting slapd on TCP/IP port $PORT..."
31 $SLAPD -f $CONF -p $PORT -d $LVL $TIMING > $MASTERLOG 2>&1 &
32 PID=$!
33
34 echo "Using ldapsearch to retrieve all the entries..."
35 for i in 0 1 2 3 4 5; do
36         $LDAPSEARCH -S "" -b "$BASEDN" -h localhost -p $PORT \
37                 'objectClass=*' > $SEARCHOUT 2>&1
38         RC=$?
39         if test $RC = 1 ; then
40                 echo "Waiting 5 seconds for slapd to start..."
41                 sleep 5
42         fi
43 done
44
45 kill -HUP $PID
46
47 if test $RC != 0 ; then
48         echo "ldapsearch failed!"
49         exit $RC
50 fi
51
52 echo "Filtering ldapsearch results..."
53 . $SRCDIR/scripts/acfilter.sh < $SEARCHOUT > $SEARCHFLT
54 echo "Filtering original ldif used to create database..."
55 . $SRCDIR/scripts/acfilter.sh < $LDIF > $LDIFFLT
56 echo "Comparing filter output..."
57 cmp $SEARCHFLT $LDIFFLT
58
59 if test $? != 0 ; then
60         echo "comparison failed - database was not created correctly"
61         exit 1
62 fi
63
64 echo ">>>>> Test succeeded"
65
66
67 exit 0