#!/bin/sh
# PCP QA Test No. 1375
# simplest pmlogextract test for V3 (and V2) archives ... no
# delta indoms, so output archive should be the same as the
# input archive
#
# non-valgrind variant, see qa/1376 for the valgrind variant
#
# Copyright (c) 2022 Ken McDonell.  All Rights Reserved.
#

if [ $# -eq 0 ]
then
    seq=`basename $0`
    echo "QA output created by $seq"
else
    # use $seq from caller, unless not set
    [ -n "$seq" ] || seq=`basename $0`
    echo "QA output created by `basename $0` $*"
fi

# get standard environment, filters and checks
. ./common.product
. ./common.filter
. ./common.check

do_valgrind=false
if [ "$1" = "--valgrind" ]
then
    _check_valgrind
    do_valgrind=true
fi

_cleanup()
{
    cd $here
    $sudo rm -rf $tmp $tmp.*
}

status=0	# success is the default!
$sudo rm -rf $tmp $tmp.* $seq.full
trap "_cleanup; exit \$status" 0 1 2 3 15

_filter()
{
    sed \
	-e 's/<something>/<else>/' \
    # end
}

# real QA test starts here

for version in 2 3
do
    echo
    echo "--- Version $version archive ---"

    rm -f $tmp.0 $tmp.meta $tmp.index

    if $do_valgrind
    then
	_run_valgrind pmlogextract tmparch/sampledso-no-delta_v$version $tmp
    else
	pmlogextract tmparch/sampledso-no-delta_v$version $tmp 2>&1
    fi \
    | sed -e "s@$tmp@TMP@g" \
    | _filter

    echo "=== scanmeta for input ===" >>$seq.full
    src/scanmeta -a tmparch/sampledso-no-delta_v$version.meta 2>&1 \
    | tee -a $seq.full \
    | sed -e 's/^\[[0-9][0-9]*/[NN/' \
    | LC_COLLATE=POSIX sort >$tmp.input

    echo >>$seq.full
    echo "=== scanmeta for output ===" >>$seq.full
    src/scanmeta -a $tmp.meta 2>&1 \
    | tee -a $seq.full \
    | sed -e 's/^\[[0-9][0-9]*/[NN/' \
    | LC_COLLATE=POSIX sort >$tmp.output

    echo "=== scanmeta diffs ==="
    diff $tmp.input $tmp.output

    echo "=== dumplog for input ===" >>$seq.full
    pmdumplog -aI tmparch/sampledso-no-delta_v$version 2>&1 \
    | tee -a $seq.full \
    | sed -e '/^PID for pmlogger:/s/[0-9][0-9]*/<PID>/' >$tmp.input

    echo >>$seq.full
    echo "=== dumplog for output ===" >>$seq.full
    pmdumplog -aI $tmp 2>&1 \
    | tee -a $seq.full \
    | sed -e '/^PID for pmlogger:/s/[0-9][0-9]*/<PID>/' >$tmp.output

    echo "=== pmdumplog diffs ==="
    diff $tmp.input $tmp.output

done

# success, all done
exit
