Test the behaviour of mixed domain_scope and search_options controls.
[samba.git] / testprogs / blackbox / test_ldb.sh
index e35d3547d9d4c30c48c198d17864a6e493e5381e..4067a7fc4331a873ff2ab3657855705b6b73ad4d 100755 (executable)
@@ -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