]> git.sur5r.net Git - openldap/blob - tests/scripts/test033-glue-syncrepl
31f5fc669d870fe98430f9355281793469716666
[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 sleep 1
44
45 echo "Starting slapd 2 on TCP/IP port $PORT2..."
46 . $CONFFILTER $BACKEND $MONITORDB < $GLUESYNCCONF2 > $CONF2
47 $SLAPD -f $CONF2 -h $URI2 -d $LVL $TIMING > $LOG2 2>&1 &
48 PID=$!
49 if test $WAIT != 0 ; then
50     echo PID $PID
51     read foo
52 fi
53 KILLPIDS="$KILLPIDS $PID"
54
55 sleep 1
56
57 echo "Using ldapsearch to check that slapd 1 is running..."
58 for i in 0 1 2 3 4 5; do
59         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
60                 '(objectclass=*)' > /dev/null 2>&1
61         RC=$?
62         if test $RC = 0 ; then
63                 break
64         fi
65         echo "Waiting 5 seconds for slapd to start..."
66         sleep 5
67 done
68
69 echo "Using ldapsearch to check that slapd 2 is running..."
70 for i in 0 1 2 3 4 5; do
71         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT2 \
72                 '(objectclass=*)' > /dev/null 2>&1
73         RC=$?
74         if test $RC = 0 ; then
75                 break
76         fi
77         echo "Waiting 5 seconds for slapd to start..."
78         sleep 5
79 done
80
81 SLEEP=15
82 echo "Waiting $SLEEP seconds for shadow subtrees to sync..."
83 sleep $SLEEP
84
85 for P in $PORT1 $PORT2 ; do
86         echo "Using ldapsearch to read all the entries from port $P..."
87         $LDAPSEARCH -b "$BASEDN" -h $LOCALHOST -p $P \
88                 -S "" '(objectclass=*)' > $SEARCHOUT 2>&1
89         RC=$?
90
91         if test $RC != 0 ; then
92                 echo "ldapsearch failed ($RC)!"
93                 test $KILLSERVERS != no && kill -HUP $KILLPIDS
94                 exit $RC
95         fi
96
97         echo "Filtering ldapsearch results..."
98         . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
99         echo "Filtering original ldif used to create database..."
100         . $LDIFFILTER < $GLUESYNCOUT > $LDIFFLT
101         echo "Comparing filter output..."
102         $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
103
104         if test $? != 0 ; then
105                 echo "comparison failed - database was not created correctly"
106                 test $KILLSERVERS != no && kill -HUP $KILLPIDS
107                 exit 1
108         fi
109 done
110
111 test $KILLSERVERS != no && kill -HUP $KILLPIDS
112
113 echo ">>>>> Test succeeded"
114 exit 0