]> git.sur5r.net Git - openldap/blob - tests/scripts/test023-refint
Component Matching module
[openldap] / tests / scripts / test023-refint
1 #! /bin/sh
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 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 if test "$BACKEND" != "bdb" -a "$BACKEND" != "hdb" ; then
17         echo "Test does not support $BACKEND"
18         exit 0
19 fi
20
21 echo "running defines.sh"
22 . $SRCDIR/scripts/defines.sh
23
24 if test $REFINT = refintno; then 
25         echo "Referential Integrity overlay not available, test skipped"
26         exit 0
27 fi 
28
29 mkdir -p $TESTDIR $DBDIR1
30
31 echo "Running slapadd to build slapd database..."
32 . $CONFFILTER $BACKEND $MONITORDB < $REFINTCONF > $CONF1
33 $SLAPADD -f $CONF1 -l $LDIFREFINT
34 RC=$?
35 if test $RC != 0 ; then
36         echo "slapadd failed ($RC)!"
37         exit $RC
38 fi
39
40 echo "Starting slapd on TCP/IP port $PORT1..."
41 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
42 PID=$!
43 if test $WAIT != 0 ; then
44     echo PID $PID
45     read foo
46 fi
47 KILLPIDS="$PID"
48
49 echo "Testing slapd referential integrity operations..."
50 for i in 0 1 2 3 4 5; do
51         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
52                 'objectclass=*' > /dev/null 2>&1
53         RC=$?
54         if test $RC = 0 ; then
55                 break
56         fi
57         echo "Waiting 5 seconds for slapd to start..."
58         sleep 5
59 done
60
61 if test $RC != 0 ; then
62         echo "ldapsearch failed ($RC)!"
63         test $KILLSERVERS != no && kill -HUP $KILLPIDS
64         exit $RC
65 fi
66
67 echo "Searching unmodified database..."
68
69 $LDAPSEARCH -S "" -b "o=refint" -h $LOCALHOST -p $PORT1 | \
70         egrep "(manager|secretary):" | sed "s/george/foster/g" | \
71         sort > $SEARCHOUT 2>&1
72
73 RC=$?
74 if test $RC != 0 ; then
75         echo "ldapsearch failed ($RC)!"
76         test $KILLSERVERS != no && kill -HUP $KILLPIDS
77         exit $RC
78 fi
79
80 echo "Testing modrdn..."
81 $LDAPMODRDN -D "$REFINTDN" -r -h $LOCALHOST -p $PORT1 -w $PASSWD > \
82         /dev/null 2>&1 'uid=george,ou=users,o=refint' 'uid=foster'
83 #$LDAPMODRDN -D "$REFINTDN" -r -h $LOCALHOST -p $PORT1 -w $PASSWD  \
84 #       'uid=george,ou=users,o=refint' 'uid=foster'
85
86 RC=$?
87 if test $RC != 0 ; then
88         echo "ldapmodrdn failed ($RC)!"
89         test $KILLSERVERS != no && kill -HUP $KILLPIDS
90         exit $RC
91 fi
92
93 echo "Using ldapsearch to check dependents new rdn..."
94
95 $LDAPSEARCH -S "" -b "o=refint" -h $LOCALHOST -p $PORT1 | \
96         egrep "(manager|secretary):" | sort > $SEARCHFLT 2>&1
97
98 RC=$?
99         if test $RC != 0 ; then
100         echo "ldapsearch failed ($RC)!"
101         test $KILLSERVERS != no && kill -HUP $KILLPIDS
102         exit $RC
103 fi
104
105 echo "Comparing ldapsearch results against original..."
106 $CMP $SEARCHOUT $SEARCHOUT > $CMPOUT
107
108 if test $? != 0 ; then
109         echo "comparison failed - modify operations did not complete correctly"
110         exit 1
111 fi
112
113 echo "Testing delete..."
114 $LDAPMODIFY -v -D "$REFINTDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
115         $TESTOUT 2>&1 << EDEL
116 version: 1
117 dn: uid=foster,ou=users,o=refint
118 changetype: delete
119 EDEL
120
121 RC=$?
122 if test $RC != 0 ; then
123         echo "ldapmodify failed ($RC)!"
124         test $KILLSERVERS != no && kill -HUP $KILLPIDS
125         exit $RC
126 fi
127
128 echo "Using ldapsearch to verify dependents have been deleted..."
129 $LDAPSEARCH -S "" -b "o=refint" -h $LOCALHOST -p $PORT1 | \
130         egrep "(manager|secretary):" > $SEARCHFLT 2>&1
131
132 RC=$?
133 if test $RC != 0 ; then
134         echo "ldapsearch failed ($RC)!"
135         test $KILLSERVERS != no && kill -HUP $KILLPIDS
136         exit $RC
137 fi
138
139 RC=`grep -c foster $SEARCHFLT`
140 if test $RC != 0 ; then
141         echo "dependent modify failed - dependents were not deleted"
142         exit 1
143 fi
144
145 echo "Additional test records..."
146
147 $LDAPADD -D "$REFINTDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
148         $TESTOUT 2>&1 << ETEST
149 dn: uid=special,ou=users,o=refint
150 objectClass: inetOrgPerson
151 uid: special
152 sn: special
153 cn: special
154 businessCategory: nothing
155 carLicense: FOO
156 departmentNumber: 933
157 displayName: special
158 employeeNumber: 41491
159 employeeType: vendor
160 givenName: special
161 member: uid=alice,ou=users,o=refint
162 ETEST
163
164 echo "Testing delete when referential attribute is a MUST..."
165 $LDAPMODIFY -v -D "$REFINTDN" -h $LOCALHOST -p $PORT1 -w $PASSWD > \
166         $TESTOUT 2>&1 << EDEL
167 version: 1
168 dn: uid=alice,ou=users,o=refint
169 changetype: delete
170 EDEL
171
172 RC=$?
173 if test $RC != 0 ; then
174         echo "ldapmodify failed ($RC)!"
175         test $KILLSERVERS != no && kill -HUP $KILLPIDS
176         exit $RC
177 fi
178
179
180
181 #####
182
183 test $KILLSERVERS != no && kill -HUP $KILLPIDS
184
185 echo ">>>>> Test succeeded"
186 exit 0