]> git.sur5r.net Git - openldap/blob - tests/scripts/test004-modify
A tests for a few allowed oddities
[openldap] / tests / scripts / test004-modify
1 #! /bin/sh
2 # $OpenLDAP$
3
4 SRCDIR="."
5 if test $# -ge 1 ; then
6         SRCDIR=$1; shift
7 fi
8 BACKEND=bdb
9 if test $# -ge 1 ; then
10         BACKEND=$1; shift
11 fi
12 MONITORDB=no
13 if test $# -ge 1 ; then
14         MONITORDB=$1; shift
15 fi
16 WAIT=0
17 if test $# -ge 1 ; then
18         WAIT=1; shift
19 fi
20
21 echo "running defines.sh"
22 . $SRCDIR/scripts/defines.sh
23
24 echo "running defines.sh $SRCDIR $BACKEND"
25 . $SRCDIR/scripts/defines.sh
26
27 echo "Cleaning up in $DBDIR..."
28
29 rm -f $DBDIR/[!C]*
30
31 echo "Running slapadd to build slapd database..."
32 . $CONFFILTER $BACKEND $MONITORDB < $CONF > $DBCONF
33 $SLAPADD -f $DBCONF -l $LDIFORDERED
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 $PORT..."
41 $SLAPD -f $DBCONF -h $MASTERURI -d $LVL $TIMING > $MASTERLOG 2>&1 &
42 PID=$!
43 if test $WAIT != 0 ; then
44     echo PID $PID
45     read foo
46 fi
47
48 echo "Testing slapd modify operations..."
49 for i in 0 1 2 3 4 5; do
50         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT \
51                 'objectclass=*' > /dev/null 2>&1
52         RC=$?
53         if test $RC = 0 ; then
54                 break
55         fi
56         echo "Waiting 5 seconds for slapd to start..."
57         sleep 5
58 done
59
60 if test $RC != 0 ; then
61         echo "ldapsearch failed ($RC)!"
62         kill -HUP $PID
63         exit $RC
64 fi
65
66 echo "Testing modify, add, and delete..."
67 $LDAPMODIFY -v -D "$MANAGERDN" -h $LOCALHOST -p $PORT -w $PASSWD > \
68         $TESTOUT 2>&1 << EOMODS
69 version: 1
70
71 # LEADING COMMENT AND WHITE SPACE
72
73 dn: cn=James A Jones 1,ou=Alumni Association,ou=People,o=University of Michigan,c=US
74 # EMBEDDED COMMENT
75 changetype: modify
76 add: drink
77 drink: Pils
78 -
79 add: drink
80 drink: Orange Juice
81 -
82 delete: drink
83 drink: Pils
84
85 dn: cn=Bjorn Jensen,ou=Information Technology Division,ou=People,o=University of Michigan,c=US
86 changetype: modify
87 # EMBEDDED COMMENT
88  CONTINUED
89 replace: description
90 description: The replaced multiLineDescription $ Blah Woof.
91 -
92 replace: drink
93 drink: Iced Tea
94 drink: Mad Dog 20/20
95
96 dn: cn=ITD Staff,ou=Groups,o=University of Michigan,c=US
97 changetype: modify
98 delete: member
99 member: cn=James A Jones 2,ou=Information Technology Division,ou=People,o=University of Michigan,c=US
100 member: cn=Bjorn Jensen,ou=Information Technology Division,ou=People,o=University of Michigan,c=US
101 -
102 add: member
103 member: cn=Dorothy Stevens,ou=Alumni Association,ou=People,o=University of Michigan,c=US
104 member: cn=James A Jones 1,ou=Alumni Association,ou=People,o=University of Michigan,c=US
105
106 dn: cn=All Staff,ou=Groups,o=University of Michigan,c=US
107 changetype: modify
108 delete: member
109 -
110 add: member
111 member: cn=Dorothy Stevens,ou=Alumni Association,ou=People,o=University of Michigan,c=US
112 -
113 delete: description
114
115 dn: cn=Gern Jensen,ou=Information Technology Division,ou=People,o=University of Michigan,c=US
116 changetype: add
117 objectclass: OpenLDAPperson
118 cn: Gern Jensen
119 sn: Jensen
120 uid: gjensen
121 title: Chief Investigator, ITD
122 postaladdress: ITD $ 535 W. William St $ Ann Arbor, MI 48103
123 seealso: cn=All Staff,ou=Groups,o=University of Michigan,c=US
124 drink: Coffee
125 homepostaladdress: 844 Brown St. Apt. 4 $ Ann Arbor, MI 48104
126 description: Very odd
127 facsimiletelephonenumber: +1 313 555 7557
128 telephonenumber: +1 313 555 8343
129 mail: gjensen@mailgw.example.com
130 homephone: +1 313 555 8844
131
132 dn: cn=James A Jones 2,ou=Information Technology Division,ou=People,o=University of Michigan,c=US
133 changetype: delete
134 # TRAILING COMMENT AND WHITE SPACE
135
136 EOMODS
137
138 RC=$?
139 if test $RC != 0 ; then
140         echo "ldapmodify failed ($RC)!"
141         kill -HUP $PID
142         exit $RC
143 fi
144
145 echo "Using ldapsearch to retrieve all the entries..."
146 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT \
147             'objectClass=*' > $SEARCHOUT 2>&1
148 RC=$?
149 kill -HUP $PID
150 if test $RC != 0 ; then
151         echo "ldapsearch failed ($RC)!"
152         exit $RC
153 fi
154
155 LDIF=$MODIFYOUTMASTER
156
157 echo "Filtering ldapsearch results..."
158 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
159 echo "Filtering original ldif used to create database..."
160 . $LDIFFILTER < $LDIF > $LDIFFLT
161 echo "Comparing filter output..."
162 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
163
164 if test $? != 0 ; then
165         echo "comparison failed - modify operations did not complete correctly"
166         exit 1
167 fi
168
169 echo ">>>>> Test succeeded"
170
171 exit 0