mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Pass expected output through ldiffilter before comparing with actual output
This commit is contained in:
parent
c066dd12dc
commit
dcc36ef23b
@ -78,12 +78,12 @@ fi
|
||||
kill -HUP $KILLPIDS
|
||||
wait
|
||||
|
||||
LDIFOUT=$EMPTYDNOUT1
|
||||
|
||||
echo "Filtering ldapsearch results..."
|
||||
$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
||||
echo "Filtering expected results..."
|
||||
$LDIFFILTER < $EMPTYDNOUT1 > $LDIFFLT
|
||||
echo "Comparing ldapsearch results against original..."
|
||||
$CMP $SEARCHFLT $LDIFOUT > $CMPOUT
|
||||
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
||||
|
||||
if test $? != 0 ; then
|
||||
echo "comparison failed - empty DN write operations did not complete correctly"
|
||||
@ -154,12 +154,12 @@ fi
|
||||
|
||||
test $KILLSERVERS != no && kill -HUP $KILLPIDS
|
||||
|
||||
LDIFOUT=$EMPTYDNOUT2
|
||||
|
||||
echo "Filtering ldapsearch results..."
|
||||
$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
||||
echo "Filtering expected results..."
|
||||
$LDIFFILTER < $EMPTYDNOUT2 > $LDIFFLT
|
||||
echo "Comparing ldapsearch results against original..."
|
||||
$CMP $SEARCHFLT $LDIFOUT > $CMPOUT
|
||||
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
||||
|
||||
if test $? != 0 ; then
|
||||
echo "comparison failed - empty DN write operations did not complete correctly"
|
||||
|
@ -245,7 +245,8 @@ if test $RC != 0 ; then
|
||||
fi
|
||||
|
||||
$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
||||
$CMP $SEARCHFLT $LDIFTRANSLUCENTMERGED > $CMPOUT
|
||||
$LDIFFILTER < $LDIFTRANSLUCENTMERGED > $LDIFFLT
|
||||
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
||||
|
||||
if test $? != 0 ; then
|
||||
echo "Comparison failed -- local data failed to merge with remote!"
|
||||
|
@ -79,8 +79,10 @@ fi
|
||||
|
||||
echo "Filtering ldapsearch results..."
|
||||
$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
||||
echo "Filtering expected ldif..."
|
||||
$LDIFFILTER < $VALSORTOUT1 > $LDIFFLT
|
||||
echo "Comparing filter output..."
|
||||
$CMP $SEARCHFLT $VALSORTOUT1 > $CMPOUT
|
||||
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
||||
|
||||
if test $? != 0 ; then
|
||||
echo "Comparison failed"
|
||||
@ -125,8 +127,10 @@ fi
|
||||
|
||||
echo "Filtering ldapsearch results..."
|
||||
$LDIFFILTER < $SEARCHOUT > $SEARCHFLT
|
||||
echo "Filtering expected ldif..."
|
||||
$LDIFFILTER < $VALSORTOUT2 > $LDIFFLT
|
||||
echo "Comparing filter output..."
|
||||
$CMP $SEARCHFLT $VALSORTOUT2 > $CMPOUT
|
||||
$CMP $SEARCHFLT $LDIFFLT > $CMPOUT
|
||||
|
||||
if test $? != 0 ; then
|
||||
echo "Comparison failed"
|
||||
|
Loading…
Reference in New Issue
Block a user