]> git.sur5r.net Git - openldap/blob - tests/scripts/test004-modify
99622308504d06dc2c2a07c7cfa07fa50f912bed
[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: Orange Juice
78
79 dn: cn=Bjorn Jensen,ou=Information Technology Division,ou=People,o=University of Michigan,c=US
80 changetype: modify
81 # EMBEDDED COMMENT
82  CONTINUED
83 replace: description
84 description: The replaced multiLineDescription $ Blah Woof.
85 -
86 replace: drink
87 drink: Iced Tea
88 drink: Mad Dog 20/20
89
90 dn: cn=ITD Staff,ou=Groups,o=University of Michigan,c=US
91 delete: member
92 member: cn=James A Jones 2,ou=Information Technology Division,ou=People,o=University of Michigan,c=US
93 member: cn=Bjorn Jensen,ou=Information Technology Division,ou=People,o=University of Michigan,c=US
94 -
95 add: member
96 member: cn=Dorothy Stevens,ou=Alumni Association,ou=People,o=University of Michigan,c=US
97 member: cn=James A Jones 1,ou=Alumni Association,ou=People,o=University of Michigan,c=US
98
99 dn: cn=All Staff,ou=Groups,o=University of Michigan,c=US
100 changetype: modify
101 delete: member
102 -
103 add: member
104 member: cn=Dorothy Stevens,ou=Alumni Association,ou=People,o=University of Michigan,c=US
105 -
106 delete: description
107
108 dn: cn=Gern Jensen,ou=Information Technology Division,ou=People,o=University of Michigan,c=US
109 changetype: add
110 objectclass: OpenLDAPperson
111 cn: Gern Jensen
112 sn: Jensen
113 uid: gjensen
114 title: Chief Investigator, ITD
115 postaladdress: ITD $ 535 W. William St $ Ann Arbor, MI 48103
116 seealso: cn=All Staff,ou=Groups,o=University of Michigan,c=US
117 drink: Coffee
118 homepostaladdress: 844 Brown St. Apt. 4 $ Ann Arbor, MI 48104
119 description: Very odd
120 facsimiletelephonenumber: +1 313 555 7557
121 telephonenumber: +1 313 555 8343
122 mail: gjensen@mailgw.example.com
123 homephone: +1 313 555 8844
124
125 dn: cn=James A Jones 2,ou=Information Technology Division,ou=People,o=University of Michigan,c=US
126 changetype: delete
127 # TRAILING COMMENT AND WHITE SPACE
128
129 EOMODS
130
131 RC=$?
132 if test $RC != 0 ; then
133         echo "ldapmodify failed ($RC)!"
134         kill -HUP $PID
135         exit $RC
136 fi
137
138 echo "Using ldapsearch to retrieve all the entries..."
139 $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT \
140             'objectClass=*' > $SEARCHOUT 2>&1
141 RC=$?
142 kill -HUP $PID
143 if test $RC != 0 ; then
144         echo "ldapsearch failed ($RC)!"
145         exit $RC
146 fi
147
148 LDIF=$MODIFYOUTMASTER
149
150 echo "Filtering ldapsearch results..."
151 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
152 echo "Filtering original ldif used to create database..."
153 . $LDIFFILTER < $LDIF > $LDIFFLT
154 echo "Comparing filter output..."
155 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
156
157 if test $? != 0 ; then
158         echo "comparison failed - modify operations did not complete correctly"
159         exit 1
160 fi
161
162 echo ">>>>> Test succeeded"
163
164 exit 0