]> git.sur5r.net Git - openldap/blob - tests/scripts/test014-whoami
Cleanup
[openldap] / tests / scripts / test014-whoami
1 #! /bin/sh
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-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 echo "running defines.sh"
17 . $SRCDIR/scripts/defines.sh
18
19 mkdir -p $TESTDIR $DBDIR1
20
21 echo "Starting slapd on TCP/IP port $PORT..."
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 "Testing ldapwhoami as anonymous..."
44 $LDAPWHOAMI -h $LOCALHOST -p $PORT1
45
46 RC=$?
47 if test $RC != 0 ; then
48         echo "ldapwhoami failed ($RC)!"
49         test $KILLSERVERS != no && kill -HUP $KILLPIDS
50         exit $RC
51 fi
52
53 echo "Testing ldapwhoami as ${MANAGERDN}..."
54 $LDAPWHOAMI -h $LOCALHOST -p $PORT1 -D "$MANAGERDN" -w $PASSWD
55
56 RC=$?
57 if test $RC != 0 ; then
58         echo "ldapwhoami failed ($RC)!"
59         test $KILLSERVERS != no && kill -HUP $KILLPIDS
60         exit $RC
61 fi
62
63 echo "Testing ldapwhoami as ${MANAGERDN} for anonymous..."
64 $LDAPWHOAMI -h $LOCALHOST -p $PORT1 -D "$MANAGERDN" -w $PASSWD \
65         -e \!authzid=""
66
67 RC=$?
68 if test $RC != 0 ; then
69         echo "ldapwhoami failed ($RC)!"
70         test $KILLSERVERS != no && kill -HUP $KILLPIDS
71         exit $RC
72 fi
73
74 echo "Testing ldapwhoami as ${MANAGERDN} for dn:$BABSDN..."
75 $LDAPWHOAMI -h $LOCALHOST -p $PORT1 -D "$MANAGERDN" -w $PASSWD \
76         -e \!authzid="dn:$BABSDN"
77
78 RC=$?
79 if test $RC != 0 ; then
80         echo "ldapwhoami failed ($RC)!"
81         test $KILLSERVERS != no && kill -HUP $KILLPIDS
82         exit $RC
83 fi
84
85 echo "Testing ldapwhoami as ${MANAGERDN} for u:ursula..."
86 $LDAPWHOAMI -h $LOCALHOST -p $PORT1 -D "$MANAGERDN" -w $PASSWD \
87         -e \!authzid="u:ursula"
88
89 RC=$?
90 if test $RC != 0 ; then
91         echo "ldapwhoami failed ($RC)!"
92         test $KILLSERVERS != no && kill -HUP $KILLPIDS
93         exit $RC
94 fi
95
96 test $KILLSERVERS != no && kill -HUP $KILLPIDS
97
98 echo ">>>>> Test succeeded"
99 exit 0