#!/bin/sh
# PCP QA Test No. 505
# pmlogrewrite - multi-volume archive tests
#
# Copyright (c) 2011 Silicon Graphics, Inc.  All Rights Reserved.
#

seq=`basename $0`
echo "QA output created by $seq"

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

which pmlogrewrite >/dev/null 2>&1 || _notrun "pmlogrewrite not installed"

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

_filter()
{
    sed \
	-e "s;$tmp;TMP;g" \
	-e '/[-+ ]\[[0-9][0-9]* bytes]/d' \
	-e "s/^\([+-][+-][+-] TMP\.[a-z]*\).*/\1/"
}

_cmp()
{
    if [ ! -f "$1.0" ]
    then
	echo "Arrgh ... $1.0 missing" | _filter
	return
    fi
    pmdumplog -z -dilmst $1 \
    | tee -a $seq_full \
    | sed -e '/\[[0-9][0-9]* bytes]/d' >$tmp.out
    diff -u $tmp.ref $tmp.out | _filter
}

# real QA test starts here

pmdumplog -z -dilmst archives/ok-mv-foo \
| tee -a $seq_full \
| sed -e '/\[[0-9][0-9]* bytes]/d' >$tmp.ref

echo | tee -a $seq_full
echo "metric sample.seconds { type -> U64 }" >$tmp.config
echo "=== `cat $tmp.config` ===" | tee -a $seq_full
rm -f $tmp.new.*
pmlogrewrite -ws -c $tmp.config archives/ok-mv-foo $tmp.new 2>&1 | _filter
echo "Output archive contains: `ls $tmp.new.* | tee -a $seq_full | wc -l | sed -e 's/ //g'` files"
_cmp $tmp.new

echo | tee -a $seq_full
echo "metric sample.seconds { type -> U64 }" >$tmp.config
echo "=== -i `cat $tmp.config` ===" | tee -a $seq_full
rm -f $tmp.new.*
pmlogcp archives/ok-mv-foo $tmp.new
pmlogrewrite -iws -c $tmp.config $tmp.new 2>&1 | _filter
echo "Output archive contains: `ls $tmp.new.* | tee -a $seq_full | wc -l | sed -e 's/ //g'` files"
_cmp $tmp.new

# success, all done
exit
