Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / openldap / dist / tests / scripts / test000-rootdse
blob3955fdd1756058711ee373039e3ea62ca661fb72
1 #! /bin/sh
2 # $OpenLDAP: pkg/ldap/tests/scripts/test000-rootdse,v 1.29.2.3 2008/02/11 23:26:50 kurt Exp $
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ##
5 ## Copyright 1998-2008 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.
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>.
16 echo "running defines.sh"
17 . $SRCDIR/scripts/defines.sh
19 mkdir -p $TESTDIR $DBDIR1
21 echo "Starting slapd on TCP/IP port $PORT1..."
22 . $CONFFILTER $BACKEND $MONITORDB < $SCHEMACONF > $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
29 KILLPIDS="$PID"
31 sleep 1
33 echo "Using ldapsearch to retrieve the root DSE..."
34 for i in 0 1 2 3 4 5; do
35 $LDAPSEARCH -b "" -s base -h $LOCALHOST -p $PORT1 \
36 '@extensibleObject' > $SEARCHOUT 2>&1
37 RC=$?
38 if test $RC = 0 ; then
39 break
41 echo "Waiting 5 seconds for slapd to start..."
42 sleep 5
43 done
45 if test $RC = 0 ; then
46 echo "Using ldapsearch to retrieve the cn=Subschema..."
47 $LDAPSEARCH -b "cn=Subschema" -s base -h $LOCALHOST -p $PORT1 \
48 '(&(objectClasses=top)(objectClasses=2.5.6.0))' cn objectClass \
49 >> $SEARCHOUT 2>&1
50 RC=$?
54 count=2
55 if test $RC = 0 ; then
56 case $MONITORDB in yes | mod)
57 count=3
58 echo "Using ldapsearch to retrieve the cn=Monitor..."
59 $LDAPSEARCH -b "cn=Monitor" -s base -h $LOCALHOST -p $PORT1 \
60 '@monitor' >> $SEARCHOUT 2>&1
61 RC=$?
63 esac
66 test $KILLSERVERS != no && kill -HUP $KILLPIDS
68 cat $SEARCHOUT
71 if test $RC != 0 ; then
72 echo ">>>>> Test failed"
73 else
74 RC=`grep '^dn:' $SEARCHOUT | wc -l`
75 if test $RC != $count ; then
76 echo ">>>>> Test failed: expected $count entries, got" $RC
77 RC=1
78 else
79 echo ">>>>> Test succeeded"
80 RC=0
84 test $KILLSERVERS != no && wait
86 exit $RC