]> git.sur5r.net Git - openldap/blob - tests/scripts/test010-passwd
8de9baaaf80bf575b6f25ff3284ea113ce92becc
[openldap] / tests / scripts / test010-passwd
1 #! /bin/sh
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2005 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 echo "running defines.sh"
17 . $SRCDIR/scripts/defines.sh
18
19 mkdir -p $TESTDIR $DBDIR1
20
21 echo "Starting slapd on TCP/IP port $PORT1..."
22 . $CONFFILTER $BACKEND $MONITORDB < $PWCONF > $CONF1
23 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
24 PID=$!
25 if test $WAIT != 0 ; then
26     echo PID $PID
27     read foo
28 fi
29 KILLPIDS="$PID"
30
31 echo "Using ldapsearch to check that slapd is running..."
32 for i in 0 1 2 3 4 5; do
33         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
34                 'objectclass=*' > /dev/null 2>&1
35         RC=$?
36         if test $RC = 0 ; then
37                 break
38         fi
39         echo "Waiting 5 seconds for slapd to start..."
40         sleep 5
41 done
42
43 echo "Using ldapadd to populate the database..."
44 $LDAPADD -D "$MANAGERDN" -h $LOCALHOST -p $PORT1 -w $PASSWD < \
45         $LDIFPASSWD > $TESTOUT 2>&1
46 RC=$?
47 if test $RC != 0 ; then
48         echo "ldapadd failed ($RC)!"
49         test $KILLSERVERS != no && kill -HUP $KILLPIDS
50         exit $RC
51 fi
52
53 echo > $SEARCHOUT
54 echo > $TESTOUT
55
56 echo "Using ldapsearch to verify population ..."
57 echo "++ Initial search" >> $SEARCHOUT
58 $LDAPSEARCH -h $LOCALHOST -p $PORT1 \
59         -D "$MANAGERDN" -w $PASSWD \
60         -b "$BASEDN" \
61         'objectclass=*' >> $SEARCHOUT 2>&1
62
63 echo "Using ldappasswd to test a few error conditions ..."
64 echo "Pass 0" >> $TESTOUT
65 $LDAPPASSWD -h $LOCALHOST -p $PORT1 \
66         -w secret -a "" -s newsecret \
67         -D "cn=md5, $BASEDN" >> $TESTOUT 2>&1
68 RC=$?
69 if test $RC = 0 ; then
70         echo "ldappasswd unexpectantly passed ($RC)! old empty"
71         test $KILLSERVERS != no && kill -HUP $KILLPIDS
72         exit $RC
73 fi
74 $LDAPPASSWD -h $LOCALHOST -p $PORT1 \
75         -w secret -a oldsecret -s "" \
76         -D "cn=md5, $BASEDN" >> $TESTOUT 2>&1
77 RC=$?
78 if test $RC = 0 ; then
79         echo "ldappasswd unexpectantly passed ($RC)! new empty"
80         test $KILLSERVERS != no && kill -HUP $KILLPIDS
81         exit $RC
82 fi
83 $LDAPPASSWD -h $LOCALHOST -p $PORT1 \
84         -w secret -a oldsecret -s newsecret \
85         -D "cn=md5, $BASEDN" >> $TESTOUT 2>&1
86 RC=$?
87 if test $RC = 0 ; then
88         echo "ldappasswd unexpectantly passed ($RC)! wrong old"
89         test $KILLSERVERS != no && kill -HUP $KILLPIDS
90         exit $RC
91 fi
92
93 echo "Using ldappasswd (PASS 1)  ..."
94 echo "Pass 1" >> $TESTOUT
95 $LDAPPASSWD -h $LOCALHOST -p $PORT1 \
96         -w secret -s newsecret \
97         -D "cn=md5, $BASEDN" >> $TESTOUT 2>&1
98 RC=$?
99 if test $RC != 0 ; then
100         echo "ldappasswd failed ($RC)!"
101         test $KILLSERVERS != no && kill -HUP $KILLPIDS
102         exit $RC
103 fi
104 $LDAPPASSWD -h $LOCALHOST -p $PORT1 \
105         -w $PASSWD -s newsecret \
106         -D "$MANAGERDN" "cn=smd5, $BASEDN" >> $TESTOUT 2>&1
107 RC=$?
108 if test $RC != 0 ; then
109         echo "ldappasswd failed ($RC)!"
110         test $KILLSERVERS != no && kill -HUP $KILLPIDS
111         exit $RC
112 fi
113 $LDAPPASSWD -h $LOCALHOST -p $PORT1 \
114         -w secret -s newsecret \
115         -D "cn=sha, $BASEDN" >> $TESTOUT 2>&1
116 RC=$?
117 if test $RC != 0 ; then
118         echo "ldappasswd failed ($RC)!"
119         test $KILLSERVERS != no && kill -HUP $KILLPIDS
120         exit $RC
121 fi
122 $LDAPPASSWD -h $LOCALHOST -p $PORT1 \
123         -w secret -s newsecret \
124         -D "cn=ssha, $BASEDN" >> $TESTOUT 2>&1
125 RC=$?
126 if test $RC != 0 ; then
127         echo "ldappasswd failed ($RC)!"
128         test $KILLSERVERS != no && kill -HUP $KILLPIDS
129         exit $RC
130 fi
131
132 echo "" >> $TESTOUT
133 echo "Pass 2" >> $TESTOUT
134 echo "Using ldappasswd (PASS 2)  ..."
135 $LDAPPASSWD -h $LOCALHOST -p $PORT1 \
136         -w newsecret \
137         -D "cn=md5, $BASEDN" >> $TESTOUT 2>&1
138 RC=$?
139 if test $RC != 0 ; then
140         echo "ldappasswd failed ($RC)!"
141         test $KILLSERVERS != no && kill -HUP $KILLPIDS
142         exit $RC
143 fi
144 $LDAPPASSWD -h $LOCALHOST -p $PORT1 \
145         -w newsecret \
146         -D "cn=smd5, $BASEDN" >> $TESTOUT 2>&1
147 RC=$?
148 if test $RC != 0 ; then
149         echo "ldappasswd failed ($RC)!"
150         test $KILLSERVERS != no && kill -HUP $KILLPIDS
151         exit $RC
152 fi
153 $LDAPPASSWD -h $LOCALHOST -p $PORT1 \
154         -w newsecret \
155         -D "cn=sha, $BASEDN" >> $TESTOUT 2>&1
156 RC=$?
157 if test $RC != 0 ; then
158         echo "ldappasswd failed ($RC)!"
159         test $KILLSERVERS != no && kill -HUP $KILLPIDS
160         exit $RC
161 fi
162 $LDAPPASSWD -h $LOCALHOST -p $PORT1 \
163         -w newsecret \
164         -D "cn=ssha, $BASEDN" >> $TESTOUT 2>&1
165 RC=$?
166 if test $RC != 0 ; then
167         echo "ldappasswd failed ($RC)!"
168         test $KILLSERVERS != no && kill -HUP $KILLPIDS
169         exit $RC
170 fi
171
172 echo "Logging end state with ldapsearch..."
173 echo "" >> $TESTOUT
174 echo "++ Initial search" >> $TESTOUT
175 $LDAPSEARCH -h $LOCALHOST -p $PORT1 \
176         -D "$MANAGERDN" -w $PASSWD \
177         -b "$BASEDN" \
178         'objectclass=*' >> $TESTOUT 2>&1
179
180
181 test $KILLSERVERS != no && kill -HUP $KILLPIDS
182
183 echo ">>>>> Test succeeded"
184 exit 0