]> git.sur5r.net Git - openldap/blob - tests/scripts/test033-glue-syncrepl
happy belated new year
[openldap] / tests / scripts / test033-glue-syncrepl
1 #! /bin/sh
2 # $OpenLDAP$ */
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2010 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 case $BACKEND in bdb | hdb | ldif) : ;; *)
17         echo "Test does not support $BACKEND backend, test skipped"
18         exit 0
19 esac
20
21 echo "running defines.sh"
22 . $SRCDIR/scripts/defines.sh
23
24 if test $SYNCPROV = syncprovno; then 
25         echo "Syncrepl provider overlay not available, test skipped"
26         exit 0
27 fi 
28
29 mkdir -p $TESTDIR $DBDIR1A $DBDIR1B $DBDIR1C $DBDIR2A $DBDIR2B
30
31 echo "Running slapadd to build glued slapd databases..."
32 . $CONFFILTER $BACKEND $MONITORDB < $GLUECONF > $CONF1
33 $SLAPADD -d $LVL -f $CONF1 -l $LDIFORDERED > $SLAPADDLOG1 2>&1
34 RC=$?
35 if test $RC != 0 ; then
36         echo "slapadd failed ($RC)!"
37         exit $RC
38 fi
39
40 rm -rf $DBDIR1A/* $DBDIR1B/*
41 cp -pr $DBDIR1C $DBDIR2C
42
43 echo "Starting slapd 1 on TCP/IP port $PORT1..."
44 . $CONFFILTER $BACKEND $MONITORDB < $GLUESYNCCONF1 > $CONF1
45 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
46 PID=$!
47 if test $WAIT != 0 ; then
48     echo PID $PID
49     read foo
50 fi
51 KILLPIDS="$PID"
52
53 sleep 1
54
55 echo "Using ldapsearch to check that slapd 1 is running..."
56 for i in 0 1 2 3 4 5; do
57         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
58                 '(objectclass=*)' > /dev/null 2>&1
59         RC=$?
60         if test $RC = 0 ; then
61                 break
62         fi
63         echo "Waiting 5 seconds for slapd to start..."
64         sleep 5
65 done
66
67 echo "Starting slapd 2 on TCP/IP port $PORT2..."
68 . $CONFFILTER $BACKEND $MONITORDB < $GLUESYNCCONF2 > $CONF2
69 $SLAPD -f $CONF2 -h $URI2 -d $LVL $TIMING > $LOG2 2>&1 &
70 PID=$!
71 if test $WAIT != 0 ; then
72     echo PID $PID
73     read foo
74 fi
75 KILLPIDS="$KILLPIDS $PID"
76
77 sleep 1
78
79 echo "Using ldapsearch to check that slapd 2 is running..."
80 for i in 0 1 2 3 4 5; do
81         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT2 \
82                 '(objectclass=*)' > /dev/null 2>&1
83         RC=$?
84         if test $RC = 0 ; then
85                 break
86         fi
87         echo "Waiting 5 seconds for slapd to start..."
88         sleep 5
89 done
90
91 SUBTREE1="ou=Information Technology Division,ou=People,dc=example,dc=com"
92 SUBTREE2="ou=Groups,dc=example,dc=com"
93
94 echo "Using ldapadd to populate subtree=\"${SUBTREE1}\" on port $PORT1..."
95 $LDAPADD -D "cn=Manager 1,$BASEDN" -w $PASSWD -h $LOCALHOST -p $PORT1 \
96         -f $LDIFORDERED -c \
97         > /dev/null 2>&1
98 RC=$?
99 case $RC in
100 0)
101         echo "ldapadd should have failed ($RC)!"
102         test $KILLSERVERS != no && kill -HUP $KILLPIDS
103         exit -1
104         ;;
105 10|68)
106         # Fine if we get alreadyExists or referrals
107         ;;
108 *)
109         echo "ldapadd failed ($RC)!"
110         test $KILLSERVERS != no && kill -HUP $KILLPIDS
111         exit $RC
112         ;;
113 esac
114
115 echo "Using ldapadd to populate subtree=\"${SUBTREE2}\" on port $PORT2..."
116 $LDAPADD -D "cn=Manager 2,$BASEDN" -w $PASSWD -h $LOCALHOST -p $PORT2 \
117         -f $LDIFORDERED -c \
118         > /dev/null 2>&1
119 RC=$?
120 case $RC in
121 0)
122         echo "ldapadd should have failed ($RC)!"
123         test $KILLSERVERS != no && kill -HUP $KILLPIDS
124         exit -1
125         ;;
126 10|68)
127         # Fine if we get alreadyExists or referrals
128         ;;
129 *)
130         echo "ldapadd failed ($RC)!"
131         test $KILLSERVERS != no && kill -HUP $KILLPIDS
132         exit $RC
133         ;;
134 esac
135
136 echo "Waiting $SLEEP1 seconds for shadow subtrees to sync..."
137 sleep $SLEEP1
138
139 echo "Filtering original ldif used to create database..."
140 . $LDIFFILTER < $GLUESYNCOUT > $LDIFFLT
141
142 for P in $PORT1 $PORT2 ; do
143         echo "Using ldapsearch to read all the entries from port $P..."
144         $LDAPSEARCH -b "$BASEDN" -h $LOCALHOST -p $P \
145                 -S "" '(objectclass=*)' > "${SEARCHOUT}.${P}" 2>&1
146         RC=$?
147
148         if test $RC != 0 ; then
149                 echo "ldapsearch failed ($RC)!"
150                 test $KILLSERVERS != no && kill -HUP $KILLPIDS
151                 exit $RC
152         fi
153
154         echo "Filtering ldapsearch results..."
155         . $LDIFFILTER < "${SEARCHOUT}.${P}" > $SEARCHFLT
156         echo "Comparing filter output..."
157         $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
158
159         if test $? != 0 ; then
160                 echo "comparison failed - database was not created correctly"
161                 test $KILLSERVERS != no && kill -HUP $KILLPIDS
162                 exit 1
163         fi
164 done
165
166 echo "Testing ldapdelete propagation..."
167 $LDAPDELETE -D "cn=Manager 1,$BASEDN" -w $PASSWD -H $URI1 "$BABSDN" \
168         > $TESTOUT 2>&1
169 RC=$?
170 if test $RC != 0 ; then
171         echo "ldapdelete failed ($RC)!"
172         test $KILLSERVERS != no && kill -HUP $KILLPIDS
173         exit $RC
174 fi
175
176 # This usually propagates immediately
177 sleep 1
178
179 $LDAPSEARCH -H $URI2 -b "$BABSDN" > $TESTOUT 2>&1
180 RC=$?
181 if test $RC = 0 ; then
182         echo "ldapsearch should have failed ($RC)!"
183         test $KILLSERVERS != no && kill -HUP $KILLPIDS
184         exit -1
185 fi
186
187 test $KILLSERVERS != no && kill -HUP $KILLPIDS
188
189 echo ">>>>> Test succeeded"
190
191 test $KILLSERVERS != no && wait
192
193 exit 0