]> git.sur5r.net Git - openldap/blob - tests/scripts/test002-populate
Save a malloc
[openldap] / tests / scripts / test002-populate
1 #! /bin/sh
2 # $OpenLDAP$
3
4 SRCDIR="."
5 if test $# -ge 1 ; then
6         SRCDIR=$1; shift
7 fi
8 BACKEND=bdb
9 if test $# -ge 1 ; then
10         BACKEND=$1; shift
11 fi
12 MONITORDB=no
13 if test $# -ge 1 ; then
14         MONITORDB=$1; shift
15 fi
16 WAIT=0
17 if test $# -ge 1 ; then
18         WAIT=1; shift
19 fi
20
21 echo "running defines.sh"
22 . $SRCDIR/scripts/defines.sh
23
24 echo "Cleaning up in $DBDIR..."
25
26 rm -f $DBDIR/[!C]*
27
28 echo "Starting slapd on TCP/IP port $PORT..."
29 . $CONFFILTER $BACKEND $MONITORDB < $CONF > $DBCONF
30 $SLAPD -f $DBCONF -h $MASTERURI -d $LVL $TIMING > $MASTERLOG 2>&1 &
31 PID=$!
32 if test $WAIT != 0 ; then
33     echo PID $PID
34     read foo
35 fi
36
37 echo "Using ldapsearch to check that slapd is running..."
38 for i in 0 1 2 3 4 5; do
39         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT \
40                 'objectclass=*' > /dev/null 2>&1
41         RC=$?
42         if test $RC = 1 ; then
43                 echo "Waiting 5 seconds for slapd to start..."
44                 sleep 5
45         fi
46 done
47
48 echo "Using ldapadd to populate the database..."
49 $LDAPADD -D "$MANAGERDN" -h $LOCALHOST -p $PORT -w $PASSWD < \
50         $LDIFORDERED > $TESTOUT 2>&1
51 RC=$?
52 if test $RC != 0 ; then
53         echo "ldapadd failed ($RC)!"
54         kill -HUP $PID
55         exit $RC
56 fi
57
58 echo "Using ldapsearch to read all the entries..."
59 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT \
60         'objectclass=*' > $SEARCHOUT 2>&1
61 RC=$?
62
63 kill -HUP $PID
64
65 if test $RC != 0 ; then
66         echo "ldapsearch failed ($RC)!"
67         exit $RC
68 fi
69
70 echo "Filtering ldapsearch results..."
71 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
72 echo "Filtering original ldif used to create database..."
73 . $LDIFFILTER < $LDIF > $LDIFFLT
74 echo "Comparing filter output..."
75 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
76
77 if test $? != 0 ; then
78         echo "comparison failed - database was not created correctly"
79         exit 1
80 fi
81
82 echo ">>>>> Test succeeded"
83
84
85 exit 0