diff options
Diffstat (limited to 'source4/script/tests/test_ldap.sh')
-rwxr-xr-x | source4/script/tests/test_ldap.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/source4/script/tests/test_ldap.sh b/source4/script/tests/test_ldap.sh index fc2b27028f..f8657de5ec 100755 --- a/source4/script/tests/test_ldap.sh +++ b/source4/script/tests/test_ldap.sh @@ -44,6 +44,13 @@ for p in $PROTOCOLS; do failed=`expr $failed + 1` fi + echo "Check rootDSE for Controls" + nentries=`bin/ldbsearch $options $CONFIGURATION -H $p://$SERVER -s base -b "" '(objectclass=*)' | grep -i supportedControl | wc -l` + if [ $nentries -lt 4 ]; then + echo "Should have found at least 4 entries" + failed=`expr $failed + 1` + fi + echo "Test Paged Results Control" nentries=`bin/ldbsearch $options $CONFIGURATION -H $p://$SERVER --controls=paged_results:1:5 '(objectclass=user)' | grep sAMAccountName | wc -l` if [ $nentries -lt 1 ]; then |