]> git.sur5r.net Git - openldap/blob - tests/scripts/test001-slapadd
Rename LDIF2LDBM to SLAPADD
[openldap] / tests / scripts / test001-slapadd
1 #! /bin/sh
2 # $OpenLDAP$
3
4 if test $# -eq 0 ; then
5         SRCDIR="."
6 else
7         SRCDIR=$1; shift
8 fi
9 if test $# -eq 1 ; then
10         BACKEND=$1; shift
11 fi
12
13 echo "running defines.sh $SRCDIR $BACKEND"
14
15 . $SRCDIR/scripts/defines.sh
16
17 echo "Datadir is $DATADIR"
18
19 echo "Cleaning up in $DBDIR..."
20
21 rm -f $DBDIR/[!C]*
22
23 echo "Running slapadd to build slapd database..."
24 $SLAPADD -f $CONF -l $LDIF
25 RC=$?
26 if test $RC != 0 ; then
27         echo "slapadd failed ($RC)!"
28         exit $RC
29 fi
30
31 echo "Starting slapd on TCP/IP port $PORT..."
32 $SLAPD -f $CONF -h $MASTERURI -d $LVL $TIMING > $MASTERLOG 2>&1 &
33 PID=$!
34
35 echo "Using ldapsearch to retrieve all the entries..."
36 for i in 0 1 2 3 4 5; do
37         $LDAPSEARCH -S "" -b "$BASEDN" -h localhost:$PORT > $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 ($RC)!"
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 > $CMPOUT
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