]> git.sur5r.net Git - openldap/blob - tests/scripts/test014-whoami
Added new test slapd-modrdn - string-reverses the RDN of the given DNs,
[openldap] / tests / scripts / test014-whoami
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 "Cleaning up in $DBDIR..."
25
26 rm -f $DBDIR/[!C]*
27
28 echo "Starting slapd on TCP/IP port $PORT..."
29 . $CONFFILTER $BACKEND $MONITORDB < $PWCONF > $DBCONF
30 $SLAPD -f $DBCONF -h $MASTERURI -d $LVL $TIMING > $MASTERLOG 2>&1 &
31 PID=$!
32 if test $WAIT != 0 ; then
33     echo PID $PID
34     read foo
35 fi
36
37 echo "Using ldapsearch to check that slapd is running..."
38 for i in 0 1 2 3 4 5; do
39         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT \
40                 'objectclass=*' > /dev/null 2>&1
41         RC=$?
42         if test $RC = 0 ; then
43                 break
44         fi
45         echo "Waiting 5 seconds for slapd to start..."
46         sleep 5
47 done
48
49 echo "Testing ldapwhoami as anonymous..."
50 $LDAPWHOAMI -h $LOCALHOST -p $PORT
51
52 RC=$?
53 if test $RC != 0 ; then
54         echo "ldapwhoami failed ($RC)!"
55         kill -HUP $PID
56         exit $RC
57 fi
58
59 echo "Testing ldapwhoami as ${MANAGERDN}..."
60 $LDAPWHOAMI -h $LOCALHOST -p $PORT -D "$MANAGERDN" -w $PASSWD
61
62 RC=$?
63 if test $RC != 0 ; then
64         echo "ldapwhoami failed ($RC)!"
65         kill -HUP $PID
66         exit $RC
67 fi
68
69 echo "Testing ldapwhoami as ${MANAGERDN} for anonymous..."
70 $LDAPWHOAMI -h $LOCALHOST -p $PORT -D "$MANAGERDN" -w $PASSWD \
71         -e \!authzid=""
72
73 RC=$?
74 if test $RC != 0 ; then
75         echo "ldapwhoami failed ($RC)!"
76         kill -HUP $PID
77         exit $RC
78 fi
79
80 echo "Testing ldapwhoami as ${MANAGERDN} for dn:$BABSDN..."
81 $LDAPWHOAMI -h $LOCALHOST -p $PORT -D "$MANAGERDN" -w $PASSWD \
82         -e \!authzid="dn:$BABSDN"
83
84 RC=$?
85 if test $RC != 0 ; then
86         echo "ldapwhoami failed ($RC)!"
87         kill -HUP $PID
88         exit $RC
89 fi
90
91 echo "Testing ldapwhoami as ${MANAGERDN} for u:ursula..."
92 $LDAPWHOAMI -h $LOCALHOST -p $PORT -D "$MANAGERDN" -w $PASSWD \
93         -e \!authzid="u:ursula"
94
95 RC=$?
96 if test $RC != 0 ; then
97         echo "ldapwhoami failed ($RC)!"
98         kill -HUP $PID
99         exit $RC
100 fi
101
102 kill -HUP $PID
103
104 echo ">>>>> Test succeeded"
105
106 exit 0