]> git.sur5r.net Git - openldap/blob - tests/scripts/test000-rootdse
map referrals in regular metadata structure (need to remove some of the specific...
[openldap] / tests / scripts / test000-rootdse
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 $TESTRUN $DBDIR1
20
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
28 fi
29 KILLPIDS="$PID"
30
31 echo "Using ldapsearch to retrieve the root DSE..."
32 for i in 0 1 2 3 4 5; do
33         $LDAPSEARCH -b "" -s base -h $LOCALHOST -p $PORT1 \
34                 '+extensibleObject' > $SEARCHOUT 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 if test $RC = 0 ; then
44         echo "Using ldapsearch to retrieve the cn=Subschema..."
45         $LDAPSEARCH -b "cn=Subschema" -s base -h $LOCALHOST -p $PORT1 \
46                 '(&(objectClasses=top)(objectClasses=2.5.6.0))' cn objectClass \
47                 >> $SEARCHOUT  2>&1
48         RC=$?
49
50 fi
51
52 if test $RC = 0 ; then
53         if test $MONITORDB = yes -o $MONITORDB = mod ; then
54                 echo "Using ldapsearch to retrieve the cn=Monitor..."
55                 $LDAPSEARCH -b "cn=Monitor" -s base -h $LOCALHOST -p $PORT1 \
56                         '+extensibleObject' >> $SEARCHOUT 2>&1
57                 RC=$?
58         fi
59 fi
60
61 test $KILLSERVERS != no && kill -HUP $KILLPIDS
62
63 cat $SEARCHOUT
64
65
66 if test $RC != 0 ; then
67         echo ">>>>> Test failed"
68 else
69         RC=`grep '^dn:' $SEARCHOUT | wc -l`
70         if test $RC != 3 ; then
71                 echo ">>>>> Test failed: expected 3 entries, got" $RC
72                 RC=1
73         else
74                 echo ">>>>> Test succeeded"
75                 RC=0
76         fi
77 fi
78
79 exit $RC