]> git.sur5r.net Git - openldap/blob - tests/scripts/test004-modify
a235b93ad9bd04d3da73ee25a47f9b6b6d551410
[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
9 . $SRCDIR/scripts/args.sh $*
10
11 echo "running defines.sh"
12 . $SRCDIR/scripts/defines.sh
13
14 echo "running defines.sh $SRCDIR $BACKEND"
15 . $SRCDIR/scripts/defines.sh
16
17 echo "Cleaning up in $DBDIR..."
18
19 rm -f $DBDIR/[!C]*
20
21 echo "Running slapadd to build slapd database..."
22 . $CONFFILTER $BACKEND $MONITORDB < $CONF > $DBCONF
23 $SLAPADD -f $DBCONF -l $LDIFORDERED
24 RC=$?
25 if test $RC != 0 ; then
26         echo "slapadd failed ($RC)!"
27         exit $RC
28 fi
29
30 echo "Starting slapd on TCP/IP port $PORT..."
31 $SLAPD -f $DBCONF -h $MASTERURI -d $LVL $TIMING > $MASTERLOG 2>&1 &
32 PID=$!
33 if test $WAIT != 0 ; then
34     echo PID $PID
35     read foo
36 fi
37
38 echo "Testing slapd modify operations..."
39 for i in 0 1 2 3 4 5; do
40         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT \
41                 'objectclass=*' > /dev/null 2>&1
42         RC=$?
43         if test $RC = 0 ; then
44                 break
45         fi
46         echo "Waiting 5 seconds for slapd to start..."
47         sleep 5
48 done
49
50 if test $RC != 0 ; then
51         echo "ldapsearch failed ($RC)!"
52         kill -HUP $PID
53         exit $RC
54 fi
55
56 echo "Testing modify, add, and delete..."
57 $LDAPMODIFY -v -D "$MANAGERDN" -h $LOCALHOST -p $PORT -w $PASSWD > \
58         $TESTOUT 2>&1 << EOMODS
59 version: 1
60
61 # LEADING COMMENT AND WHITE SPACE
62
63 dn: cn=James A Jones 1,ou=Alumni Association,ou=People,o=University of Michigan,c=US
64 # EMBEDDED COMMENT
65 changetype: modify
66 add: drink
67 drink: Pils
68 -
69 add: drink
70 drink: Orange Juice
71 -
72 delete: drink
73 drink: Pils
74 -
75 delete: sn
76 sn: Jones
77 -
78 add: sn
79 sn: Jones
80
81 dn: cn=Bjorn Jensen,ou=Information Technology Division,ou=People,o=University of Michigan,c=US
82 changetype: modify
83 # EMBEDDED COMMENT
84  CONTINUED
85 replace: description
86 description: The replaced multiLineDescription $ Blah Woof.
87 -
88 replace: drink
89 drink: Iced Tea
90 drink: Mad Dog 20/20
91
92 dn: cn=ITD Staff,ou=Groups,o=University of Michigan,c=US
93 changetype: modify
94 delete: uniquemember
95 uniquemember: cn=James A Jones 2,ou=Information Technology Division,
96  ou=People,o=University of Michigan,c=US
97 uniquemember: cn=Bjorn Jensen,ou=Information Technology Division,
98  ou=People,o=University of Michigan,c=US
99 -
100 add: uniquemember
101 uniquemember: cn=Dorothy Stevens,ou=Alumni Association,
102  ou=People,o=University of Michigan,c=US
103 uniquemember: cn=James A Jones 1,ou=Alumni Association,
104  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 dn: ou=People,o=University of Michigan,c=US
137 changetype: modify
138 increment: uidNumber
139 uidNumber: 1
140 -
141 increment: gidNumber
142 gidNumber: -1
143
144 EOMODS
145
146 RC=$?
147 if test $RC != 0 ; then
148         echo "ldapmodify failed ($RC)!"
149         kill -HUP $PID
150         exit $RC
151 fi
152
153 echo "Using ldapsearch to retrieve all the entries..."
154 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT \
155             'objectClass=*' > $SEARCHOUT 2>&1
156 RC=$?
157 kill -HUP $PID
158 if test $RC != 0 ; then
159         echo "ldapsearch failed ($RC)!"
160         exit $RC
161 fi
162
163 LDIF=$MODIFYOUTMASTER
164
165 echo "Filtering ldapsearch results..."
166 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
167 echo "Filtering original ldif used to create database..."
168 . $LDIFFILTER < $LDIF > $LDIFFLT
169 echo "Comparing filter output..."
170 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
171
172 if test $? != 0 ; then
173         echo "comparison failed - modify operations did not complete correctly"
174         exit 1
175 fi
176
177 echo ">>>>> Test succeeded"
178
179 exit 0