Sync usage with man page.
[netbsd-mini2440.git] / external / bsd / openldap / dist / tests / scripts / test011-glue-slapadd
blobc22e5542c1a04be5497e0232f676d15ecc3f934c
1 #! /bin/sh
2 # $OpenLDAP: pkg/ldap/tests/scripts/test011-glue-slapadd,v 1.11.2.3 2008/02/11 23:26:51 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 $DBDIR1A $DBDIR1B $DBDIR1C
21 echo "Running slapadd to build glued slapd databases..."
22 . $CONFFILTER $BACKEND $MONITORDB < $GLUECONF > $CONF1
23 $SLAPADD -d $LVL -f $CONF1 -l $LDIFORDERED > $SLAPADDLOG1 2>&1
24 RC=$?
25 if test $RC != 0 ; then
26 echo "slapadd failed ($RC)!"
27 exit $RC
30 echo "Starting slapd on TCP/IP port $PORT1..."
31 $SLAPD -f $CONF1 -h $URI1 -d $LVL $TIMING > $LOG1 2>&1 &
32 PID=$!
33 if test $WAIT != 0 ; then
34 echo PID $PID
35 read foo
37 KILLPIDS="$PID"
39 sleep 1
41 echo "Using ldapsearch to retrieve all the entries..."
42 for i in 0 1 2 3 4 5; do
43 $LDAPSEARCH -b "$BASEDN" -h $LOCALHOST -p $PORT1 > $SEARCHOUT 2>&1
44 RC=$?
45 if test $RC = 0 ; then
46 break
48 echo "Waiting 5 seconds for slapd to start..."
49 sleep 5
50 done
52 if test $RC != 0 ; then
53 echo "ldapsearch failed ($RC)!"
54 test $KILLSERVERS != no && kill -HUP $KILLPIDS
55 exit $RC
58 echo "Filtering ldapsearch results..."
59 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
60 echo "Filtering original ldif used to create database..."
61 . $LDIFFILTER < $LDIFGLUED > $LDIFFLT
62 echo "Comparing filter output..."
63 $CMP $SEARCHFLT $LDIFFLT > $CMPOUT
65 if test $? != 0 ; then
66 echo "comparison failed - database was not created correctly"
67 echo $SEARCHFLT $LDIFFLT
68 $DIFF $SEARCHFLT $LDIFFLT
69 test $KILLSERVERS != no && kill -HUP $KILLPIDS
70 exit 1
73 echo "Testing sizelimit..."
74 $LDAPSEARCH -b "$BASEDN" -h $LOCALHOST -p $PORT1 -s one -z 2 > $SEARCHOUT 2>&1
75 RC=$?
76 if test $RC = 0 ; then
77 echo "sizelimit not detected at end of search."
78 test $KILLSERVERS != no && kill -HUP $KILLPIDS
79 exit 1
82 $LDAPSEARCH -b "$BASEDN" -h $LOCALHOST -p $PORT1 -z 9 objectclass=OpenLDAPPerson > $SEARCHOUT 2>&1
83 RC=$?
84 if test $RC = 0 ; then
85 echo "sizelimit not detected at middle of search."
86 test $KILLSERVERS != no && kill -HUP $KILLPIDS
87 exit 1
90 test $KILLSERVERS != no && kill -HUP $KILLPIDS
92 echo ">>>>> Test succeeded"
94 test $KILLSERVERS != no && wait
96 exit 0