X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=tests%2Fscripts%2Ftest020-proxycache;h=2a94cb65aa3a47df06734bc01bc74261f592227a;hb=6c062ca841f82ca9ea17172c2a9882f373a76c02;hp=0fc9f8b719b8cdbabf5bedb2fbafe802b1853324;hpb=572ca2db94b0e7af95e7ac16a91cb1ea3b3d136a;p=openldap diff --git a/tests/scripts/test020-proxycache b/tests/scripts/test020-proxycache index 0fc9f8b719..2a94cb65aa 100755 --- a/tests/scripts/test020-proxycache +++ b/tests/scripts/test020-proxycache @@ -2,7 +2,7 @@ # $OpenLDAP$ ## This work is part of OpenLDAP Software . ## -## Copyright 1998-2005 The OpenLDAP Foundation. +## Copyright 1998-2006 The OpenLDAP Foundation. ## All rights reserved. ## ## Redistribution and use in source and binary forms, with or without @@ -13,7 +13,7 @@ ## top-level directory of the distribution or, alternatively, at ## . -CACHETTL=60 +CACHETTL="1m" CACHE_ENTRY_LIMIT=10 . $SRCDIR/scripts/defines.sh @@ -28,11 +28,6 @@ if test $BACKLDAP = "ldapno" ; then exit 0 fi -if test "x$LVL" = "x0" ; then - echo "test020 needs a minimal log level; setting to LDAP_DEBUG_NONE..." - LVL=2048 -fi - mkdir -p $TESTDIR $DBDIR1 $DBDIR2 # Test proxy caching: @@ -86,7 +81,7 @@ fi echo "Starting proxy cache on TCP/IP port $PORT2..." . $CONFFILTER < $PROXYCACHECONF > $CONF2 -$SLAPD -f $CONF2 -h $URI2 -d $LVL > $LOG2 2>&1 & +$SLAPD -f $CONF2 -h $URI2 -d $LVL -d pcache > $LOG2 2>&1 & CACHEPID=$! if test $WAIT != 0 ; then echo CACHEPID $CACHEPID @@ -114,10 +109,13 @@ if test $RC != 0 ; then exit $RC fi +cat /dev/null > $SLAVEOUT + echo "Making queries on the proxy cache..." echo "Query 1: filter:(sn=Jon) attrs: all" +echo "# Query 1: filter:(sn=Jon) attrs: all" >> $SLAVEOUT $LDAPSEARCH -x -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT2 \ - 'sn=Jon' > $SLAVEOUT 2>&1 + 'sn=Jon' >> $SLAVEOUT 2>&1 RC=$? if test $RC != 0 ; then echo "ldapsearch failed ($RC)!" @@ -126,6 +124,7 @@ if test $RC != 0 ; then fi echo "Query 2: filter:(|(cn=*Jon*)(sn=Jon*)) attrs:cn sn title uid" +echo "# Query 2: filter:(|(cn=*Jon*)(sn=Jon*)) attrs:cn sn title uid" >> $SLAVEOUT $LDAPSEARCH -x -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT2 \ '(|(cn=*Jon*)(sn=Jon*))' cn sn title uid >> $SLAVEOUT 2>&1 RC=$? @@ -135,9 +134,10 @@ if test $RC != 0 ; then exit $RC fi -echo "Query 3: filter:(sn=Smith*) attrs:cn sn title uid" +echo "Query 3: filter:(sn=Smith*) attrs:cn sn uid" +echo "# Query 3: filter:(sn=Smith*) attrs:cn sn uid" >> $SLAVEOUT $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT2 \ - 'sn=Smith*' cn sn title uid >> $SLAVEOUT 2>&1 + 'sn=Smith*' cn sn uid >> $SLAVEOUT 2>&1 RC=$? if test $RC != 0 ; then echo "ldapsearch failed ($RC)!" @@ -146,6 +146,7 @@ if test $RC != 0 ; then fi echo "Query 4: filter:(sn=Doe*) attrs:cn sn title uid" +echo "# Query 4: filter:(sn=Doe*) attrs:cn sn title uid" >> $SLAVEOUT $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT2 \ 'sn=Doe' cn sn title uid >> $SLAVEOUT 2>&1 RC=$? @@ -156,6 +157,7 @@ if test $RC != 0 ; then fi echo "Query 5: filter:(uid=bjorn) attrs:mail postaladdress telephonenumber cn uid" +echo "# Query 5: filter:(uid=bjorn) attrs:mail postaladdress telephonenumber cn uid" >> $SLAVEOUT $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT2 \ 'uid=bjorn' mail postaladdress telephonenumber cn uid >> $SLAVEOUT 2>&1 RC=$? @@ -166,6 +168,7 @@ if test $RC != 0 ; then fi echo "Query 6: filter:(mail=*@mail.alumni.example.com) cn sn title uid" +echo "# Query 6: filter:(mail=*@mail.alumni.example.com) cn sn title uid" >> $SLAVEOUT $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT2 \ 'mail=*@mail.alumni.example.com' cn sn title uid >> $SLAVEOUT 2>&1 RC=$? @@ -176,6 +179,7 @@ if test $RC != 0 ; then fi echo "Query 7: filter:(mail=*) cn sn title uid" +echo "# Query 7: filter:(mail=*) cn sn title uid" >> $SLAVEOUT $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT2 \ 'mail=*' cn sn title uid >> $SLAVEOUT 2>&1 RC=$? @@ -209,6 +213,7 @@ else fi echo "Query 8: filter:(|(cn=*Jones)(sn=Jones)) attrs:cn sn title uid" +echo "# Query 8: filter:(|(cn=*Jones)(sn=Jones)) attrs:cn sn title uid" >> $SLAVEOUT $LDAPSEARCH -x -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT2 \ '(|(cn=*Jones)(sn=Jones))' cn sn title uid >> $SLAVEOUT 2>&1 RC=$? @@ -219,6 +224,7 @@ if test $RC != 0 ; then fi echo "Query 9: filter:(sn=Smith) attrs:cn sn title uid" +echo "# Query 9: filter:(sn=Smith) attrs:cn sn title uid" >> $SLAVEOUT $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT2 \ 'sn=Smith' cn sn title uid >> $SLAVEOUT 2>&1 RC=$? @@ -229,6 +235,7 @@ if test $RC != 0 ; then fi echo "Query 10: filter:(uid=bjorn) attrs:mail postaladdress telephonenumber cn uid" +echo "# Query 10: filter:(uid=bjorn) attrs:mail postaladdress telephonenumber cn uid" >> $SLAVEOUT $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT2 \ 'uid=bjorn' mail postaladdress telephonenumber cn uid >> $SLAVEOUT 2>&1 RC=$? @@ -239,6 +246,7 @@ if test $RC != 0 ; then fi echo "Query 11: filter:(mail=jaj@mail.alumni.example.com) cn sn title uid" +echo "# Query 11: filter:(mail=jaj@mail.alumni.example.com) cn sn title uid" >> $SLAVEOUT $LDAPSEARCH -S "" -b "$BASEDN" -h $LOCALHOST -p $PORT2 \ 'mail=jaj@mail.alumni.example.com' cn sn title uid >> $SLAVEOUT 2>&1 RC=$? @@ -279,8 +287,10 @@ fi echo "Filtering ldapsearch results..." . $LDIFFILTER < $SLAVEOUT > $SEARCHFLT +echo "Filtering original ldif..." +. $LDIFFILTER < $PROXYCACHEOUT > $LDIFFLT echo "Comparing filter output..." -$CMP $SEARCHFLT $PROXYCACHEOUT > $CMPOUT +$CMP $SEARCHFLT $LDIFFLT > $CMPOUT if test $? != 0 ; then echo "Comparison failed" @@ -288,4 +298,7 @@ if test $? != 0 ; then fi echo ">>>>> Test succeeded" + +test $KILLSERVERS != no && wait + exit 0