]> git.sur5r.net Git - openldap/blob - tests/scripts/test056-monitor
35ae2077a7cffd5bd92647c2357183e7b215dfe8
[openldap] / tests / scripts / test056-monitor
1 #! /bin/sh
2 # $OpenLDAP$
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.
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 < $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 sleep 1
32
33 echo "Using ldapsearch to check that slapd is running..."
34 for i in 0 1 2 3 4 5; do
35         $LDAPSEARCH -s base -b "$MONITOR" -h $LOCALHOST -p $PORT1 \
36                 'objectclass=*' > /dev/null 2>&1
37         RC=$?
38         if test $RC = 0 ; then
39                 break
40         fi
41         echo "Waiting 5 seconds for slapd to start..."
42         sleep 5
43 done
44
45 echo "Using ldapsearch to read connection monitor entries..."
46 $LDAPSEARCH -S "" -b "$CONNECTIONSMONITORDN" -h $LOCALHOST -p $PORT1 \
47         'objectclass=*' \
48         structuralObjectClass entryDN \
49         monitorConnectionProtocol monitorConnectionOpsReceived \
50         monitorConnectionOpsExecuting monitorConnectionOpsPending \
51         monitorConnectionOpsCompleted monitorConnectionGet \
52         monitorConnectionRead monitorConnectionWrite \
53         monitorConnectionMask monitorConnectionAuthzDN \
54         monitorConnectionListener monitorConnectionLocalAddress \
55         > $SEARCHOUT 2>&1
56 RC=$?
57
58 if test $RC != 0 ; then
59         echo "ldapsearch failed ($RC)!"
60         test $KILLSERVERS != no && kill -HUP $KILLPIDS
61         exit $RC
62 fi
63
64 echo "Filtering ldapsearch results..."
65 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
66
67 echo "Comparing filter output..."
68 $CMP $SEARCHFLT $MONITOROUT1 > $CMPOUT
69
70 if test $? != 0 ; then
71         echo "comparison failed - connection monitor output is not correct"
72         test $KILLSERVERS != no && kill -HUP $KILLPIDS
73         exit 1
74 fi
75
76 echo "Using ldapsearch to read database monitor entries..."
77 $LDAPSEARCH -S "" -b "$DATABASESMONITORDN" -h $LOCALHOST -p $PORT1 \
78         'objectclass=*' \
79         structuralObjectClass entryDN namingContexts readOnly \
80         monitorIsShadow monitorContext \
81         olmBDBEntryCache olmBDBDNCache olmBDBIDLCache \
82         > $SEARCHOUT 2>&1
83 RC=$?
84
85 if test $RC != 0 ; then
86         echo "ldapsearch failed ($RC)!"
87         test $KILLSERVERS != no && kill -HUP $KILLPIDS
88         exit $RC
89 fi
90
91 echo "Filtering ldapsearch results..."
92 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
93
94 echo "Comparing filter output..."
95 $CMP $SEARCHFLT $MONITOROUT2 > $CMPOUT
96
97 if test $? != 0 ; then
98         echo "comparison failed - database monitor output is not correct"
99         test $KILLSERVERS != no && kill -HUP $KILLPIDS
100         exit 1
101 fi
102
103 echo "Using ldapsearch to read statistics monitor entries..."
104 $LDAPSEARCH -S "" -b "$STATISTICSMONITORDN" -h $LOCALHOST -p $PORT1 \
105         '(|(cn=Entries)(cn=PDU)(cn=Referrals))' \
106         structuralObjectClass monitorCounter entryDN \
107         > $SEARCHOUT 2>&1
108 RC=$?
109
110 if test $RC != 0 ; then
111         echo "ldapsearch failed ($RC)!"
112         test $KILLSERVERS != no && kill -HUP $KILLPIDS
113         exit $RC
114 fi
115
116 echo "Filtering ldapsearch results..."
117 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
118
119 echo "Comparing filter output..."
120 $CMP $SEARCHFLT $MONITOROUT3 > $CMPOUT
121
122 if test $? != 0 ; then
123         echo "comparison failed - statistics monitor output is not correct"
124         test $KILLSERVERS != no && kill -HUP $KILLPIDS
125         exit 1
126 fi
127
128 echo "Using ldapsearch to read operation monitor entries..."
129 $LDAPSEARCH -S "" -b "$OPERATIONSMONITORDN" -h $LOCALHOST -p $PORT1 \
130         'objectclass=*' \
131         structuralObjectClass monitorOpInitiated monitorOpCompleted entryDN \
132         > $SEARCHOUT 2>&1
133 RC=$?
134
135 if test $RC != 0 ; then
136         echo "ldapsearch failed ($RC)!"
137         test $KILLSERVERS != no && kill -HUP $KILLPIDS
138         exit $RC
139 fi
140
141 echo "Filtering ldapsearch results..."
142 . $LDIFFILTER < $SEARCHOUT > $SEARCHFLT
143
144 echo "Comparing filter output..."
145 $CMP $SEARCHFLT $MONITOROUT4 > $CMPOUT
146
147 if test $? != 0 ; then
148         echo "comparison failed - operations monitor output is not correct"
149         test $KILLSERVERS != no && kill -HUP $KILLPIDS
150         exit 1
151 fi
152
153 test $KILLSERVERS != no && kill -HUP $KILLPIDS
154
155 echo ">>>>> Test succeeded"
156
157 test $KILLSERVERS != no && wait
158
159 exit 0
160