]> git.sur5r.net Git - openldap/blob - tests/scripts/test001-slapadd
Happy New Year!
[openldap] / tests / scripts / test001-slapadd
1 #! /bin/sh
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2005 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 mkdir -p $TESTRUN $DBDIR1
20
21 echo "Running slapadd to build slapd database..."
22 . $CONFFILTER $BACKEND $MONITORDB < $CONF > $ADDCONF
23 $SLAPADD -f $ADDCONF -l $LDIFORDERED
24 RC=$?
25 if test $RC != 0 ; then
26         echo "slapadd failed ($RC)!"
27         exit $RC
28 fi
29
30 echo "Starting slapd on TCP/IP port $PORT1..."
31 . $CONFFILTER $BACKEND $MONITORDB < $CONF > $CONF1
32 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
33 PID=$!
34 if test $WAIT != 0 ; then
35     echo PID $PID
36     read foo
37 fi
38 KILLPIDS="$PID"
39
40 echo "Using ldapsearch to retrieve all the entries..."
41 for i in 0 1 2 3 4 5; do
42         $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT1 > $SEARCHOUT 2>&1
43         RC=$?
44         if test $RC = 0 ; then
45                 break
46         fi
47         echo "Waiting 5 seconds for slapd to start..."
48         sleep 5
49 done
50
51 test $KILLSERVERS != no && kill -HUP $KILLPIDS
52
53 if test $RC != 0 ; then
54         echo "ldapsearch failed ($RC)!"
55         exit $RC
56 fi
57
58 echo "Filtering ldapsearch results..."
59 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
60 echo "Filtering original ldif used to create database..."
61 . $LDIFFILTER < $LDIF > $LDIFFLT
62 echo "Comparing filter output..."
63 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
64
65 if test $? != 0 ; then
66         echo "comparison failed - database was not created correctly"
67         echo $SEARCHFLT $LDIFFLT
68         $DIFF $SEARCHFLT $LDIFFLT
69         exit 1
70 fi
71
72 echo ">>>>> Test succeeded"
73 exit 0