wmi-1.3.16 from opsview.com
This commit is contained in:
Executable
+69
@@ -0,0 +1,69 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo "Running extended search tests"
|
||||
|
||||
mv $LDB_URL $LDB_URL.1
|
||||
|
||||
cat <<EOF | bin/ldbadd || exit 1
|
||||
dn: cn=testrec1,cn=TEST
|
||||
i1: 1
|
||||
i2: 0
|
||||
i3: 1234
|
||||
i4: 0x7003004
|
||||
|
||||
dn: cn=testrec2,cn=TEST
|
||||
i1: 0x800000
|
||||
|
||||
dn: cn=testrec3,cn=TEST
|
||||
i1: 0x101010101
|
||||
i1: 7
|
||||
|
||||
dn: cn=auser1,cn=TEST
|
||||
groupType: 2147483648
|
||||
samAccountType: 805306368
|
||||
|
||||
dn: cn=auser2,cn=TEST
|
||||
groupType: 2147483648
|
||||
samAccountType: 805306369
|
||||
|
||||
dn: cn=auser3,cn=TEST
|
||||
groupType: 2147483649
|
||||
samAccountType: 805306370
|
||||
|
||||
dn: cn=auser4,cn=TEST
|
||||
groupType: 2147483649
|
||||
samAccountType: 805306369
|
||||
EOF
|
||||
|
||||
checkcount() {
|
||||
count=$1
|
||||
expression="$2"
|
||||
n=`bin/ldbsearch "$expression" | grep '^dn' | wc -l`
|
||||
if [ $n != $count ]; then
|
||||
echo "Got $n but expected $count for $expression"
|
||||
bin/ldbsearch "$expression"
|
||||
exit 1
|
||||
fi
|
||||
echo "OK: $count $expression"
|
||||
}
|
||||
|
||||
checkcount 1 '(i3=1234)'
|
||||
checkcount 0 '(i3=12345)'
|
||||
|
||||
checkcount 2 '(i1:1.2.840.113556.1.4.803:=1)'
|
||||
checkcount 1 '(i1:1.2.840.113556.1.4.803:=3)'
|
||||
checkcount 1 '(i1:1.2.840.113556.1.4.803:=7)'
|
||||
checkcount 0 '(i1:1.2.840.113556.1.4.803:=15)'
|
||||
checkcount 1 '(i1:1.2.840.113556.1.4.803:=0x800000)'
|
||||
checkcount 1 '(i1:1.2.840.113556.1.4.803:=8388608)'
|
||||
|
||||
checkcount 2 '(i1:1.2.840.113556.1.4.804:=1)'
|
||||
checkcount 2 '(i1:1.2.840.113556.1.4.804:=3)'
|
||||
checkcount 2 '(i1:1.2.840.113556.1.4.804:=7)'
|
||||
checkcount 2 '(i1:1.2.840.113556.1.4.804:=15)'
|
||||
checkcount 1 '(i1:1.2.840.113556.1.4.804:=0x800000)'
|
||||
checkcount 1 '(i1:1.2.840.113556.1.4.804:=8388608)'
|
||||
|
||||
# this is one that w2k gives
|
||||
checkcount 3 '(|(|(&(!(groupType:1.2.840.113556.1.4.803:=1))(groupType:1.2.840.113556.1.4.803:=2147483648)(groupType:1.2.840.113556.1.4.804:=10))(samAccountType=805306368))(samAccountType=805306369))'
|
||||
|
||||
Reference in New Issue
Block a user