From 85c70212161f8cad3510ad81dce0d2e19e9d25fe Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 16 Jan 2008 08:58:07 +1100 Subject: [PATCH] Test the behaviour of mixed domain_scope and search_options controls. Andrew Bartlett (This used to be commit 89053bc564f1d736da48fbe20e7f8f244b0c67fa) --- testprogs/blackbox/test_ldb.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/testprogs/blackbox/test_ldb.sh b/testprogs/blackbox/test_ldb.sh index e35d3547d9d..4067a7fc433 100755 --- a/testprogs/blackbox/test_ldb.sh +++ b/testprogs/blackbox/test_ldb.sh @@ -108,5 +108,12 @@ echo "Search Options Control Query test returned 0 items" failed=`expr $failed + 1` fi +echo "Test Search Options Control with Domain Scope Control" +nentries=`bin/ldbsearch $options $CONFIGURATION -H $p://$SERVER --controls=search_options:1:2,domain_scope:1 '(objectclass=crossRef)' | grep crossRef | wc -l` +if [ $nentries -lt 1 ]; then +echo "Search Options Control Query test returned 0 items" +failed=`expr $failed + 1` +fi + exit $failed -- 2.34.1