]> git.sur5r.net Git - openldap/blob - tests/scripts/test033-glue-syncrepl
ITS#4049: oldPassword cannot be ignored, error for now
[openldap] / tests / scripts / test033-glue-syncrepl
1 #! /bin/sh
2 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
3 ##
4 ## Copyright 1998-2005 The OpenLDAP Foundation.
5 ## All rights reserved.
6 ##
7 ## Redistribution and use in source and binary forms, with or without
8 ## modification, are permitted only as authorized by the OpenLDAP
9 ## Public License.
10 ##
11 ## A copy of this license is available in the file LICENSE in the
12 ## top-level directory of the distribution or, alternatively, at
13 ## <http://www.OpenLDAP.org/license.html>.
14
15 echo "running defines.sh"
16 . $SRCDIR/scripts/defines.sh
17
18 mkdir -p $TESTDIR $DBDIR1A $DBDIR1B $DBDIR1C
19
20 echo "Running slapadd to build glued slapd databases..."
21 . $CONFFILTER $BACKEND $MONITORDB < $GLUECONF > $CONF1
22 $SLAPADD -d $LVL -f $CONF1 -l $LDIFORDERED > $SLAPADDLOG1 2>&1
23 RC=$?
24 if test $RC != 0 ; then
25         echo "slapadd failed ($RC)!"
26         exit $RC
27 fi
28
29 mv $DBDIR1B $DBDIR2B
30 mkdir $DBDIR2A $DBDIR1B
31 cp -pr $DBDIR1C $DBDIR2C
32
33 echo "Starting slapd 1 on TCP/IP port $PORT1..."
34 . $CONFFILTER $BACKEND $MONITORDB < $GLUESYNCCONF1 > $CONF1
35 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
36 PID=$!
37 if test $WAIT != 0 ; then
38     echo PID $PID
39     read foo
40 fi
41 KILLPIDS="$PID"
42
43 echo "Using ldapsearch to check that slapd 1 is running..."
44 for i in 0 1 2 3 4 5; do
45         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
46                 '(objectclass=*)' > /dev/null 2>&1
47         RC=$?
48         if test $RC = 0 ; then
49                 break
50         fi
51         echo "Waiting 5 seconds for slapd to start..."
52         sleep 5
53 done
54
55 echo "Starting slapd 2 on TCP/IP port $PORT2..."
56 . $CONFFILTER $BACKEND $MONITORDB < $GLUESYNCCONF2 > $CONF2
57 $SLAPD -f $CONF2 -h $URI2 -d $LVL $TIMING > $LOG2 2>&1 &
58 PID=$!
59 if test $WAIT != 0 ; then
60     echo PID $PID
61     read foo
62 fi
63 KILLPIDS="$KILLPIDS $PID"
64
65 echo "Using ldapsearch to check that slapd 2 is running..."
66 for i in 0 1 2 3 4 5; do
67         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT2 \
68                 '(objectclass=*)' > /dev/null 2>&1
69         RC=$?
70         if test $RC = 0 ; then
71                 break
72         fi
73         echo "Waiting 5 seconds for slapd to start..."
74         sleep 5
75 done
76
77 echo "Waiting 15 seconds for shadow subtrees to sync..."
78 sleep 15
79
80 for P in $PORT1 $PORT2 ; do
81         echo "Using ldapsearch to read all the entries from port $P..."
82         $LDAPSEARCH -b "$BASEDN" -h $LOCALHOST -p $P \
83                 -S "" '(objectclass=*)' > $SEARCHOUT 2>&1
84         RC=$?
85
86         if test $RC != 0 ; then
87                 echo "ldapsearch failed ($RC)!"
88                 test $KILLSERVERS != no && kill -HUP $KILLPIDS
89                 exit $RC
90         fi
91
92         echo "Filtering ldapsearch results..."
93         . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
94         echo "Filtering original ldif used to create database..."
95         . $LDIFFILTER < $GLUESYNCOUT > $LDIFFLT
96         echo "Comparing filter output..."
97         $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
98
99         if test $? != 0 ; then
100                 echo "comparison failed - database was not created correctly"
101                 test $KILLSERVERS != no && kill -HUP $KILLPIDS
102                 exit 1
103         fi
104 done
105
106 test $KILLSERVERS != no && kill -HUP $KILLPIDS
107
108 echo ">>>>> Test succeeded"
109 exit 0