#!/bin/sh
# PCP QA Test No. 485
# check pmlogrewrite archive rewriting - global specifications
#
# Copyright (c) 2011 Ken McDonell.  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 "s/^\([+-][+-][+-] TMP\...t*\).*/\1/"
}

_cmp()
{
    pmdumplog -z -dilmst $1 | tee -a $seq_full >$tmp.in
    pmdumplog -z -dilmst $2 | tee -a $seq_full >$tmp.out
    echo "pmdumplog diffs ..."
    diff -u $tmp.in $tmp.out | _filter
}

# real QA test starts here
echo | tee -a $seq_full
echo "=== global hostname -> foo.bar.com ===" | tee -a $seq_full
echo 'global { hostname -> foo.bar.com }' >$tmp.config
rm -f $tmp.new.*
pmlogrewrite -wv -c $tmp.config archives/541380_v2 $tmp.new 2>&1 | _filter
_cmp archives/541380_v2 $tmp.new

echo | tee -a $seq_full
echo "=== global tz -> "GMT" ===" | tee -a $seq_full
echo 'global { tz -> "GMT" }' >$tmp.config
rm -f $tmp.new.*
pmlogrewrite -wv -c $tmp.config archives/541380_v2 $tmp.new 2>&1 | _filter
_cmp archives/541380_v2 $tmp.new

for t in 10:20:30 +10:20:30 -10:20:30 "-22:33:24.637 tz->\"GMT\" hostname->eek"
do
    echo | tee -a $seq_full
    echo "=== global time->$t ===" | tee -a $seq_full
    echo "global{time->$t}" >$tmp.config
    rm -f $tmp.new.*
    pmlogrewrite -wv -c $tmp.config archives/541380_v2 $tmp.new 2>&1 | _filter
    _cmp archives/541380_v2 $tmp.new
done

# success, all done
exit
