]> git.sur5r.net Git - openldap/blob - tests/scripts/test012-glue-populate
Delete backglue in favor of glue overlay
[openldap] / tests / scripts / test012-glue-populate
1 #! /bin/sh
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2004 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 $GLUE = glueno; then 
20         echo "Backend glue overlay not available, test skipped"
21         exit 0
22 fi 
23
24 mkdir -p $TESTDIR $DBDIR1A $DBDIR1B $DBDIR1C
25
26 echo "Starting slapd on TCP/IP port $PORT..."
27 . $CONFFILTER $BACKEND $MONITORDB < $GLUECONF > $CONF1
28 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
29 PID=$!
30 if test $WAIT != 0 ; then
31     echo PID $PID
32     read foo
33 fi
34 KILLPIDS="$PID"
35
36 echo "Using ldapsearch to check that slapd is running..."
37 for i in 0 1 2 3 4 5; do
38         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
39                 'objectclass=*' > /dev/null 2>&1
40         RC=$?
41         if test $RC = 0 ; then
42                 break
43         fi
44         echo "Waiting 5 seconds for slapd to start..."
45         sleep 5
46 done
47
48 echo "Using ldapadd to populate the glued database..."
49 $LDAPADD -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD < \
50         $LDIFORDERED > $TESTOUT 2>&1
51 RC=$?
52 if test $RC != 0 ; then
53         echo "ldapadd failed ($RC)!"
54         test $KILLSERVERS != no && kill -HUP $KILLPIDS
55         exit $RC
56 fi
57
58 echo "Using ldapsearch to read all the entries..."
59 $LDAPSEARCH -b "$BASEDN" -h $LOCALHOST -p $PORT1 \
60         'objectclass=*' > $SEARCHOUT 2>&1
61 RC=$?
62
63 test $KILLSERVERS != no && kill -HUP $KILLPIDS
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 < $LDIFGLUED > $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 exit 0